List of usage examples for com.google.gwt.i18n.client BidiPolicy isBidiEnabled
public static boolean isBidiEnabled()
From source file:com.sencha.gxt.widget.core.client.form.ValueBaseField.java
License:sencha.com license
protected ValueBaseField(ValueBaseInputCell<T> cell) { super(cell);/*from ww w . j a va2 s .com*/ autoDirHandler = AutoDirectionHandler.addTo(this, BidiPolicy.isBidiEnabled()); getCell().addParseErrorHandler(new ParseErrorHandler() { @Override public void onParseError(ParseErrorEvent event) { onCellParseError(event); } }); setWidth(150); }