Hi,
im trying to see localized titles as mentioned at documentation. But i couldnt find any way to implement that.
Is there any working code or any explanation?
below link is not enough for newbies!
<http://www.smartclient.com/smartgwtee-latest/javadoc/com/smartgwt/client/docs/DataSourceLocalization.html>
thanks..
1. smartclient 8.3
2. RPCRequest props = new RPCRequest();
Map<String, String> params = new HashMap<String, String>();
String mylocale = com.google.gwt.user.client.Window.Location.getParameter("locale"); // tr
params.put("locale", mylocale);
props.setParams(params);
RPCManager.loadScreen(node.getScreenName(), new LoadScreenCallback() {
@Override
public void execute() {
createTab(node);
}
}, node.getGlobals(), props);
im trying to see localized titles as mentioned at documentation. But i couldnt find any way to implement that.
Is there any working code or any explanation?
below link is not enough for newbies!
<http://www.smartclient.com/smartgwtee-latest/javadoc/com/smartgwt/client/docs/DataSourceLocalization.html>
thanks..
1. smartclient 8.3
2. RPCRequest props = new RPCRequest();
Map<String, String> params = new HashMap<String, String>();
String mylocale = com.google.gwt.user.client.Window.Location.getParameter("locale"); // tr
params.put("locale", mylocale);
props.setParams(params);
RPCManager.loadScreen(node.getScreenName(), new LoadScreenCallback() {
@Override
public void execute() {
createTab(node);
}
}, node.getGlobals(), props);
Comment