ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: bsolteam on November 11, 2015, 01:25:40 pm

Title: In the popup screen, collapsible option is not working in IE browser
Post by: bsolteam on November 11, 2015, 01:25:40 pm
Hi Team,
                I am using the collapsible option in the pop up modal, when i am clicking the top right icon it will expand to full screen and after that again if i click the same icon to resize the pop up grid to original size then it is not allowing to resize the icon is not clickable and the other buttons over the title bar itself not working.
           This Issue i am facing in Internet Explorer browser only.Please consider this issue as high priority and give response as soon as possible.

Thanks in advance

Regards,
Bsol Team.
Title: Re: In the popup screen, collapsible option is not working in IE browser
Post by: paramvir on November 11, 2015, 01:38:57 pm
The described issue is not reproducible at our end.

Please share a small sample wherein the issue can be reproduced.
Title: Re: In the popup screen, collapsible option is not working in IE browser
Post by: bsolteam on November 26, 2015, 02:55:26 pm
Hi team,
              I am sending the sample code where in the popup grid available for which we are not able to minimize the grid after expanding.
These issue is happening in IE browser.
     
         But the demo example what it is available in the below link. Here it is working fine.
       http://paramquery.com/pro/demos24/fluid_popup.
So Please go through the code and check where we are doing mistake.

Thanks
Bsol Team


Title: Re: In the popup screen, collapsible option is not working in IE browser
Post by: paramvir on November 27, 2015, 01:01:53 pm
This is the fix for toggle button of grid in jQueryUI dialog in IE.

Code: [Select]
        //event callback ( add it in options of pqgrid )
        toggle: function(evt, ui){
            if(ui.state == 'max'){
                $(".ui-dialog,.ui-widget-overlay").css('position', 'static');               
            }
            else{
                $(".ui-dialog,.ui-widget-overlay").css('position', 'absolute');
            }
        }
Title: Re: In the popup screen, collapsible option is not working in IE browser
Post by: bsolteam on November 27, 2015, 04:31:24 pm
Hello Team,
                      Wow,, super it working now Thanks for the reply..


Regards,
Bsol TEam.