djMaxM
17 Jun 2010, 11:54 AM
I'm an Ext JS user, so very excited about having that "mindset" on mobile devices. I had built a simple jqTouch app and I'm trying to convert it. jqTouch was more markup-oriented, so I have this "panel":
<div id="home">
<ul class="rounded">
<li class="forward"><a href="Categories" id="placeOrder">Place an Order</a></li>
</ul>
</div>
The Categories link was an Ajax call to get another panel much like this one (e.g. kind of a nested list). What's the equivalent of this simple two-step in Sencha Touch?
<div id="home">
<ul class="rounded">
<li class="forward"><a href="Categories" id="placeOrder">Place an Order</a></li>
</ul>
</div>
The Categories link was an Ajax call to get another panel much like this one (e.g. kind of a nested list). What's the equivalent of this simple two-step in Sencha Touch?