1 (edited by tester1 04/07/2014 12:18:31 pm)

Topic: Display Table View

I have 3 Column  ( id , a, b ,c )

-------------------------------------------------------------------------------------
ID     |     A     |      B       |       C ( where C = Total A + Total B )         
-------------------------------------------------------------------------------------
1      |     4     |      3       |                                   19                             
2      |     6     |      2       |                                                                   
3      |     1     |      3       |                                                                   
--------------------------------------------------------------------------------------

How i can do this in FA ( display_db_pager ) using its default features of pagination .

Both A , B value are text Field , which are entry by user side and its stored in DB , but C value is addition of A+B (TOTAL) which get updated on each a.b update.

Pls let me know