Reputation: 223
I am new to ADF and Jdeveloper, so this might be a trivial question, even though i searched and could not find an appropriate solution.
I want to create an input form that starts as empty then on button click the user can add a row in the database.
I know how to do it with the form starting as an edit form, but i want the form to start as empty.
I am not using taskflows, just a simple JSF page to create a record.
Thanks
Upvotes: 1
Views: 4183
Reputation: 3721
If you just want the page to come up without actually fetching data, you can delay the execution of the data fetching like this: https://blogs.oracle.com/shay/entry/delay_method_execution_when_us If you want it to come up with an empty row already in place, you can add a createInsert method call before the navigation to the page in your controller layer.
Upvotes: 1