Rank: Advanced Member Groups: Member
Joined: 11/12/2008 Posts: 42
|
I need to execute a JS function accordingly to the value of a certain column...
the rows are bound with a sql server.
tried the databinding event but, by the time it runs, the data is not there yet.
how could I do it?? only by JS reading line by line??? if so, what if the paging is enabled??
i can bind up to 7000 rows at once.
tkss.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
You will need to do it after you call DataBind. For example:
Grid1.DataSource = Your_DataSource; Grid1.DataBind(); ....now you can read the rows here....
Thanks!
|