gwt function formatString Get link Facebook X Pinterest Email Other Apps May 23, 2013 How to use formatString function if(record==null || value == null){ if(record!=null && record.isGroupSummary!=null && record.isGroupSummary){ return null; }else{ return "NA"; } } Get link Facebook X Pinterest Email Other Apps Comments
smart gwt allow only numbers in textfield June 20, 2011 smart gwt allow only numbers in textfield Aceptar solo numeros en un textfield en gwt smartclient very simple MASK PROPERTY TextItem phoneNumberField = new TextItem( "phoneNo" , "Phone No." ); phoneNumberField.setMask( "(###) ###-####" ); phoneNumberField.setHint( "<nobr>(###) ###-####</nobr>" ); final TextItem check4 = new TextItem(); check4.setName("4"); check4.setTitle(" Grupo"); check4.setTitleOrientation(TitleOrientation.TOP); check4.setWidth(100); check4.setValue(false); ... Read more
call native - llamar a nativo gwt February 25, 2011 LLAMAR PROPIEDADD INTERNA.txt call native public class MyWindow extends Window { public native String getHeaderIcon() /*-{ var self = [email protected]::getOrCreateJsObj()(); return self.headerIcon.src; }-*/; } llamar a nativo gwt Read more
question confirm sc window smartgwt - ventana de confirmacion en smartgwt February 25, 2011 question.txt SC.confirm("Are you sure to delete your xxx?", new BooleanCallback() { public void execute(Boolean value) { if (value != null && value) { //proceed with delete } else { //Cancel ... Read more
Comments
Post a Comment