jQWidgets Forums
Forum Replies Created
-
Author
-
April 30, 2015 at 10:48 am in reply to: auto-complete comboobx with remote search to load record by id auto-complete comboobx with remote search to load record by id #70498
Hi Adrian,
We may be able to help you resolve your issue, if you provide us with a sample code.
Best Regards,
NadezhdajQWidgets team
http://www.jqwidgets.com/Hi tak,
I would suggest you to use ‘beforeLoadComplete’ method of jqxDataAdapter. It is called before the data is fully loaded so you can check for unique values in body of this method. If the function returns an array, the dataAdapter’s records field will be set to it.
Best Regards,
NadezhdajQWidgets team
http://www.jqwidgets.com/April 29, 2015 at 2:05 pm in reply to: auto-complete comboobx with remote search to load record by id auto-complete comboobx with remote search to load record by id #70447Hello Adrian,
Please, refer to the following forum topic: http://www.jqwidgets.com/community/topic/typed-value-of-combobox-not-submitted/#post-46184. I hope it will be helpful to you.
Best Regards,
NadezhdajQWidgets team
http://www.jqwidgets.com/Hello tak,
Have you tried to set ‘pagesize’ property? I think it may help you achieve your requirement.
Best Regards,
NadezhdajQWidgets team
http://www.jqwidgets.com/April 29, 2015 at 12:13 pm in reply to: jqxDropdownlist – inline Editing Grid jqxDropdownlist – inline Editing Grid #70440Hi user3i,
You may take a look at the demo Keys/Values Column. It shows how to get the cell’s label and value.
Best Regards,
NadezhdajQWidgets team
http://www.jqwidgets.com/April 29, 2015 at 9:02 am in reply to: jqxDropdownlist – inline Editing Grid jqxDropdownlist – inline Editing Grid #70424Hi user3i,
Please, find the following example where it is shown data fields mapping with JSON Data. I hope it would be helpful to you.
var data = [ { "state": { "id": "x526", "city": { "name": "Beverly Hills", "id": 90210, "value": "Beverly Hills" } } } ]; var source = { datatype: 'json', localdata: data, datafields: [ { name: 'cityName', map: 'state>city>name' } ] }; var dataAdapter = new $.jqx.dataAdapter(source);
Best Regards,
NadezhdajQWidgets team
http://www.jqwidgets.com/April 29, 2015 at 8:02 am in reply to: columnclick event support for TreeGrid columnclick event support for TreeGrid #70419Hello Srinath,
You may use jQuery ‘click’ event when selecting a column from jqxTreeGrid(for example
$(".jqx-widget-header").click(function () {
).
Our public Roadmap page is where you can get information about what is planned.Best Regards,
NadezhdajQWidgets team
http://www.jqwidgets.com/April 29, 2015 at 7:27 am in reply to: jqxDropdownlist – inline Editing Grid jqxDropdownlist – inline Editing Grid #70415Hi user3i,
Yes, you can use mapping with JSON Data. For more information you may refer to the jqxDataAdapter’s “Getting Started” help topic.
Best Regards,
NadezhdajQWidgets team
http://www.jqwidgets.com/Hello Chris,
The above example works on our side. Please, make sure you are using the latest version of jQWidgets(3.8.0).
Best Regards,
NadezhdajQWidgets team
http://www.jqwidgets.com/April 28, 2015 at 2:47 pm in reply to: jqxDropdownlist – inline Editing Grid jqxDropdownlist – inline Editing Grid #70383Hi user3i,
Please, find the following part of code which shows how to use ‘valueMember’ and ‘displayMember’ in editor.jqxDropDownList. I hope it would be helpful to you.
{ text: 'Ship Country', datafield: 'ShipCountry', width: 150, columntype: 'dropdownlist', createeditor: function (row, column, editor) { // assign a new data source to the dropdownlist. var list = [ { text: "Germany", value: "G" }, { text: "Brazil", value: "B" }, { text: "France", value: "F" } ]; editor.jqxDropDownList({ autoDropDownHeight: true, source: list, displayMember: 'text', valueMember: 'value' }); editor.on('change', function (event) { alert("label: " + event.args.item.label + ", value: " + event.args.item.value); }); },
Best Regards,
NadezhdajQWidgets team
http://www.jqwidgets.com/April 28, 2015 at 12:54 pm in reply to: Checkbox, autorowheight, and editmode: 'click' undefined property Exception Checkbox, autorowheight, and editmode: 'click' undefined property Exception #70377Hi kman,
We tested your example with jQWidgets version 3.8.0 and it works as expected. Please, make sure you are using version 3.8.0, too.
Best Regards,
NadezhdajQWidgets team
http://www.jqwidgets.com/Hi EminYasarturk,
Have you checked the demo Fluid Size? I think it may help you achieve your requirement.
Best Regards,
NadezhdajQWidgets team
http://www.jqwidgets.com/April 28, 2015 at 7:45 am in reply to: Checkbox, autorowheight, and editmode: 'click' undefined property Exception Checkbox, autorowheight, and editmode: 'click' undefined property Exception #70350Hello kman,
We were able to reproduce the issue. We will investigate why it occurs. Thank you for your feedback.
Best Regards,
NadezhdajQWidgets team
http://www.jqwidgets.com/Hello EminYasarturk,
I would suggest you to initialize jqxDocking in ‘Other’ tab(jqxTabs). If this suggestion does not help you, please, provide us with more information about the second part of tabs(tabs number 6-10). What will be the content of latest tabs?
Best Regards,
NadezhdajQWidgets team
http://www.jqwidgets.com/Hi Reksy,
If I understand you correctly, you need to add extra HTTP variable. Please, look at the following help topic: http://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxgrid/jquery-grid-extra-http-variables.htm.
Best Regards,
NadezhdajQWidgets team
http://www.jqwidgets.com/ -
AuthorPosts