jQWidgets Forums
Forum Replies Created
-
Author
-
August 26, 2022 at 1:26 pm in reply to: Missing row(s) on expand group in virtualmode Missing row(s) on expand group in virtualmode #122403
Hi pwfw,
Unfortunately, such grouping is still not officially supported.
I would suggest to either disable virtual mode or use a jqxTreeGrid, which supports grouping in virtual mode, see example here
Best Regards,
Ivan Peevski
jQWidgets team
https://www.jqwidgets.comAugust 26, 2022 at 1:11 pm in reply to: Grid export not showing correct values Grid export not showing correct values #122402Hi Jaco,
1) You can use
beforeLoadComplete
to get rid of null values and replace them with empty strings.
` var dataAdapter = new $.jqx.dataAdapter(source, {
autoBind: true,
beforeLoadComplete: function(records){
var data = new Array();
for (var i = 0; i < records.length; i++) {
var record = records[i];
if(record.firstname == null){
record.firstname = ”;
}
data.push(record);
}
return data;
}
});`2) Exportview will export all visible and hidden columns. To make a column unexportable, you should set
exportable:false
. In a Column Chooser, you can implement it in this way:$("#openButton").on('click', function () { $("#grid").jqxGrid('openColumnChooser'); setTimeout( function(){ $(".jqx-listbox").jqxListBox() $(".jqx-listbox").on('checkChange', function (event) { var args = event.args; if (args.checked) { $("#grid").jqxGrid('setcolumnproperty', args.value, 'exportable', true); } else { $("#grid").jqxGrid('setcolumnproperty', args.value, 'exportable', false); } })}, 100) });
Please let me know if this works for you!
Best Regards,
Ivan Peevski
jQWidgets team
https://www.jqwidgets.comAugust 25, 2022 at 2:58 pm in reply to: Grid export not showing correct values Grid export not showing correct values #122395Hi Jaco,
The values are shortened, since there is no space left in the table column.
As a workaround, you can useexportview
with pdf. The exported table has dynamic row height and all values will be visible.
See demo here: Data ExportBest Regards,
Ivan Peevski
jQWidgets team
https://www.jqwidgets.comAugust 22, 2022 at 8:41 am in reply to: Problem jquery 3.3.1 or higher Problem jquery 3.3.1 or higher #122375Hi draligaber,
Can you please confirm if the fix above works in your case?
Best regards,
Ivan PeevskijQWidgets Team
https://www.jqwidgets.com/August 22, 2022 at 8:37 am in reply to: Align seach input and search icon Align seach input and search icon #122374Hi,
One way to achieve this is to use
display: flex
in the wrapping div.
See an example here: codesandboxBest Regards,
Ivan Peevski
jQWidgets team
https://www.jqwidgets.comAugust 19, 2022 at 10:59 am in reply to: FireFox not showing part of the jqxSwitchButton FireFox not showing part of the jqxSwitchButton #122365Hi Vikas,
Thanks for the feedback and the example.
We will investigate the cause of the issue.
In the meantime, you can avoid this bug by setting thumbSize to a fixed value, instead of a %
See example here: jsfiddleBest Regards,
Ivan Peevski
jQWidgets Team
http://www.jqwidgets.com/August 19, 2022 at 10:42 am in reply to: jqx-splitter-panel margin not supported jqx-splitter-panel margin not supported #122364Hi Gary,
The splitter bar has a
position: absolute
, so I don’t recommend using it in this way.
The solution with a wrapper div is a better oneBest Regards,
Ivan Peevski
jQWidgets team
http://www.jqwidgets.com/Hi ksheer,
Thank you for reporting this. I have opened a work item and we will work on fixing this in one of our next releases.
As a workaround, you can avoid the issue by replacing ‘datafields’ with ‘dataFields’ in the source object.
You can see an example here: jsfiddleBest Regards,
Ivan Peevski
jQWidgets team
https://www.jqwidgets.comAugust 18, 2022 at 2:27 pm in reply to: Chart integrated rangeselector cannot be used independently Chart integrated rangeselector cannot be used independently #122358Hi md,
If I understand you correctly, you would like to live update the chart’s data, while the range selector keeps the original data?
The range selector must always contain the same data as that of the chart. If the chart is updated with new source, the range selector will be updated too. There is no workaround for this unfortunately.
I hope this answers your question. If you have any other doubts, please be sure to contact us again!
Best Regards,
Ivan Peevski
jQWidgets team
https://www.jqwidgets.comAugust 15, 2022 at 9:07 am in reply to: Jqwidgets layout tabs visiblity Jqwidgets layout tabs visiblity #122336Hi,
The example that my colleague sent above works by implementing content of type ‘tabs’. When a tab is clicked, it hides the content of the other tabs and then it shows its own content. There is no need to use the disable property.
Best regards,
Ivan Peevski
jQWidgets Team
https://www.jqwidgets.com/August 15, 2022 at 6:50 am in reply to: How to change boolean checklist values from "True" or "False" to anything else? How to change boolean checklist values from "True" or "False" to anything else? #122335Hi millhron,
Please see the example here: codepen
You don’t need to use the cellsRenderer of the grid, but the
renderer
of the jqxDropDownList.Best regards,
Ivan Peevski
jQWidgets Team
https://www.jqwidgets.com/July 11, 2022 at 5:20 pm in reply to: How to get current form values? How to get current form values? #122055Hi,
As mentioned in a similar post, please have a look at the demo here: codesandbox
You can use the getComponentByName method to get or set the value of form elements.
In the demo, the button will first output the original value of the input box and then replace it with “Default”Best regards,
Ivan Peevski
jQWidgets Team
https://www.jqwidgets.com/July 11, 2022 at 5:18 pm in reply to: How to get set form values? How to get set form values? #122054Hi,
Please, have a look at the demo here: codesandbox
You can use thegetComponentByName
method to get or set the value of form elements.
In the demo, the button will first output the original value of the input box and then replace it with “Default”Best regards,
Ivan Peevski
jQWidgets Team
https://www.jqwidgets.com/July 11, 2022 at 4:33 pm in reply to: Using multiple JqxForm in Vue Using multiple JqxForm in Vue #122053Hi,
Thanks for the feedback, I’ve opened a work item and we will add the missing documentation as soon as possible.
You are correct for the jqxForms. Each jqxTab requires its own HTML content, so you need to create a different form for each tab.Best regards,
Ivan Peevski
jQWidgets Team
https://www.jqwidgets.com/Hi,
Please have a look at the sandbox here: codesandbox
It’s done in the same way as in Javascript/jQuery applications.Best regards,
Ivan Peevski
jQWidgets Team
https://www.jqwidgets.com/ -
AuthorPosts