Creating a plain table in Ext JS
I want开发者_Go百科ed to utilize parts of the Ext JS library to render plain table but based on a data store and record model. Do you know of any tutorials and/or other resources that would help me out getting started with it?
If you want to render a "plain HTML table", why do you need record model?
One (and easiest) approach would be to make an AJAX call (preferably using Ext Direct), and apply XTemplate to the returned JSON result.
Two other approaches would be -
- Use the light weight list view component instead of grid (if light weight is your concnern)
- Style the grid or list view component to "look like" plain HTML table.
精彩评论