jQWidgets Forums
Forum Replies Created
-
Author
-
so the culprit is your 2.2.1 version, thank you very much for the help.
Then look at my demo
http://www.antkorp.in/jqx_window.html
the events never calling..!
whats wrong in it?
Please respond quickly.
I think no difference in calling the close callback then why my callback not triggering.
I am not having different scenario of calling close callback. Then please explain me how to check is there any failure of triggering callback.
I was already pasted my code and again pasting it. Close callback not triggering.
<div id="rtcv"> <div class="vidtitle"> Konga raju </div> <div> <!-- some elements--> </div> </div>$('#rtcv').jqxWindow({ height : 300, width : 320, minHeight : 100, maxHeight : 600, maxWidth : 500, theme : 'darkblue', autoOpen : false, showCollapseButton : true, resizable : true }) $('#rtcv').bind('close', closecallback);
sample is working fine but why my scenario is not working? is there any mistakes in my side?
Or
tell me possibilities to not to work the bind event …!
$('#rtcv').jqxWindow({ height : 300, width : 320, minHeight : 100, maxHeight : 600, maxWidth : 500, theme : 'darkblue', autoOpen : false, showCollapseButton : true, resizable : true }) $('#rtcv').bind('close', closecallback);
I am expecting to trigger callback when when user click on window close button.
is id necessary for windows?
$("<div />").append("<div>" + windowname + "</div>").append(" <div />").jqxWindow({ autoOpen : true, showCloseButton : true, closeButtonAction : 'close', showCollapseButton : false, height : 400, width : 600, draggable:true, resizable:true, });
I am creating windows like this
but the only top most is dragging .October 26, 2012 at 1:08 pm in reply to: issue with modal window height issue with modal window height #10100$(‘<div></div><div></div>‘).appendTo(‘body’).jqxWindow({height : ’120px’,width : 300,resizable : false,draggable : false,title : ‘Info’,content : data,isModal : true,closeButtonAction : ‘close’});
close callback not firing in my case
October 26, 2012 at 12:57 pm in reply to: issue with modal window height issue with modal window height #10093$(‘
‘).appendTo(‘body’).jqxWindow({
height : ‘120px’,
width : 300,
resizable : false,
draggable : false,
title : ‘Info’,
content : data,
isModal : true,
closeButtonAction : ‘close’
});divs are taking as html in post.
I am not creating modal windows
-
AuthorPosts