-
30 Jun 2011 12:30 AM #1
Grid LoadMask Locale message not working
Grid LoadMask Locale message not working
Hello
I've added locale polish file and grids messages "sort ascending, sort descending, column" I have in polish languages.
I looked into ext-lang-pl.js file and I saw a LoadMask message in polish language.
But when grid is loading/reloading/paging it only shows english "Loading...".
I tried to add new loadmask object, change grid.loadmask.msg after grid initializing, option loadMask: { msg: 'new polish text' } and it dont work.
Any suggestions ?!?
-
27 Feb 2012 7:50 AM #2
Localize loading text
Localize loading text
This localization option is forgotten in the ExtJs library. Even in version 4.0.7, which I'm using, the problem is still there. Here's the solution:
Add this code after the ExtJs localization file and before your application files.Code:Ext.onReady(function () { if (Ext.view.AbstractView) { Ext.view.AbstractView.prototype.loadingText = 'Your localized loading text...'; } });
-
11 Oct 2012 10:12 AM #3


Reply With Quote