jQWidgets Forums
Forum Replies Created
-
Author
-
December 12, 2017 at 7:37 am in reply to: jqxTabs with different validation on each tab jqxTabs with different validation on each tab #97886
hi Stanislav,
Thank you for pointing me to that example. I took a look. It does validation however, I am looking for more like jqxValidator where each validation message is below corresponding input box on that tab and validation is only done on that tab selected Is it possible?
Kind like below,
$(‘#jqxTabs’).jqxValidator({
hintType: ‘label’,
animationDuration: 0,
rules: [
// when tab 1 is selected
{input: ‘#inputTab1A’, message: ‘CAN NOT BE BLANK’, action: ‘blur, keyup, valueChanged’, rule: ‘required’},
{input: ‘#inputTab1B’, message: ‘CAN NOT BE BLANK’, action: ‘blur, keyup, valueChanged’, rule: ‘required’},// when tab 2 is selected
{input: ‘#inputTab2A’, message: ‘CAN NOT BE BLANK’, action: ‘blur, keyup, valueChanged’, rule: ‘required’},
{input: ‘#inputTab2B’, message: ‘CAN NOT BE BLANK’, action: ‘blur, keyup, valueChanged’, rule: ‘required’},]
});Appreciate the help!
December 6, 2017 at 7:46 am in reply to: change font size of the dropdown list item of jqxComboBox change font size of the dropdown list item of jqxComboBox #97787Thank Dimitar for answering previous post. Below code seems to work.
<style type=”text/css”>
.jqx-listitem-state-normal
{
font-size: 17px;
font-family: Times New Roman;
}
</style>December 6, 2017 at 6:47 am in reply to: get jqxComboBox to read QRcode get jqxComboBox to read QRcode #97785Hi all,
I use the following and it seems to work with QR code input.
var value = $(“#jqxCombobox input”).val().trim();
December 5, 2017 at 2:00 am in reply to: reload dropdownlist in jqxComboBox from ajax source reload dropdownlist in jqxComboBox from ajax source #97736Appreciate the help!
December 4, 2017 at 9:24 am in reply to: button inside jqxTab "sometimes" need to click twice to execute on click functio button inside jqxTab "sometimes" need to click twice to execute on click functio #97702After some testing, I found that if jqxTabs has these properties:
animationType: ‘none’
selectionTracker: falsethen the buttons work property with single click.
November 22, 2017 at 1:29 am in reply to: filter jqxGrid by jqxDatetimeInput on the toolbar filter jqxGrid by jqxDatetimeInput on the toolbar #97481Thank you Hristo! I will give it a try.
November 21, 2017 at 9:15 am in reply to: filter jqxGrid by jqxDatetimeInput on the toolbar filter jqxGrid by jqxDatetimeInput on the toolbar #97473so far, I tried the following code:
var filterStartDate = “2017-11-14 11:17”;
console.log(“filtervalue:”, filtervalue);
var filter_or_operator = 1;var startDateFilterGroup = new $.jqx.filter();
startDateFilterGroup.operator = ‘or’;
var startDateFilter = startDateFilterGroup.createfilter(‘datefilter’, filterStartDate, ‘GREATER_THAN_OR_EQUAL’);
startDateFilterGroup.addfilter(filter_or_operator, startDateFilter);
$(“#jqxgrid”).jqxGrid(‘addfilter’, ‘recordDate’, startDateFilterGroup);I tried above code but no luck in filtering by date. The date format in the jqxGrid column is yyyy-MM-dd hh:mm . and not sure what format should the filterStartDate be so that any date greater than it will be filtered out?
Appreciatge the help!
November 21, 2017 at 8:19 am in reply to: How can jqxGrid render toolbar with jqxDatetimeInput within one row? How can jqxGrid render toolbar with jqxDatetimeInput within one row? #97471Thank you again Hristo! I used the example to redo the toolbar and it is working now. Appreciate the help!
November 20, 2017 at 12:21 am in reply to: reload dropdownlist in jqxComboBox from ajax source reload dropdownlist in jqxComboBox from ajax source #97419Hi Hristo,
I tried your suggestion. It is not quite what I was hoping for. The source (from url source) remains the same. I just need the jqxComboBox to ‘refetch’ from the source again. For example, say the jqxComboBox has dropdown list of ‘1,2,3’ (pulling from db). Because the form has been submitted, the db now has ‘1,2,3,4’, I need the jqxComboBox dropdownlist to show ‘1,2,3,4’. Is there a way to do this?
Appreciate the help!
November 17, 2017 at 2:17 am in reply to: reload dropdownlist in jqxComboBox from ajax source reload dropdownlist in jqxComboBox from ajax source #97390Thank you Hristo! Appreciate the help!
November 16, 2017 at 1:32 am in reply to: jqxComboBox keypress function jqxComboBox keypress function #97351Thank you Stanislav! Appreciate the help!
November 11, 2017 at 1:33 am in reply to: skip over jqxInput when pressing tab skip over jqxInput when pressing tab #97256Thank you Stanislav! Just what I was looking for! Appreciate the help!
-
AuthorPosts