Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My requirement is that to disable a grid panel inside field set or grid rows on certain condition. The grid has more than 20 items and there should be a scroll bar to view all the elements of the grid. If I use disabled property of grid panel, then the scroll bar also gets disabled. But i need the scroll bar to be enabled, so that user can see all items of grid.

For above i coded with feildset autoscroll: true and layout:fit. But on disabling the grid panel, the scrollbar of fieldset also gets disabled because of layout:fit property of fieldset. Is there any way to achieve the requirement?

Code:

Ext.applyIf(this,  {
    border : false,
    frame : false,
    bodyStyle : 'padding:12px 15px 0px',
    labelAlign : 'top',
    columnWidth : 0.5,
    heigth : 350,
    layout : 'form',
    items: [{
        xtype: 'fields',
        id: 'fields',
        layout: 'fit',
        height: 321,
        autoScroll: true,
        title: 'Element list',
        items: mygridPanel
    }]
})
share|improve this question
1  
Did you try wrapping the gridpanel in another panel that has autoscroll, so when you disable the gridpanel the outer panel is still active, so the scrollbar should still function? – gunnx Jun 25 '12 at 7:44
Thanks for your response. I tried with below code it works in firefox. In ie it throws run time error... – Rock123 Jun 25 '12 at 8:06

2 Answers

up vote 1 down vote accepted

I've made up a small demo on jsFiddle for you to look at:

http://jsfiddle.net/CGtqp/

does this help you solve your issue?

share|improve this answer
thanks.. i will try out with help of your example. – Rock123 Jul 2 '12 at 5:27

@abatishchev

Thanks for your response. I tried with below code it works in firefox. In ie it throws run time error...

          border : false,
          frame : false,
          bodyStyle : 'padding:12px 15px 0px',
          labelAlign : 'top',
          columnWidth : 0.5,
          heigth : 350,
          layout : 'form',
          items: [{
            xtype: 'fieldset',
            id: 'fields',
            height: 321,
            autoScroll: true,
            title: 'fieldsettitle',
            items:[{
              xtype : 'form',
              bodyStyle : 'padding:12px 15px 0px',
              border : false,
              frame : false,
              monitorValid : true,
              trackResetOnLoad : true,
              layout: 'fit',
              items: myGridPanel
            }]
          }]
share|improve this answer
check for any trailing extra commas, IE has a habit of throwing errors when you have extra commas. – gunnx Jun 25 '12 at 8:58
i checked trailing commas, there is no such things in my code as pasted above.. ErrorMess:: "Unkown run time error" – Rock123 Jun 25 '12 at 9:27
1  
I'm not sure what that could be. Layout 'fit' on the xtype form doesnt look right, unless you want to override that on purpose? – gunnx Jun 25 '12 at 13:55
Yes i agree.. layout: 'fit' is not correct with xtype: form.. rather i coded with layout: fir for xtype:fieldset above.. Removed the autoScroll: true as we cannot use layout: fit and autoScroll: true together. This code works fine in IE, but a grid scroll bar is displayed which also disabled on disabling the grid panel. But i need the scroll be present even when the grid is disabled. – Rock123 Jun 26 '12 at 3:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.