Hi All,
I am using jdev11.1.1.7
I have one UI page with two tabs one is for table data and another is form data in second tab having two actions save and insert,
when I click on insert and without entering any data and go back to first tab of table data in table empty records are coming..
I need insert without saving no need to coming empty records in table when shift the first tab automatically refresh table with out getting any
empty records ..
I follow this programmatic approach for inserting
public void performCreateInsert(BindingContainer bindings) {
// Add event code here...
System.out.println("In Add method");
// this.performRefresh();
OperationBinding operationBinding =
(OperationBinding)bindings.getOperationBinding("CreateInsert");
Object result = operationBinding.execute();
// do not forget to handle the errors here.
}
can any body help me out this..
Thank You.