display the result dynamically in a grid at runtime
-
hi all, A problem with grid. I can edit the columns in a grid but i want to dispaly the result at runtime before updating it to the database.(eg. product of two columns should be diaplayed in the next column as soon as the user edits any one of two cols.)Pls Help:confused:
-
hi all, A problem with grid. I can edit the columns in a grid but i want to dispaly the result at runtime before updating it to the database.(eg. product of two columns should be diaplayed in the next column as soon as the user edits any one of two cols.)Pls Help:confused:
-
Create a computed column with the DataView and bind to that column 1 line of code equals many bugs. So don't write any!!
-
Hi Ista, Thanx.Can you please give me the details how to create a computed column. Thanx in advance. lucky
-
In your datatable, create a new column and set the expression property to be your SQL computed column statement. Nick 1 line of code equals many bugs. So don't write any!!
-
Hi nick, I want to dispaly the result as soon as i change the values of other textboxes. Not from dataset and database.I should do that with out any click or update. Plz help Thanks Lucky
Well when you update the values the computed column automatically changes the values. So, lets re-iterate this. When the values from column A or B change then you should rebind "MyGrid.DataBind();". This will update the values. Nick 1 line of code equals many bugs. So don't write any!!