'First in' in Sencha Touch adding items to the container -


can add item container first 1 rather appending existing ones.

from understand this.add([item]) add item last one, apper on top of screen before else has been added.

you can use insert method of container this:

this.insert(0 , item); 

where appear depends on layout.


Comments