List of usage examples for com.google.gwt.i18n.client AutoDirectionHandler addTo
public static AutoDirectionHandler addTo(Target target, DirectionEstimator directionEstimator)
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 av a2 s . c o m autoDirHandler = AutoDirectionHandler.addTo(this, BidiPolicy.isBidiEnabled()); getCell().addParseErrorHandler(new ParseErrorHandler() { @Override public void onParseError(ParseErrorEvent event) { onCellParseError(event); } }); setWidth(150); }