Welcome Guest Search | Active Topics | Sign In | Register

EO.Grid read rows just after binding Options
Christiano
Posted: Friday, January 30, 2009 7:58:10 AM
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.
eo_support
Posted: Friday, January 30, 2009 8:47:47 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,089
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!


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.