-
16 Jan 2012 11:03 PM #1
Unanswered: Extjs4 Ext.view.View selectionchange event trigger twice when select one item
Unanswered: Extjs4 Ext.view.View selectionchange event trigger twice when select one item
I am using Ext.view.View for my data view. When I select one item 'selectionchange' event trigger twice. But without "multiSelect:true" it only trigger once.
Code:Ext.define('myViewView', { extend: 'Ext.view.View', alias: 'widget.myViewView', store: myContentStore, cls: 'content-view-view', tpl: myContentViewTpl, multiSelect: true, trackOver: true, overItemCls: 'x-item-over', itemSelector: '.thumb-wrap', emptyText: emptyDataText, resizable: true, style: { overflow: 'auto' }, listeners: { selectionchange: function(dv, selections) { } }, prepareData: function(data) { Ext.apply(data, { sizeString: Ext.util.Format.fileSize(data.size), modifiedString: Ext.util.Format.date(data.modified, "m-d-Y:g-i-a"), fileFormatPath: createBreadCrumb(data.filePath, false) }); return data; } });
-
17 Jan 2012 8:54 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,624
- Vote Rating
- 434
- Answers
- 3106
multiSelect to true means that you have to use ctrl and click to have multiSelect. It's firing twice because it deselects one and select another therefore you have two selection changes. If you use simpleSelect, you don't have to use ctrl to select multiple items.
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