am using Infragistics Web Datagrid in my asp.net application. At runtime, some cells in this datagrid may contain values and other may not contain any values. if there is value then clicking on this cell should redirect to a new page based on the value in that cell. if there is no value, then clicking on this cell should do nothing. so i wrote the following code;
private
void grdSiteDetails_Click(object sender, Infragistics.WebUI.UltraWebGrid.ClickEventArgs e){
if( e.Cell.Text != null){
// this will be executed only if the cell contains some value.
// Code for redirecting to new page.
}
}
there is no error in this code. but the problem is though the cell contains or not contains a value, the control enters this event handler and a post back occurs. i want to avoid this postback for cells containing no value. how can i do that i want some way to check whether the cell contains some value using script.
someone pls help me.
thanks in advance.
sajitha

Infragistics web datagrid doubt