how to create properties file with ExtJS, like .properties in java?
I mean any alternative way? example?
for example
I need to keep following text in some JSP file
and from JS file I need to access likeCode:_properties = {
"myapp.hello": "Hello World",
"myapp.name": "My Application"
}
anybody?Code:Ext.MessageBox.alert(_properties["myapp.name"], _properties["myapp.hello"]);
