jQWidgets Forums
Forum Replies Created
-
Author
-
April 18, 2013 at 7:55 am in reply to: Grid showfilterrow and advanced filter Grid showfilterrow and advanced filter #19510
Hi martonx,
We are sorry for the inconvenience but it is not possible to combine the two types of filtering.
Best Wishes,
MariyajQWidgets Team
http://www.jqwidgets.comApril 17, 2013 at 12:00 pm in reply to: Sorting Dates with occasional string Sorting Dates with occasional string #19438Hi Benji6996,
Please take a look at the following example at: http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/index.htm#demos/jqxgrid/customsorting.htm . The sample shows how to implement custom sort comparer function.
If you have any further questions do not hesitate to contact us.
Best Wishes,
MariyajQWidgets Team
http://www.jqwidgets.comHi neong,
Please take a look at the following example at: http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/index.htm#demos/jqxgrid/customrowsselection.htm
If you have any further questions do not hesitate to contact us.
Best Wishes,
MariyajQWidgets Team
http://www.jqwidgets.comHi btpy,
We are unable to reproduce such behavior with jQWidgets 2.8.1. I suppose that the reported behavior is already resolved.
Best Wishes,
MariyajQWidgets Team
http://www.jqwidgets.comHi shalini,
We are sorry for the inconvenience but you cannot add a connector lines to the jqxTree structure.
Best Wishes,
MariyajQWidgets Team
http://www.jqwidgets.comApril 16, 2013 at 9:58 am in reply to: jqWidgets 2.8 Empty rows not shown jqWidgets 2.8 Empty rows not shown #19352Hi DavidSimmons,
The change was made in 8.0 version.
Best Wishes,
MariyajQWidgets Team
http://www.jqwidgets.comApril 15, 2013 at 2:19 pm in reply to: single selection does not allow to select same row again single selection does not allow to select same row again #19267Hi Robin Kluth,
In order to trigger a click event you should use the rowclick event. You cannot clear selection when you perform selection.
Best Wishes,
MariyajQWidgets Team
http://www.jqwidgets.comApril 15, 2013 at 2:18 pm in reply to: jqWidgets 2.8 Empty rows not shown jqWidgets 2.8 Empty rows not shown #19266Hi DavidSimmons,
In order to show the empty rows please do the following things:
1. open the jqx.base.css
2. find .jqx-grid-cleared-cell CSS class
3. and remove visibility: hiddenBest Wishes,
MariyajQWidgets Team
http://www.jqwidgets.comApril 15, 2013 at 1:59 pm in reply to: allowDrag and allowDrop with knockoutjs binding allowDrag and allowDrop with knockoutjs binding #19265Hi brianwendt,
We support the drag and drop functionality using knockoutjs binding. In order to do it you should add the jqxdragdrop.js. Please take a look a the following example:
<!DOCTYPE html><html lang="en"><head> <link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="../../scripts/jquery-1.9.0.min.js"></script> <script type="text/javascript" src="../../scripts/json2.js"></script> <script type="text/javascript" src="../../scripts/knockout-2.1.0.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="../../scripts/gettheme.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxscrollbar.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxlistbox.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxdata.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxknockout.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxcheckbox.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxpanel.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxtree.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxdragdrop.js"></script> <script type="text/javascript"> $(document).ready(function () { $("#tree").jqxTree({ allowDrag: true ,allowDrop:true}); // Define a "Person" class that tracks its own name and children, and has a method to add a new child var Person = function (name, items) { this.label = name; this.items = ko.observableArray(items); this.enabled = ko.observable(true); this.addItem = function () { if (this.items().length < 4) { this.items.push("New Item"); } else if (this.items().length == 4) { this.items.push("Last Item"); this.enabled(false); } } } // The view model is an abstract description of the state of the UI, but without any knowledge of the UI technology (HTML) var viewModel = { people: [ new Person("Annabelle", ["Arnie", "Anders", "Apple"]), new Person("Bertie", ["Boutros-Boutros", "Brianna", "Barbie", "Bee-bop"]), new Person("Charles", ["Cayenne", "Cleopatra"]) ], disabled: ko.observable(false) }; ko.applyBindings(viewModel); $("#tree").jqxTree('expandAll'); }); </script></head><body style='font-size: 13px; font-family: Verdana;' class='default'> <div> <div style="float: left;"> <ul data-bind="foreach: people"> <li> <div> <span data-bind="text: label"></span><a href='#' data-bind='click: addItem, visible: enabled'> Add Item</a> </div> <ul data-bind="foreach: items"> <li><span data-bind="text: $data"></span></li> </ul> </li> </ul> </div> <div style="float: left; margin-left: 50px;"> <div data-bind="jqxTree: {source: people, disabled: disabled, theme: getDemoTheme()}" id="tree"> </div> <div data-bind="jqxCheckBox: {checked: disabled, theme: getDemoTheme()}" style='margin-top: 5px;' id="checkBox">Disabled</div> </div> </div></body></html>
Best Wishes,
MariyajQWidgets Team
http://www.jqwidgets.comHi naatha ,
We are sorry for the inconvenience but you cannot use the clearfilters method without changing the page.
Best Wishes,
MariyajQWidgets Team
http://www.jqwidgets.comHi btpy,
We were unable to reproduce the problem. Please provide the following information :
1. Which language we should use ?
2. With which jqWidgets version do you use ?Best Wishes,
MariyajQWidgets Team
http://www.jqwidgets.comHi eqbalsajadi ,
Thank you for the valuable feedback! We confirm the reported issue and created a work item about it.
Best Wishes,
MariyajQWidgets Team
http://www.jqwidgets.comApril 11, 2013 at 11:29 am in reply to: Tabs : Disable tab panel contens Tabs : Disable tab panel contens #19057Hi Steven,
Please take a look at the provided example in the jqxTabs demo at: http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxtabs/index.htm#demos/jqxtabs/wizard.htm . In addition, each jqxWidget has a disable property, which can be used in the following way:
$("#jqxDisabledButton").jqxButton({ disabled: true, width: '150'});
Best Wishes,
MariyajQWidgets Team
http://www.jqwidgets.comHi naatha ,
Please take a look at the following example: http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/index.htm#demos/jqxgrid/masterdetails.htm
Best Wishes,
MariyajQWidgets Team
http://www.jqwidgets.comHi himaja,
If you want to dynamically change the data source of the jqxDropDownList editor, you will have to use “initeditor” instead of “createeditor”. “createeditor” is called just once when the editor is created/opened for first time.
Best Wishes,
MariyajQWidgets Team
http://www.jqwidgets.com -
AuthorPosts