jQWidgets Forums
Forum Replies Created
-
Author
-
June 17, 2013 at 10:04 am in reply to: How to localize "Loading…" text ? How to localize "Loading…" text ? #23247
H,
Now it can be done by changing loadtext attribute at file jqxgrid.js
June 16, 2013 at 10:09 pm in reply to: showCalendarButton chrome browser error showCalendarButton chrome browser error #23219Hi Peter,
I know is displayed defaultly but unfortunately, it is not displayed at chrome at my project
Hi
I found the solution. I am using virtual mode but filter options are denone by me manually as follow;
$(“#reportgrid”).on(“sort”, function (event) {
……
}Hi,
Is not there any solution for this.
The thing I want is very basicI want to see total at my grig pagind but at the same time I want grid filter to work
I wrote wrong,
Here my json data is:
{“success”:true,”total”:5,”branch”:[{“Branch”:”BATI MARMARA”,”BranchID”:”212″},{“Branch”:”DOĞU MARMARA”,”BranchID”:”216″},{“Branch”:”ADANA”,”BranchID”:”322″},{“Branch”:”ANKARA”,”BranchID”:”312″},{“Branch”:”İZMİR”,”BranchID”:”232″}]}
I write below code:
alert(dataSourceFilterBranch.branch[0].Branch);
It gives below error:
TypeError: dataSourceFilterBranch.branch is undefined
Hi,
my json data is below:
{“success”:true,”total”:5,”act”:[{“Branch”:”BATI MARMARA”,”BranchID”:”212″},{“Branch”:”DOĞU MARMARA”,”BranchID”:”216″},{“Branch”:”ADANA”,”BranchID”:”322″},{“Branch”:”ANKARA”,”BranchID”:”312″},{“Branch”:”İZMİR”,”BranchID”:”232″}]}
I am writing below code
alert(dataSourceFilterBranch.prd_rec[0].Branch);
It gives below error :
TypeError: dataSourceFilterBranch.prd_rec is undefined
Hi Peter,
Is there any solution for this?
Hi Peter,
Thanks for link.
I applied it but there is a problem.
To be able to do it I am adding below code to my grid but this time filterable options, sort by ascending, descending dont work!virtualmode: true,
rendergridrows: function()
{
return dataAdapterGrid.records;
},*/Hi Peter,
I used both of them below but it did not work
localizationobj.loadtext = “Yüklüyor”;
localizationobj.loadtextstring = “Yüklüyor”;Hi,
I found reason. I am using json as source datatype but array is used demo page!
Hi,
When I used method and bindingComplete as follow, it workrf
$(“#pcategory”).on(‘bindingComplete’, function (event) {
$(“#pcategory”).jqxComboBox(‘checkAll’);
});But how? At demo page, it works although it is not used at bindingComplete!!
Hi,
I found solution with binding it with json using displayMember, displayValue properties.
Hi,
I read documents but I could find solution.
Here my code isvar fruitList = {
5 : ‘Apple’,
7 : ‘Orange’
};$(“#fruitcombo”).jqxComboBox({ source: fruitList , width: ‘200px’, height: ’25px’,});
$(‘#fruitcombo’).bind(‘select’, function (event) {
var item = $(‘#fruitcombo’).jqxComboBox(‘getSelectedItem’);
alert(item.label);
alert(item.value);
});When I select Apple from combobox, I see Apple at alerts for both value and label.
But I want to see 5 at alert popup as value.
How can I do it?Hi Peter,
Thanks! It worked
Hi Peter,
The reason is 2nd one.
But there is no chance define processdata after grid definition?
So this means that I can’t pass value of items to url defined at rendertoolbar callback of jqxgrid? -
AuthorPosts