Author Topic: In the popup screen, collapsible option is not working in IE browser  (Read 3399 times)

bsolteam

  • Pro Deluxe
  • Full Member
  • *
  • Posts: 107
    • View Profile
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.

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6263
    • View Profile
Re: In the popup screen, collapsible option is not working in IE browser
« Reply #1 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.

bsolteam

  • Pro Deluxe
  • Full Member
  • *
  • Posts: 107
    • View Profile
Re: In the popup screen, collapsible option is not working in IE browser
« Reply #2 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



paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6263
    • View Profile
Re: In the popup screen, collapsible option is not working in IE browser
« Reply #3 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');
            }
        }

bsolteam

  • Pro Deluxe
  • Full Member
  • *
  • Posts: 107
    • View Profile
Re: In the popup screen, collapsible option is not working in IE browser
« Reply #4 on: November 27, 2015, 04:31:24 pm »
Hello Team,
                      Wow,, super it working now Thanks for the reply..


Regards,
Bsol TEam.