jQWidgets Forums
Forum Replies Created
-
Author
-
July 26, 2016 at 7:56 am in reply to: Export JqxChart to Excelusing JqWidgets Export JqxChart to Excelusing JqWidgets #86061
Hi Srikanth,
Unfortunately this is not supported by the jqxChart.
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/Hi GabrielCostaAlves,
Its the same with the custom type columns. You have it defined in the grid columns property and when you add new row it adds it. See the fiddle updated.
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/Hi GabrielCostaAlves,
For the
jqxdatetimeinput
,jqxnumberinput
,jqxdropdownlist
type columns just set thecolumntype
property and when you add a new row it will be automaticly made the same.
Here is a short demo:
https://www.jseditor.io/?key=grid-add-new-row-with-dropdownlistBest Regards,
IvojQWidgets Team
http://www.jqwidgets.com/July 25, 2016 at 7:51 am in reply to: Only one group column at a time Only one group column at a time #86009Hi xixo,
Take a look at this fiddle:
https://www.jseditor.io/?key=group-only-one-column-at-a-time-Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/July 25, 2016 at 7:05 am in reply to: selectionmode": 'checkbox' + column widths selectionmode": 'checkbox' + column widths #86004Hi iLoveJQWidgets,
This comes from the fact that the checkbox column is with fixed width(not a good idea to make it dynamic).
I would suggest setting one of the columns to lower percentage(or split that difference to several columns) in order the grid to look fine when the page is not minimized. When it is resized attach to a resize event and get a column(or several) and manage their width in order to look fine.Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/July 25, 2016 at 6:19 am in reply to: How to delete the Hyperlink(www.jqwidgets.com) in bottom right How to delete the Hyperlink(www.jqwidgets.com) in bottom right #85996Hi shinhwap,
Take a look at this topic:
http://www.jqwidgets.com/community/topic/jqwidgets-4-1-2-add-ad-to-the-grid-how-to-get-rid-of-the-ad-in-the-grid/Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/July 15, 2016 at 10:09 am in reply to: Event for Incremental Search Event for Incremental Search #85775Hi, VictorRein
Try increasing the value of the
incrementalSearchDelay
property of the DropDownList.
Here is its demo:
http://jsfiddle.net/jqwidgets/k9Mxj/Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/July 15, 2016 at 7:51 am in reply to: add a input box value to the grid on clicking save button. add a input box value to the grid on clicking save button. #85771Hi KBhima,
Here you can find how to make your input via Angular.
You can even see how the value is accessed though angular.
Then just pass that value as i told you above (object {key: value}).Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/Hey robynho85,
Could you please make a fiddle
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/July 14, 2016 at 1:23 pm in reply to: nested json tree doesn't show children name mapped nested json tree doesn't show children name mapped #85753Hi swarsap,
I would suggest using the direct parentId connection.
Here is a working demo with the logic you need.
https://www.jseditor.io/?key=treeBest Regards,
IvojQWidgets Team
http://www.jqwidgets.com/July 14, 2016 at 8:05 am in reply to: Combobox AutoOpen without AutoClose Combobox AutoOpen without AutoClose #85745Hi nja,
In that case i would suggest you of not using the
autoOpen
property of the ComboBox, but make a standardmouseenter
event in which you call theopen
method of the ComboBox.Here is a demo of what you need:
https://www.jseditor.io/?key=combobox-autoopen-without-autocloseBest Regards,
IvojQWidgets Team
http://www.jqwidgets.com/July 14, 2016 at 7:44 am in reply to: add a input box value to the grid on clicking save button. add a input box value to the grid on clicking save button. #85742Hi KBhima,
When you get the value of the input you must place it in a object where the key is the needed grid datafield and the data the input value.
Here is a little demo demonstating it.
https://www.jseditor.io/?key=add-row-to-grid-via-inputBest Regards,
IvojQWidgets Team
http://www.jqwidgets.com/July 14, 2016 at 7:24 am in reply to: Best way to load in the grid Best way to load in the grid #85741Hi Francisco Ortega,
The first one definitely. There is a lot less interpreting the browser must do to understand it. Also the code is better to read and maintain.
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/Hi robynho85,
You dont have dataAdapters. The source must be passed to a dataAdapter and the dataAdapter to the grid source property.
var dataAdapter = new $.jqx.dataAdapter(source, { downloadComplete: function (data, status, xhr) { }, loadComplete: function (data) { }, loadError: function (xhr, status, error) { } });
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/July 12, 2016 at 6:34 am in reply to: Event 'itemMoved' fired everytime Event 'itemMoved' fired everytime #85664Hi lourivalos83,
Unfortunately there is no way of doing that.
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/ -
AuthorPosts