-
2 May 2011 10:19 AM #1Sencha - Community Support Team
- Join Date
- Nov 2008
- Location
- San Diego, Peoples' Republic of California
- Posts
- 2,040
- Vote Rating
- 7
Render issue with MultiSelect and ItemSelector
Render issue with MultiSelect and ItemSelector
It seems the ListView it creates is too tall.
In the left multiselect, I have 14 items, but only 13 are visible. There's no scrollbar, and if I click/drag just below the 13th, I can drag out the 14th item to the right selector.
If there are 99 items, there is a scrollbar, but you can only scroll it so the 98th is the visible one at the bottom, and the click/drag thing works to drag the 99th.
The proper behavior is to have a scrollbar so you can scroll down to see the 14th item.
I found that modifying MultiSelect.js as follows resolves the issue.
I didn't see a bug report for this issue.Code:onRender: function(ct, position) { ... this.view = new Ext.ListView({ height: this.height-16, multiSelect: true, store: this.store, columns: [{ header: 'Value', width: 1, dataIndex: this.displayField }], hideHeaders: true });
I'm using ExtJS 3.2.1SilkJS - Server Side JavaScript Swiss Army Knife and HTTP Server
Powerful, flexible, advanced charting for ExtJS and Touch: http://zingchart.com
Javascript rocks. Even on the server-side:
ExtJS Forums' Server-Side Javascript Social Group
-
4 Aug 2011 11:49 PM #2
Same issue.
In the multiselect.js, i've changed :
toCode:height: this.height
and it works for all multiselect fields i use.Code:height: this.height-37
Thank you for reporting this bug. We will make it our priority to review this report.
Similar Threads
-
Ext.ux.Multiselect/ItemSelector [v2.2]
By tjstuart in forum Ext 1.x: User Extensions and PluginsReplies: 155Last Post: 7 May 2012, 5:29 AM -
[2.0] Ext.ux.Multiselect/ItemSelector v3.0
By tjstuart in forum Ext 2.x: User Extensions and PluginsReplies: 273Last Post: 11 Nov 2011, 5:48 AM -
[2.x] Ext.ux.Multiselect/ItemSelector
By vtswingkid in forum Ext 2.x: User Extensions and PluginsReplies: 27Last Post: 22 Jun 2010, 11:24 AM -
MultiSelect with ItemSelector
By Romantik in forum Ext 3.x: Help & DiscussionReplies: 0Last Post: 18 Aug 2009, 3:12 AM -
Multiselect/ItemSelector
By ajatib in forum Ext 2.x: Help & DiscussionReplies: 2Last Post: 25 Apr 2009, 4:31 AM


Reply With Quote