Re: Filter row plugin

2012-01-17 Thread Tom Small
Steve thanks for pointing me in the right direction ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-

Re: Filter row plugin

2012-01-16 Thread Andrew Scott
Ok a quick look at the docs http://docs.sencha.com/ext-js/4-0/#!/api Shows that for extJS 4.0 you need to use grid.getSelectionModel() Try that and see how you go. -- Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/108193156965451149543 On Tue, Ja

Re: Filter row plugin

2012-01-16 Thread Steve 'Cutter' Blades
Tom, Your grid questions are really better served by going through the Sencha Ext JS documentation (http://docs.sencha.com/ext-js/4-0/#), the Sencha Ext JS Forums (http://www.sencha.com/forum/forumdisplay.php?81-Ext-Discussion), and maybe a book (see the link in the signature block). I'm not

Re: Filter row plugin

2012-01-16 Thread Tom Small
grid.selectionModel() is produces an error ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/mess

Re: Filter row plugin

2012-01-16 Thread Tom Small
Thanks for the advice ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349

Re: Filter row plugin

2012-01-16 Thread Tom Small
Hi Andrew, thanks for the advice also I think the example code I am using is for ext3 and not 4, and I believe the columnModel approach was removed, maybe that is why I am getting issues. I will send a snippet of my code the your email address, if that is OK? In the meantime will try to work on

Re: Filter row plugin

2012-01-16 Thread Andrew Scott
Ok a quick look at the docs http://docs.sencha.com/ext-js/4-0/#!/api Shows that for extJS 4.0 you need to use grid.getSelectionModel() Try that and see how you go. -- Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/108193156965451149543 On Tue,

Re: Filter row plugin

2012-01-16 Thread Andrew Scott
Tom, One of the best things to look into is Firebug for FireFox or using Chrome for debugging, I prefer Firebug. What you can do is right before the error is place this line of code. console.log(grid); What this will do is confirm that the object is indeed the grid object, by using the console

Re: Filter row plugin

2012-01-16 Thread Tom Small
Hi Andrew, thought I had a solution to the flier grid issue although can not solve the problem. I am using ext designer to generate the code (class) to filter columns in the grid and have attempted to follow various examples, although having no luck so far. Is it possible for me to send you a s

Re: Filter row plugin

2012-01-15 Thread Tom Small
Thanks Andrew I have found a solution on the forum ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-t

Re: Filter row plugin

2012-01-14 Thread Andrew Scott
You may be better going to the forums and asking there at sencha.com its not that some of us can't help you, it is because that is where you will get the most help. Without seeing you code or seeing how you want or are trying to filter the data, whether it is by a button or textbox it makes it ha

Filter row plugin

2012-01-14 Thread Tom Small
Hi, I have built a grid via ext designer and want to know if there is a plugin that will enable that data in the grid to be filtered... Have attempted to follow various examples although they do not represent the code as a class. I would appreciate any help. Thanks Tom