jQWidgets Forums
Forum Replies Created
-
Author
-
September 22, 2020 at 8:10 pm in reply to: jqxValidator closeOnClick not working jqxValidator closeOnClick not working #113131
Which version will contain the fix?
August 20, 2020 at 7:58 am in reply to: jqxValidator closeOnClick not working jqxValidator closeOnClick not working #112752Is work item solved?
June 23, 2020 at 7:28 am in reply to: jqxValidator closeOnClick not working jqxValidator closeOnClick not working #112305Checkout this sample https://jsfiddle.net/jqwidgets/n4cRJ/
– set clickOnClose: true
– set jQuery to v3.x (if you set v2.x or lower clickOnClose works fine)June 23, 2020 at 7:13 am in reply to: jqxValidator closeOnClick not working jqxValidator closeOnClick not working #112304Sorry for reopening the old thread but property closeOnClick is still not working. I’m using the latest version 9.1.6.
April 28, 2017 at 2:04 pm in reply to: multiselect maximum limit selected items multiselect maximum limit selected items #93217Hi, is there a prettier solution in new version?
Got it, thank you!
Do you mean like having my own legend?
March 7, 2016 at 1:25 pm in reply to: Hide validation msgs after x ms Hide validation msgs after x ms #82182I still have to click on the message to hide it. I would like to automatically hide the message(s).
Thank you for the solution. I was searching in documentation and couldn’t find it.
May 14, 2014 at 9:43 am in reply to: Multiple jqxValidator for each form Multiple jqxValidator for each form #54440I have two forms. Form1 is on the main page and form2 is inside iframe element. When I try to validate form2 using code jQuery(‘#iframe’).contents().find(‘#form2’).jqxValidator(‘validate’); it returns undefined. Any ideas?
November 25, 2013 at 6:58 am in reply to: Jumpy scroll bar on the main window with isModal enabled Jumpy scroll bar on the main window with isModal enabled #39094Found a temporary workaround:
$(document).ready(function () {
// fix width and height of modal window
$(‘.jqx-window-modal’).css(‘height’, $(window).height());
$(‘.jqx-window-modal’).css(‘width’, $(window).width());
});November 25, 2013 at 6:29 am in reply to: Jumpy scroll bar on the main window with isModal enabled Jumpy scroll bar on the main window with isModal enabled #38987Hi!
I have the same problem in Chrome, FF and IE10. I’m using jQWidgets v3.0.4. I think the problem lies in the following HTML
<div class=”jqx-window-modal” style=”opacity: 0.3; display: none; position: absolute; top: 0px; left: 0px; width: 1913px; height: 1161px; z-index: 12990;”></div>
My window’s width is 1903px and height 1032px but in the upper HTML we can see the wrong values for the width and height of the window.
November 4, 2013 at 1:08 pm in reply to: multiselect maximum limit selected items multiselect maximum limit selected items #31870I didn’t find the property for this but I did found a “workaround”:
$("#jqxComboBox").on('change', function (event) { var items = $("#jqxComboBox").jqxComboBox('getSelectedItems'), args = event.args; if (items.length === 3) { $("#jqxComboBox").jqxComboBox('unselectIndex', args.index); return false; } }});
October 31, 2013 at 4:26 pm in reply to: Property lineDashStyle for series Property lineDashStyle for series #31704Great! It is working but this property is not mentioned in the documentation.
October 31, 2013 at 12:58 pm in reply to: format (whole static) hours on X axis format (whole static) hours on X axis #31701Dates with dashes e.g. ‘2013-09-24 00:18:32’ are not working but only with forward slashes e.g. ‘2013/09/24 00:18:32’.
-
AuthorPosts