I need some help on how to delete an entire row before rendering the grid.
I dont want to delete that record in the store, just want to hide that without displaying.
I need some help on how to delete an entire row before rendering the grid.
I dont want to delete that record in the store, just want to hide that without displaying.
I am using this Grid in a panel, I want to place this Grid in center of the Panel. For doing so I wrote below code: Ext.define('MyCustomPanel', {
extend : 'Ext.Panel',
xtype : 'mycustompanel',
requires: [ 'MitchellGrid'],
config : {
layout : {
type : 'hbox',
align : 'center'
Here "MitchellGrid" is the grid example given by you. I just modified it as per my needs. in normal case it renders properly but when I mention align : 'center' in layout the columns header move to center but the rows do not render.
Can you please let me know If I want to place this Grid in a panel at custom location( like here I want it in center) what should i do ?
My scenario is I have two panels in VBox layout. I have gridpanel on top panel and charts in bottom panel both of them using same store. when i use sorters in grid, my chart is rePainted, gives a good effect.
I am using all records in the store to draw charts but want to hide/ filter two records in the grid.
since its using same store I think if i use filter i may loose that effect or chart will crash.
Hi ,
Is there any listeners for grid. I thought all listeners for dataview should respond for this also. I tried but no luck.
Is there any events for grid like beforeRender.
I have defined a grid view extending Mitchell.grid.
created xtype of it and defined inside panel.
According to search the grid data changes.
My store has sorter defined
I have used sorter feature.
Using this I am sorting the grid. when I make a new search, its sorting with the previous sort.
Ext.ux.touch.grid.View extends Ext.dataview.DataView so all the events that DataView fires, the grid will also like itemtap. Sencha Touch 2 does not have a beforerender event.
I'm (as so many) fairly new to Sencha Touch, and I love the plugin (and examples). But, I have two questions:
I would like to have the Prev, Go to page... etc at the top, and the column names below, just before the data. Is that possible, and if so, what do I need to change?
Second question: Is it possible to make the 'Go to page'-list have a (for example) check1.png to indicate the current page, and auto-scroll the list to the current page (to make it quicker to navigate from the current page)?