tags:

views:

33

answers:

1

Hi,

I am using mvp pattern in small project. I have problems with view which contains html table with data(always 9 rows). How can i easily get data from html table and send it to the presenter? On the model side i want to keep data from html table as a generic List<some_type>

regards

A: 

Hey,

Read the table in the view page, and push it to the presenter through an event. Pass the data through an event argument.

HTH.

Brian