Hi
I am wondering is there anyway I can use the javascript insdie the column tag?
I tried to use the following ways, but none seems to be working:
<fmt:message key=“myplans.col.budget”/>
The reason I have to use the javascript here is my app initialize all formats according to user Locale in the javascript,
any help would be appreciated.
You can’t do it directly in XML, but can be done as
in XML
… any other init
mask.currency0
in js code
mygrid.init_format=function(a,b){
mygrid.setNumberFormat(a,b);
}