question confirm sc window smartgwt - ventana de confirmacion en smartgwt
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
}
}
});
.
question confirm sc window smartgwt
ventana de confirmacion en smartgwt
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
}
}
});
.
question confirm sc window smartgwt
ventana de confirmacion en smartgwt
Comments
Post a Comment