jQWidgets Forums
Forum Replies Created
-
Author
-
Hello NormB,
Please, check this Demo if it is what you are looking for. It is using the
mousedown
event.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comHello mrallaris,
We recommend that each component is initialized with a separate data source, in order to avoid issues.
In your case, I would suggest you load the data locally using one ajax call and then set it to the different drop down lists.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comMarch 7, 2022 at 5:16 pm in reply to: old data is coming in the updated row old data is coming in the updated row #121575Hello Serdar,
I have tested this Example based on the code that you have provided and it is working as expected.
Could you update it so it reproduce the behavior that you are describing?Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comHello jmshim,
This is because you have a column with value 0.2 that can not be displayed if the decimal places are set to 0.
If you remove it then you will get the expected outcome.
Here is an Example.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comFebruary 23, 2022 at 3:23 pm in reply to: jqxLayout initialise with auto hide group open jqxLayout initialise with auto hide group open #121556Hello NormB,
You can check whether any of the
<li>
elements inside the .jqx-layout-group-auto-hide container hasjqx-ribbon-item-selected
class. Then the auto hide tab will be open.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comFebruary 18, 2022 at 4:41 pm in reply to: Combo box with different items for different rows. Combo box with different items for different rows. #121549Hello Mahesh,
You can check our Cascading ComboBoxes Demo. There the source of the second column combobox editor is updated dynamically.
Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comFebruary 16, 2022 at 2:32 pm in reply to: Warning: Undefined array key "pagenum" Warning: Undefined array key "pagenum" #121537Hello Alam,
Please, check the following Topic if it is describing your case.
Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comFebruary 16, 2022 at 11:58 am in reply to: 'required' attribute causes validation message on 'Browse' in File Upload 'required' attribute causes validation message on 'Browse' in File Upload #121536Hello Phil,
You can move the jqxFileUpload outside of the form. Then clicking on “Browser” will not cause the required message to pop-up.
Here is an Example.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comFebruary 15, 2022 at 9:54 am in reply to: DropDownList not populated with text file DropDownList not populated with text file #121528Hello liobar,
Thank you for the update!
Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comFebruary 14, 2022 at 1:03 pm in reply to: How to set a new value to a other cell within cellvaluechanged event . How to set a new value to a other cell within cellvaluechanged event . #121518Hello Mahesh,
Before we start updating the cells we initialize a boolean variable
changeTriggeredFromEvent
with value “false”.
Then when we call thesetcellvalue
method and thecellvaluechanged
event is triggered we setchangeTriggeredFromEvent
to true before updating another cell. So the next time thatcellvaluechanged
is triggered thechangeTriggeredFromEvent
variable is “true” and we know that this change comes from the event handler so we just set it to “false” again and exit the function without doing another cell update.setcellvalue
triggers only thecellvaluechanged
event.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comFebruary 14, 2022 at 11:15 am in reply to: Knockout event binding and model binding Knockout event binding and model binding #121516Hello pk,
Thank you for the feedback!
I have added work items for these cases.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comFebruary 11, 2022 at 11:49 am in reply to: DropDownList not populated with text file DropDownList not populated with text file #121505Hello liobar,
Your code seems to be correct. Are there any error in the console? Also can check in the Network tab of the Dev tools if the file is loaded successfully?
Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comFebruary 11, 2022 at 11:23 am in reply to: jqxLayout initialise with auto hide group open jqxLayout initialise with auto hide group open #121504Hello NormB,
Yes, you can select one of the
<li>
items of the auto hide group and trigger a click event on it to open it.
Here is an Example.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comFebruary 11, 2022 at 11:11 am in reply to: jqxBarGauge not all space [2] jqxBarGauge not all space [2] #121503Hello pcesar12,
The
width
andheight
properties of the jqxBarGauge set the size of the component container. However, the bars inside are rendered using SVG and cannot take the whole space.
Also, jqxBarGauge accepts the size in pixels. If you need to resize it dynamically you can update thewidth
andheight
when needed.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comFebruary 10, 2022 at 5:52 pm in reply to: jqxTree access to label of selected item's parent jqxTree access to label of selected item's parent #121499Hello NormB,
When you get the clicked item using the
getItem
method it hasparentElement
property. It return the parent item element that you can pass to thegetItem
method again and then take the parent item’s label.Here is an Example.
Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.com -
AuthorPosts