Sencha: Manipulating Objects: Difference between revisions
From wiki.jacobjohns.com
jwiki>jjohns Created |
jwiki>jjohns No edit summary |
||
| Line 1: | Line 1: | ||
[[File:Sencha logo.png|center|frameless]] | [[File:Sencha logo.png|center|frameless]] | ||
<hr /><br /> | |||
# To manipulate any object in Sencha the object must have an <code>itemId</code>. Select the object and search the '<nowiki/>''Filter Configs...''' for itemId, and enter a matching Id name for the object. | # To manipulate any object in Sencha the object must have an <code>itemId</code>. Select the object and search the '<nowiki/>''Filter Configs...''' for itemId, and enter a matching Id name for the object. | ||
# In the event where we are manipulating our object use the below to make changes to the object. | # In the event where we are manipulating our object use the below to make changes to the object. | ||
#* <code>this.queryById("<itemID>").hide();</code> | #* <code>this.queryById("<itemID>").hide();</code> | ||
Revision as of 14:43, 21 July 2024

- To manipulate any object in Sencha the object must have an
itemId. Select the object and search the 'Filter Configs...' for itemId, and enter a matching Id name for the object. - In the event where we are manipulating our object use the below to make changes to the object.
this.queryById("<itemID>").hide();
