cancel
Showing results for 
Search instead for 
Did you mean: 

TableView Question

Former Member
0 Kudos
57

I have a form with few fields and a table view. I want like an inline editing function, where the user would enter the fields, and click on a button. These data should be added to the tableview on the top, clear the fields for additional data entry. I created the application, and When I run the application, only the last entry shows up in the tableview. This is a BSP with simple page logic (NO MVC). The internal table is flagged auto in the page attribute. When I look at the internal table in onInputProcessing, I dont see any data from the internal table.

Any thoughts?

Albert

View Entire Topic
meikandan_krishnan2
Participant
0 Kudos

Hi ,

I hope the internal tables values are getting refreshed after server event . This is common in a stateless application.

For this you should ensure that your data entry to the internal table should be in a general area where it can be populated on any server events.

For adding entries , place a button and in that particular event and add this code

"APPEND INITIAL LINE TO THE TABLE"

After adding the values , modify the internal table with the values.

Regards,

Meikandan.