Community & Support

Slow responsibility - ModalFrame

Hi,

I am using Modal Frame for display my form as a popup.That form is working properly in both IE and Firefox. I am having splitter in my application. If i have added my splitter code, then my Popup form elements are responding very slowly in IE. That is, while entering text, cursor has moved but text is displayed after 10 seconds, and calendar displayed after 10 seconds and other events like radio button click,checkbox click everything is slow in IE and in forefox no problem. I f i have removed my splitter code then no response timing problem. If i have added the splitter code, then the response timing problem in IE.

Please guide me to solve this.

Thanks in advance.

Comments

Fixed

This issue has been fixed by adding one line in parent.js of modalframe module

http://localhost/drupal/sites/all/modules/modalframe/js/parent.js?n

Drupal.modalFrame.fixPosition = function($element, isOpen) {
-  var $window = $(window);
+  var self = this, $window = $(window);
   if ($.browser.msie && parseInt($.browser.version) <= 6) {

Reference issue link

comment #4

Thanks
B.Sadhana