jQWidgets Forums
Forum Replies Created
-
AuthorSmart UI R1 2023 Posts
-
January 9, 2025 at 10:05 pm in reply to: Grid Cell Editing Example Grid Cell Editing Example #135574
Hi walker1234,
Please take a look at https://jsfiddle.net/jqwidgets/tzHXR/
Best Regards,
Peter StoevjQWidgets Team
https://www.jqwidgets.com/December 16, 2024 at 8:15 am in reply to: updatebounddata and grouping updatebounddata and grouping #135542Hi Benny,
For multiple updates at once, the Grid also has beginupdate and endupdate methods. The first one stops the rendering, the second one resumes it.
Regards,
PeterjQWidgets Team
https://www.jqwidgets.com/December 13, 2024 at 7:39 am in reply to: updatebounddata and grouping updatebounddata and grouping #135540Hi Benny,
This is the idea of these parameters of updatebounddata, to keep the sorting, filtering, etc. Otherwise, updatebounddata re-bind and re-renders completely the Grid component.
Regards,
PeterjQWidgets Team
https://www.jqwidgets.com/December 1, 2024 at 5:50 pm in reply to: addSpecialDate: disable date addSpecialDate: disable date #135526Hi,
The special dates are optional and once you add them, we do not have a method to remove them. We will consider updating this behavior.
Best regards,
Peter StoevjQWidgets Team
https://www.jqwidgets.com/November 27, 2024 at 8:15 am in reply to: Upload All/Cancel All button text is cut off using jqxFileUpload in dark mode Upload All/Cancel All button text is cut off using jqxFileUpload in dark mode #135515Hi,
You can add this to your code as a solution
document.querySelectorAll('.jqx-file-upload-dark .jqx-button-dark').forEach(button => button.style.width = '120px')
Best regards
Peter StoevNovember 27, 2024 at 7:58 am in reply to: jqxMenu inside jqxDocking window renders under window due to z-index issue jqxMenu inside jqxDocking window renders under window due to z-index issue #135514Hi,
The popup z index can be controlled by using the Menu’s popupZIndex property. You can set it to a value like 9999999 in order to be sure it is on top of everything.
Best regards,
Peter StoevNovember 27, 2024 at 7:57 am in reply to: qxChart inside jqxDocking window does not work qxChart inside jqxDocking window does not work #135513Hi,
Please, look at this: https://codesandbox.io/p/sandbox/github/jqwidgets/angular/tree/master/dockinglayout/idelikelayout. This is an example with jqxChart in the Docking layout
Best regards,
Peter StoevNovember 27, 2024 at 7:56 am in reply to: jqxDockingLayout does not work jqxDockingLayout does not work #135512Hi,
Please, take a look at this: https://codesandbox.io/p/sandbox/github/jqwidgets/angular/tree/master/dockinglayout/defaultfunctionality?file=%2Fsrc%2Fapp%2Fapp.component.ts
Best regards,
Peter StoevjQWidgets Team
https://www.jqwidgets.com/November 23, 2024 at 12:33 pm in reply to: jqxWindow and jgxGrid filtering jqxWindow and jgxGrid filtering #135504Hi ukese,
Could you please share an example of this so we can look into it?
Best regards,
Peter StoevjQwidgets team
https://www.jqwidgets.com/November 21, 2024 at 1:49 pm in reply to: Datatable Conditional cell format without class Datatable Conditional cell format without class #135499Hi,
I suggest you to take a look at jqxGrid or our Smart.Grid on htmlelements.com. They have more styling options compared to the jqxDataTable which is focused for more basic table-related operations. Another hint is that you can try to use CSS class applied to jqxDataTable similar to the conditional formatting demo, but the background can be defined as a CSS variable. In the cellsRenderer, you can dynamically set the CSS variable
Best regards,
Hi Tomi.Urych,
If you have a jqwidgets license subscription, please write to support@jqwidgets.com and you will get unlock instructions.
Best regards,
PeterjQWidgets team
https://www.jqwidgets.com/November 6, 2024 at 12:15 pm in reply to: jqxcombobox inside table cell jqxcombobox inside table cell #135478Hi,
You can check this https://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/customwidgetscolumn.htm?fluent
Best regards,
Peter StoevjQWidgets Team
https://www.jqwidgets.com/October 31, 2024 at 8:07 am in reply to: Trying to use the jqxTreeGrid('getRow') command Trying to use the jqxTreeGrid('getRow') command #135462Hi Alastair,
The issue here is likely related to how jqxTreeGrid(‘getRow’) expects its arguments and the structure of your data. Let’s break down the function:
Purpose of the “1.2” Argument
In the jQWidgets jqxTreeGrid API, the getRow function needs an argument that uniquely identifies the row you’re trying to retrieve. Here’s how it works:getRow expects a row key as its second argument, typically a unique identifier within the TreeGrid.
In the example jqxTreeGrid(‘getRow’, “1.2”), “1.2” is a string representing the row key of the specific row you want to access. The row key must match the unique identifier used in your TreeGrid data.
Common Causes for undefined
Incorrect Row Key: If “1.2” does not exist as a key in your TreeGrid, getRow will return undefined. Verify that the row you want actually has that specific key.
Data Structure Check: If you’re not sure of the row keys, you can call jqxTreeGrid(‘getRows’) to retrieve all rows, then examine the structure and row keys in the data to find the correct key for your desired row.
Syntax: Make sure your jQuery selector is correct and that jqxTreeGrid is initialized on the selector before you call getRow.Regards,
Peter StoevjQWidgets team
https://www.jqwidgets.com/October 25, 2024 at 7:59 am in reply to: Is there a way to simulate a cellClick event in Treegrid? Is there a way to simulate a cellClick event in Treegrid? #135452Hi Alastair,
The rowClick event brings information about the clicked TreeGrid cell, too.
$('#treeGrid').on('rowClick', function (event) { // event args. var args = event.args; // row data. var row = args.row; // row key. var key = args.key; // data field var dataField = args.dataField; // original click event. var clickEvent = args.originalEvent; });
Regards,
PeterHi ajcs,
In this case, the sum of percentages should be less than 100%, have one column with fixed width and another one without width to take up what’s remaining.
Best regards,
Peter StoevjQWidgets Team
https://www.jqwidgets.com/ -
AuthorPosts