Getting values from Dynamic elements.
- by nCdy
I'm adding some dynamic elements to my WebApp this way :
(Language used is Nemerele (It has a simple C#-like syntax))
unless (GridView1.Rows.Count==0)
{
foreach(index with row = GridView1.Rows[index] in [0..GridView1.Rows.Count-1])
{
row.Cells[0].Controls.Add
({
def TB = TextBox();…