jQWidgets Forums
Forum Replies Created
-
Author
-
February 10, 2022 at 5:34 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 . #121498
Hello Mahesh,
You can use a flag to check whether the change is triggered by the
cellvaluechanged
event or not.
Here is an Example.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comFebruary 9, 2022 at 4:02 pm in reply to: Grid column background color Grid column background color #121495Hello Mahesh,
The sample code is in the link from my previous response. You can see it on http://jsfiddle.net/Lgx0mnk5/.
Here is the CSS you need to add:
.yellow { background-color: yellow; }
Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comFebruary 9, 2022 at 3:56 pm in reply to: digits an spinButtonsStep issue digits an spinButtonsStep issue #121494Hello Giorgio,
Thank you for the feedback! It seems that this is an issue.
I have added a work item for this case.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comFebruary 9, 2022 at 3:08 pm in reply to: Multiple kanbans – 'AddItem' not working Multiple kanbans – 'AddItem' not working #121493Hello bcm,
There is a work item created for this case. It should be fixed in the next releases.
In the meantime, if you look for more advanced Kanban, you can try Smart.Kanban from htmlelements.com.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comFebruary 8, 2022 at 2:38 pm in reply to: Width percentage not applied via Knockout binding Width percentage not applied via Knockout binding #121479Hello pk,
In your case, you can use css for setting the jqxNumberInput width.
I have updated your Example.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comFebruary 8, 2022 at 1:35 pm in reply to: Grid column background color Grid column background color #121478Hello Mahesh,
cellclassname
property adds a class to the column cells, in your case “yellow”. You just need to add css for setting the background color for this class.
Here is an Example.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comFebruary 1, 2022 at 6:17 pm in reply to: Selecting a tab in jqxlayout Selecting a tab in jqxlayout #121456Hello NormB,
You can select the
jqxRibbon
element using jQuery and call itsselectAt
method passing the index of the tab you need to select.
Here is an Example.Let us know if you need any further assistance!
Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comHello Kavya,
I’m testing an example with the code you have sent but cannot reproduce the issue.
Do you have sorting or filtering applied to the grid? Can you update this Stackblitz example so that it reproduces the behavior described?Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comFebruary 1, 2022 at 10:38 am in reply to: JqxGrid doubleclick issue JqxGrid doubleclick issue #121454Hello Kavya,
I have tested the following Example and it is working fine.
rowclick
,rowdoubleclick
,cellclick
andcelldoubleclick
events are all fired when you double click on a cell.You can update the Stackblitz example to reproduce your case so we can inspect the behavior.
Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comHello Kavya,
Could you, please, provide us an example of your use case so we can investigate what may be causing the issue?
Thank you!Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comHello walker1234,
The issue is coming from the fact that you are trying to make an asynchronous call and state update inside the
cellsrenderer
callback which is not async and it can not support it.
I would suggest you make the necessary API calls before that, outside the grid callbacks, and then refresh the grid when the state has been updated.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comJanuary 25, 2022 at 3:16 pm in reply to: how to LEFT ALIGN the DEFAULT paging how to LEFT ALIGN the DEFAULT paging #121425November 17, 2021 at 11:38 am in reply to: How to update a second column on edititing a cell value How to update a second column on edititing a cell value #121096Hello magostoni,
I would suggest you check the following demo about Computed Column. It seems that this is your scenario. The
updaterow
callback is called only once when a cell from the used column is edited.Please, let us know if you need any further assistance!
Best Regards,
Martin Yotov
jQWidgets team
https://www.jqwidgets.comNovember 17, 2021 at 10:42 am in reply to: Using and customizing everPresentRow Using and customizing everPresentRow #121095Hello rmichel,
I would suggest you check our demo about Localized Add New Row. There you can see how you can localize the everpresentrow placeholders and buttons text.
You can disable the editing of a column in the everpresentrow by selecting the input element and adding a
disabled
attribute to it.
You can see the following Example.You can read more about the
addRow
,updateRow
anddeleteRow
callbacks on this Page.Best Regards,
Martin Yotov
jQWidgets team
https://www.jqwidgets.comAugust 31, 2021 at 11:21 am in reply to: Highlight and autoscroll to newly added row Highlight and autoscroll to newly added row #120679Hello prashant,
Thank you for your example.
This is how it is expected to behave. When you add a new row in an unsorted grid it is added at the bottom. However,
if the grid is sorted by some column the sorting would be applied for the new row, too. Otherwise, adding it again at the bottom would break the sorting.You can check this Example.
Best Regards,
Martin YotovjQWidgets Team
https://www.jqwidgets.com/ -
AuthorPosts