-
1 Jul 2010 3:42 AM #1
Nestedlist scroll down to position
Nestedlist scroll down to position
Here is a sample of my code.
some how, when a user selects List A, I need the child of A to scroll down to A3 automatically. Anyone know how this can be done?PHP Code:
var nestedList = new Ext.NestedList({
name:'list',
toolbar: {title:strDefaultTitle},
items: [{
{
text: html,
title: 'A',
items: [{
xtype: 'fieldset',
title: 'A1'
},{
xtype: 'fieldset',
title: 'A2'
},{
xtype: 'fieldset',
title: 'A3'
},{
xtype: 'fieldset',
title: 'A4'
},{
xtype: 'fieldset',
title: 'A5'
}]
},{
text: html,
title: 'B',
items: [{
xtype: 'fieldset',
title: 'B1'
},{
xtype: 'fieldset',
title: 'B2'
}]
}]
});
Similar Threads
-
Scroll position problem...
By danutzdobrescu in forum Ext GWT: Help & Discussion (1.x)Replies: 1Last Post: 20 Mar 2009, 5:37 AM -
Scroll scroll scroooolllll at a fixed position !!!
By j-mi-jim in forum Community DiscussionReplies: 0Last Post: 12 Feb 2009, 6:49 AM -
maintaining scroll position
By repata in forum Ext 2.x: Help & DiscussionReplies: 0Last Post: 24 Oct 2008, 9:39 AM -
Scroll Position
By soneal in forum Ext 2.x: Help & DiscussionReplies: 0Last Post: 5 Mar 2008, 1:41 PM


Reply With Quote