-
6 May 2011 2:17 AM #971
Not yet, but it is on top of my "porting list".
Jozef Sakalos, aka Saki
A lot of valuable info at:
Saki's Extensions and Plugins
Saki's Extensions and Plugins Docs
Saki's Examples, Latest: Grid in Card Layout
Saki's Blog, Featured: Writing a Big Application in Ext, Latest: Grid MultiSearch Plugin Video
-
3 Jun 2011 7:17 AM #972
-
4 Jun 2011 2:02 PM #973
Excellent Plugin!
Excellent Plugin!
Hi Saki,
Just wanted to congratulate you and thank you for this very excellent plugin. It worked right out of the box as great plugins should!
Will be looking forward to the Ext 4 compatible version!
Keep up the good work!
JC
-
15 Jun 2011 1:41 AM #974
I'm trying that to make an automated search, the first part works ok, but the second doesn't.
It means I get the text on the search box, but it doesn't get updated. Any help about how to make an automated search?
Thanks,
Pau
EDITED: I'm using it over ExtJS 3.3.1: So, maybe it's not the correct thread, but it's the one where I've found anything useful for what I need.
-
16 Jun 2011 8:09 AM #975
Lines should read:
Of course, you wouldn't use getCmp in the real app, I've used them to test at http://gridsearch.extjs.euPHP Code:Ext.getCmp('examplegrid1').plugins[0].field.setValue('lle');
Ext.getCmp('examplegrid1').plugins[0].onTriggerSearch();
Jozef Sakalos, aka Saki
A lot of valuable info at:
Saki's Extensions and Plugins
Saki's Extensions and Plugins Docs
Saki's Examples, Latest: Grid in Card Layout
Saki's Blog, Featured: Writing a Big Application in Ext, Latest: Grid MultiSearch Plugin Video
-
20 Jun 2011 12:35 AM #976
Thanks Saki,
It was just perfect!!
BTW, maybe it could be interesting to have this action on the plugin? Have you thought about this???
Regards, and again congratulations and thanks for this great plugin.
Pau
-
23 Jun 2011 9:41 PM #977
Adding a checkbox beside the search box
Adding a checkbox beside the search box
I managed to get the plugin to work just fine.
I am trying to add a checkbox beside the search box and I need the value to be submitted to the server for processing.
The example shows adding of a checkbox to a secondary toolbar below. However, the checkbox value is not submitted with the search box query value to the server.
Is there a way of doing the above?
-
26 Jun 2011 5:58 PM #978
switching remote store url
switching remote store url
I switch dynamically the remote url of JSON DataStore by combobox on the top of grid panel. grid panel works well. but grid search keeps requesting to first url after url switched.
The red line in below code works only once just after urlSelectForm 'select' event is fired, and next JSON DS request to first url again.
I want to make it keep switched url!!
Anyone help me?
Code:Ext.onReady( function(){ Ext.QuickTips.init(); var url1="URL1"; var url2="URL2"; var myStore = new Ext.data.JsonStore( { autoLoad: true, remoteSort: true, baseParams:{ limit:100, start:0 }, url: url1, root: 'data', fields: [ {name: 'name1', type: 'string'}, {name: 'name2', type: 'string'}, {name: 'name3', type: 'string'}, ] }); var urlSelectForm = new Ext.form.ComboBox({ editable: false, triggerAction: 'all', valueField: 'value', displayField: 'name', store: [url1, url2] }); urlSelectForm.on("select", function(cmb){ myStore.proxy.conn.url = cmb.getValue(); myStore.load(); gridPanel.store.proxy.conn.url = cmb.getValue(); }); var searchBox = new Ext.ux.grid.Search({ align: 'right', minChars: 3, autoFocus: true, iconCls: "icon-magnifier" }); var gridPanel = new Ext.grid.GridPanel({ renderTo: 'gridArea', columns: [ {id: 'name1', header: 'NAME1', dataIndex: 'name1'}, {id: 'name2', header: 'NAME2', dataIndex: 'name2'}, {id: 'name3', header: 'NAME3', dataIndex: 'name3'} ], store: myStore, bbar: new Ext.PagingToolbar({ pageSize: 100, store: myStore, displayInfo: true, paramNames : {start: 'start', limit: 'limit'}, doLoad : function(start){ var o = {}, pn = this.paramNames; o[pn.start] = start; o[pn.limit] = 100; if(this.fireEvent('beforechange', this, o) !== false){ this.store.proxy.conn.url = urlSelectForm.getValue(); this.store.load({params:o}); } } }), tbar: new Ext.Toolbar({ items: [ { text: "URL:" }, urlSelectForm ] }), plugins: [ searchBox ] }); });
-
4 Jul 2011 1:37 AM #979
How can grid search plugin work for a grid that pops up, when I expand a row.
How can grid search plugin work for a grid that pops up, when I expand a row.
Hi,
I have a GridPanel, and each row of this GridPanel(parent grid) have a expander.When I click on the expander, another GridPanel(child grid) opens with several rows. When I do the search operation using Grid Search Plugin, only the rows of parent grid are getting filtered, but not the child grid.
How i do achieve search for child grid also? any suggestions???
Thanks a lot.Last edited by parimala; 4 Jul 2011 at 1:40 AM. Reason: spelling mistake
-
5 Jul 2011 10:36 PM #980
Hi
Hi
Hi, Earlier one was my second post, and I did not get any replies for my both the posts



Reply With Quote