jQWidgets Forums
Forum Replies Created
-
Author
-
I’m using version 4, and this issue doesn’t appear to be resolved. Is there at least a workaround yet?
March 9, 2017 at 5:45 pm in reply to: layout issues for simple confirmation popup. layout issues for simple confirmation popup. #92169(My apologies for making posting 2 questions at once. That was inadvertent.)
Regarding the second question: window “without a title section”…
The link you referenced indicates that the solution is to change the jqx-window-header & jqx-widget-header classes to “display:none”.
As you can see in the demo below, this still leaves problems in the layout. It leaves extra room at the bottom of the window. Is there a way to resize the window to the proper height after the title section is removed?So simple! I was over-thinking it. Thank you!
Thank you. I did read the tutorial, but it doesn’t explain how to reuse the loader for different content.
For example. I may want it to come up with different messages at different times.
Closing it does not remove it from the DOM; it only does a display:none. It seems the only way to reuse it is to do this:
$(‘#jqxLoader’).jqxLoader(‘close’);
$(‘#jqxLoader’).remove()
$(‘body’).append(‘<div id=”jqxLoader”/>’)… which seems a bit awkward.
March 7, 2017 at 5:29 pm in reply to: layout issues for simple confirmation popup. layout issues for simple confirmation popup. #92107Hello, I’d like to display a jqxwindow – but without a title section at the top.
There does not appear to be a property that turns the title off, so I tried:
$(‘.jqx-window-header’).css(‘display’, ‘none’);
This works in removing the title section, but as a result the layout is incorrect: It appears that the overall height of the popup is not recalculated and redrawn. What’s the best way to handle this situation?
My demo: https://plnkr.co/edit/XLx9POPSGJM1Tpd6vOcw?p=preview
March 2, 2017 at 4:57 pm in reply to: sortcolumn gets reset to null if grid not populated during initialization sortcolumn gets reset to null if grid not populated during initialization #92046Thanks, it worked! (I’ve updated my demo with the fix)
February 23, 2017 at 1:48 am in reply to: Cannot read property 'sort' of undefined Cannot read property 'sort' of undefined #91800Thanks! The following also solved the problem. Is there a preferred way?
source.localdata = generatedata(50);
$(“#jqxgrid”).jqxGrid(‘updatebounddata’);Having to set a style for <html> and <body> is a little intrusive. Is there a way of doing this without having to pollute the entire document? I have a very large website and I’m afraid of the repercussions this could cause.
January 30, 2017 at 8:23 pm in reply to: How to display radio buttons How to display radio buttons #91119That worked, thank you.
-
AuthorPosts