jQWidgets Forums
Forum Replies Created
-
Author
-
It’s work fine
Thanks
Steve
I use the same code in the demo file bindingtojson.htm and i have the previous problem :
the four labels :
localizationobj.pagergotopagestring = “Gehe zu:”;
localizationobj.pagershowrowsstring = “Zeige Zeile:”;
localizationobj.pagernextbuttonstring = “voriger”;
localizationobj.pagerpreviousbuttonstring = “nächster”;don’t work and
localizationobj.pagerrangestring = ” von “;
localizationobj.sortascendingstring = “Sortiere aufsteigend”;
localizationobj.sortdescendingstring = “Sortiere absteigend”;
localizationobj.sortremovestring = “Entferne Sortierung”;work.
Maybe it’s append only when source type is json ???
Steve
Thanks,
but the fourlabels :
localizationobj.pagergotopagestring = “Gehe zu:”;
localizationobj.pagershowrowsstring = “Zeige Zeile:”;
localizationobj.pagernextbuttonstring = “voriger”;
localizationobj.pagerpreviousbuttonstring = “nächster”;don’t work and
localizationobj.pagerrangestring = ” von “;
localizationobj.sortascendingstring = “Sortiere aufsteigend”;
localizationobj.sortdescendingstring = “Sortiere absteigend”;
localizationobj.sortremovestring = “Entferne Sortierung”;work
Steve
I’m sorry but your solution don’t run.
I’have no error but nothing appends all text stay in english.
Steve
The same problem append with the demo file : rowdetails.htm
Steve
Hello,
I have just added the code :
var localizationobj = {};
localizationobj.pagergotopagestring = “Gehe zu:”;
localizationobj.pagershowrowsstring = “Zeige Zeile:”;
localizationobj.pagerrangestring = ” von “;
localizationobj.pagernextbuttonstring = “voriger”;
localizationobj.pagerpreviousbuttonstring = “nächster”;
localizationobj.sortascendingstring = “Sortiere aufsteigend”;
localizationobj.sortdescendingstring = “Sortiere absteigend”;
localizationobj.sortremovestring = “Entferne Sortierung”;
// apply localization.
$(“#jqxgrid”).jqxGrid(‘localizestrings’, localizationobj);in the function : $(“#jqxgrid”).bind(“bindingcomplete”, function() {
of the demo : nestedgrids.htmand i have :
the javascript error : (line: 7) Impossible the value of the property « visiblerecords » : object null or undefined
And all the lines of my grid are empty.
When i sort a column all the lines of my grid are complete.
Regards,
Steve
When i use this code with the 2.0 version :
$(“#jqxgrid”).bind(“bindingcomplete”, function (event) {
var localizationobj = {};
localizationobj.pagergotopagestring = “Gehe zu:”;
localizationobj.pagershowrowsstring = “Zeige Zeile:”;
localizationobj.pagerrangestring = ” von “;
localizationobj.pagernextbuttonstring = “voriger”;
localizationobj.pagerpreviousbuttonstring = “nächster”;
localizationobj.sortascendingstring = “Sortiere aufsteigend”;
localizationobj.sortdescendingstring = “Sortiere absteigend”;
localizationobj.sortremovestring = “Entferne Sortierung”;
// apply localization.
$(“#jqxgrid”).jqxGrid(‘localizestrings’, localizationobj);
});line: 7
I have the javascript error : Impossible the value of the property « visiblerecords » : object null or undefinedAnd all the lines of my grid are empty.
Why ??
Steve
Hello,
I download the new version of jqwidget 2.0 but i don’t see anythong about time filtering. Column type can be “time” and it is possible to filter time column ?
Thanks,
Steve
Thanks
-
AuthorPosts