jQWidgets Forums
Forum Replies Created
-
Author
-
June 23, 2016 at 7:15 am in reply to: Custom filter conditions for numeric filter Custom filter conditions for numeric filter #85379
Hi SergioV85,
in order for your example to work properly, first you need to bind to the bindingcomplete event before the Grid’s initialization. Here is the example you provided with the needed corrections to make it work as expected:
http://jsfiddle.net/Xr4LS/125/
You can read more about how to add custom filtering to a grid, here:
http://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxgrid/jquery-grid-filtering.htmBest Regards,
ChristopherjQWidgets Team
http://www.jqwidgets.comHi joko.pitoyo,
you can try using an Observable array instead. It binds the newly added data directly to the grid after you’ve changed it. Here is an example of it’s implementation:
http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/bindingtoobservablearray.htm?light.Best Regards,
ChristopherjQWidgets Team
http://www.jqwidgets.comHi famp,
the problem is that you are not using the val() method correctly. You are trying to set the value of the property instead of getting it. Replace the “$(“#poliza”).val(poliza)” with “$(“#poliza”).val()”. The same goes to any other attributes that you wish to assign a value to from the text area. Also you can set a “name” attribute on the text area element and place it in a form so you can assign your parameters on submit directly.Best Regards,
ChristopherjQWidgets Team
http://www.jqwidgets.comJune 21, 2016 at 10:56 am in reply to: Filter Calendar in jqxTreeGrid Filter Calendar in jqxTreeGrid #85319Hi cranshtat,
it is possible to filter by date in the TreeGrid, but there is no DateTimeInput filter editor in it. It uses Inputs for data filtering.Best Regards,
ChristopherjQWidgets Team
http://www.jqwidgets.comHi mohammad,
Just add a ‘height’ property on the TreeGrid widget and the scroll bar will pop up when you start expanding the rows. Here is an example:
http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxtreegrid/javascript-tree-grid-column-formatting.htm?lightBest Regards,
ChristopherjQWidgets Team
http://www.jqwidgets.comHi joko.pitoyo,
If you want a min/max button on the window itself, like the “collapse” button in this demo:
http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxwindow/defaultfunctionality.htm?light , you can’t have it, because it’s not possible to add one there. However you can add a simple “resize” button like in the example I’ve provided and enable/disable the resizing abbility of the window. If enabled you can change the size of the window anyway you want to by just pulling from any of the corners of the widget.Best Regards,
ChristopherjQWidgets Team
http://www.jqwidgets.comHi sidkdbl07,
JQWidgets TagCloud widget doesn’t support this functionality. You can add your tags from an external data source using the dataAdapter. However, the ComboBox has a very similar feature like the one you described. Here is an example:
http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxcombobox/multiselect.htm?lightBest Regards,
HristoforjQWidgets Team
http://www.jqwidgets.com -
AuthorPosts