Hybrid View
-
4 Jul 2012 2:03 AM #1
Answered: how add action to search field
Answered: how add action to search field
SALAM
i want to add a search button on my view to searching an item of my list
here is my view
and now i want to search an item with "transactionDATE" as a criteria.Code:App.views.BankingdoneeCompte = Ext.extend(Ext.List, { store: 'infocomptes', itemTpl: '<div class="date">{transactionDATE}</div> <div class="operations">operation: {transactionNATURE}</div> <div class="money">Mantant: {transactionMANTANT}</div> <div class="money2">compte: {compteID}</div>', }); Ext.reg('BankingdoneeCompte', App.views.BankingdoneeCompte);
how can i code the search field ?
thank you
-
Best Answer Posted by mitchellsimoens
Something like this? The filter may need something more or use filterBy or something.
Code:{ xtype : 'searchfield', listeners : { action : function(field) { var value = field.getValue(), store = Ext.getStore('infocomptes'); store.filter('transactionDate', value); } } }
-
6 Jul 2012 4:57 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,582
- Vote Rating
- 433
- Answers
- 3102
Something like this? The filter may need something more or use filterBy or something.
Code:{ xtype : 'searchfield', listeners : { action : function(field) { var value = field.getValue(), store = Ext.getStore('infocomptes'); store.filter('transactionDate', value); } } }Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.


Reply With Quote