Sencha: Manipulating Objects: Difference between revisions

From wiki.jacobjohns.com
jwiki>jjohns
Created
 
m 2 revisions imported
 
(One intermediate revision by one other user not shown)
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>

Latest revision as of 16:06, 27 July 2024



  1. 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.
  2. In the event where we are manipulating our object use the below to make changes to the object.
    • this.queryById("<itemID>").hide();