This topic contains 4 replies, has 2 voices, and was last updated by Todor 4 years, 1 month ago.
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic.
jQuery UI Widgets › Forums › Dialogs and Notifications › Window › window open/expand triggers a resize event?
Tagged: javascript window, jquery window, jqwidgets window, resize event, window
This topic contains 4 replies, has 2 voices, and was last updated by Todor 4 years, 1 month ago.
hello – why is jqxWindows triggering a windows-resize event?
open: http://jsfiddle.net/edwardsmarkf/2p1zotjr/
expand: http://jsfiddle.net/edwardsmarkf/we5fk9p1/1/
is there any way to suppress this behavior? its causing issues with other scripts.
Hello edwardsmarkf,
You can review the following topic whether it could be helpful.
Let us know if you need further assistance.
Best Regards,
Todor
jQWidgets Team
https://www.jqwidgets.com
thank you!
thought: you might consider adding this to the documentation for jqWindow ‘open’ and ‘expand’ – maybe a note that this code might need to be included:
$(‘#jqxWindow’).on(‘resize’, (event) => {
event.stopPropagation();
})
or better:
$('#jqxwindow').on('resize', event => event.stopPropagation() )
Hello edwardsmarkf,
Thank you for the feedback. We would consider it.
Best Regards,
Todor
jQWidgets Team
https://www.jqwidgets.com
You must be logged in to reply to this topic.