jQWidgets Forums
Forum Replies Created
-
Author
-
This is the security warning popup message only on mozilla firefox
“Although this page is encrypted, the information you have entered is to be sent over an unencrypted connection and could easily be read by a third party.
Are you sure you want to continue sending this information?”all other browsers are working fine
February 3, 2017 at 2:01 pm in reply to: colorFunction not working chart with zooming colorFunction not working chart with zooming #91257Hi,
Do you have any information when this will be fixed?
As i have submit in a week to my client. please provide estimate.Thanks.
February 1, 2017 at 7:46 pm in reply to: close jqxwindow on click outside of window close jqxwindow on click outside of window #91181Thank you it is working as expected
February 1, 2017 at 5:15 pm in reply to: close jqxwindow on click outside of window close jqxwindow on click outside of window #91173My requirement says it should look like modal window and should close when clicked outside
February 1, 2017 at 4:16 pm in reply to: close jqxwindow on click outside of window close jqxwindow on click outside of window #91170Yes code works perfectly if jqxwindow is not modal
$(‘#jqxwindow’).jqxWindow({
theme: ‘energyblue’,
isModal: true
});
$(document).click(function(e) {
var container = $(‘#jqxwindow’);
if (!container.is(e.target) && container.has(e.target).length === 0) {
container.jqxWindow(‘close’);
}
});it does not work with the above code
February 1, 2017 at 3:58 pm in reply to: close jqxwindow on click outside of window close jqxwindow on click outside of window #91167Hi,
I tried with the below code but did not help me
$(document).click(function (e)
{var container = $(“#channelEditingWindow”);
if (!container.is(e.target)
&& container.has(e.target).length === 0)
{$(‘#channelEditingWindow’).jqxWindow(‘close’);
}
});Please let me know if i need to change any thing in above code
February 1, 2017 at 12:23 am in reply to: close jqxwindow on click outside of window close jqxwindow on click outside of window #91150I have a code in the below format
<div id=’jqxwindow’>
<div>Header</div>
<div>Content</div>
</div>$(‘#jqxwindow’).jqxWindow({
theme: ‘energyblue’,
isModal: true
});so i want to close that window when user clicks outside of window
February 1, 2017 at 12:12 am in reply to: close jqxwindow on click outside of window close jqxwindow on click outside of window #91149How can i know if user clicked on outside window?
how to attach it to my jqxWindow? do you have any working example or sample code? -
AuthorPosts