I need to apply some changes into extjs 4.x core library to supports right-to-left direction in rendering.i already know its not good to manipulate the ExtJS code directly.
My question is: How to do this via another js file that loaded into page after the ext-all.js ?
its possible to change a predefined sencha class method by calling Ext.apply() ?
It really depends what exactly you need to modify. But I believe you meant the following.
I have a file called
ext-mods.js, which is loaded afterext-all.js:I have changed the default config for all Json Writers, but you can equally override methods (by copying the code from the library and then apply your modifications).