Question Need help on populating the data from Database

Hi,
Good Day!

Please find the attached code (grid_2.html) and help me how can I populate the 2 temp-table records(tf_Customer) to that grid. Now grid is appearing empty.And help me how can I add a record in the grid (How can add/edit the cells of the row) using the existing add button trigger.

Regards
Philip
 

Attachments

  • grid_2.txt
    3.3 KB · Views: 7

lee.bourne

Member
Hi Philip,

The main reason your grid is blank is that you've put your speedscript after the </HTML> tag. Between </HEAD> and </HTML> you should used <BODY></BODY> tags and put the speedscript within that. Also, you shouldn't use the line {&OUT} tf_Customer.customer_number SKIP. as that will appear between the </TR><TR>. All output that you want to show up needs to be between <TD></TD> tags.

Hope that helps,

Lee
 
Top