-
26 Feb 2008 12:28 AM #91
I've done the same right now and it works w/o problems. Have you adjusted paths to your Ext installation?
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
-
27 Feb 2008 4:52 AM #92
Jozef,
I am sorry I have not had time to throw together an example, just to let you know though I have been able to solve the issue in my application by doing the following:
Add this to the panel in which the toolbar containing the plugin is.
PHP Code:this.on('show', function(){
this.cascade(function(descendant){
descendant.fireEvent('shown', this);
});[/left]
}, this);
Then a slight change to the pluging with the following code added to the init function
PHP Code:this.grid.on('shown',function(){
this.field.wrap.setWidth(this.field.el.getWidth()+this.field.trigger.getWidth());
},this);
Last edited by NBRed5; 27 Feb 2008 at 4:55 AM. Reason: tidied up code blocks
NBRed5
www.NBRed5.com
-
27 Feb 2008 5:01 AM #93
Good! Having no idea what it is doing
I'm glad that you resolved an issue.
BTW, I'm using the plugin in that many places w/o any hacks that it's suspicious you need one...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
-
27 Feb 2008 2:37 PM #94
I've been trying out your search tool on a site I'm working on. Very nice. With particularly wide grids, I'm going to tweak the code so that all the columns can be displayed without the addition of scrollbars, but otherwise it's a great plug-in.
One question: have you considered adding the ability to select comparison operators?
Josh
-
27 Feb 2008 2:58 PM #95
Not in this plugin. Search for thread named "An ideal grid filter for large databases" created by me. There is my vision of it.
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
-
28 Feb 2008 2:45 PM #96franckxxGuest
hi Jsakalos,
I've just tested.... it's simple, efficace (in french), it's my prefered with live search plugin.
thx a lot.
i go to install it on my project (for one module)
-
29 Feb 2008 12:44 AM #97
Thank you!
The design principles were: simple to use by both user and programmer. I'm glad you're satisfied.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
-
2 Mar 2008 6:50 AM #98
Jozef,
I using the plugin, but it does not seem to work on searching in a column which has custom renderer:
I have a renderer:
Is there some code I could add?PHP Code:function combinecols(value, meta, record, rowIndex, colIndex, store){
return record.get('joblocation') + value;
}
Thanks,
Sanj
-
2 Mar 2008 8:00 AM #99
I don't know if you're using local or remote search but definitely it won't work w/o handling custom renderers either server- or client-side. If it's local you'd probably look at the filterBy method of the Store.
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
-
2 Mar 2008 4:43 PM #100
thanks Jozef, would it be possible to disable the search dropdown menu, that way I can hide the columns but use them for searching?


Reply With Quote