jQWidgets Forums
Forum Replies Created
Viewing 4 posts - 1 through 4 (of 4 total)
-
Author
-
January 5, 2018 at 8:54 pm in reply to: jqwidgets grid grouping with aggregate and editable jqwidgets grid grouping with aggregate and editable #98168December 22, 2017 at 9:36 am in reply to: jqwidgets grid grouping with aggregate and editable jqwidgets grid grouping with aggregate and editable #98037
Excuse me for my language ….
Please check fiedle
I change Quantity from 5 to 10 But Sum does not change from 37…
April 20, 2015 at 7:42 am in reply to: jqxdropdownlist load from other jqxdropdownlist jqxdropdownlist load from other jqxdropdownlist #70044with this code can send 1 request to server and get data and use this data for other element
var source = { datatype: "json", datafields: [{ name: 'organizationName' }, { name: 'id' }], id: 'id', url: "getOrganizationName", async: true }; var dataAdapter = new $.jqx.dataAdapter(source,{ loadComplete: function() { //address var source2= { datatype: "array", datafields: [{ name: 'organizationName' }, { name: 'id' }], id: 'id', localdata: dataAdapter.records }; var adapter = new $.jqx.dataAdapter(source2); $("#slc_organizationName_address").jqxDropDownList({ source: adapter , displayMember: "organizationName", valueMember: "id" }); } } ); //people request $("#slc_organizationName_people").jqxDropDownList({ source: dataAdapter, displayMember: "organizationName", valueMember: "id" });
April 11, 2015 at 8:51 am in reply to: set value for jqxDropDownlist when ajax success set value for jqxDropDownlist when ajax success #69784This event is triggered when the data binding operation is completed. Code example
Bind to the bindingComplete event by type: jqxDropDownList.
$(“#jqxDropDownList”).on(‘bindingComplete’, function (event) { });
Try it: Bind to the bindingComplete event by type:jqxDropDownList
$(“#slc_onvane_organization_sabt”).on(‘bindingComplete’, function (event) {
$(“#slc_onvane_organization_sabt”).jqxDropDownList(‘val’,’10’);
}); -
AuthorPosts
Viewing 4 posts - 1 through 4 (of 4 total)