bsp; {
WebControl wc;
// Adds a tooltip to Edit
wc = ((WebControl) e.Item.Cells[Columns.Count-2]);
wc.ToolTip = "Edit this row";
// Adds a client-side onclick handler and a tooltip to Delete
wc = ((WebControl) e.Item.Cells[Columns.Count-1]);
String js = "return confirm('Do you really want to delete this row?');";
wc.Attributes["onclick"] = js;
wc.ToolTip = "Delete this row";
}
}
public sealed class DataGridInitRowEventArgs : EventArgs
{
public DataRow Row;
}
}
}
WebControl wc;
// Adds a tooltip to Edit
wc = ((WebControl) e.Item.Cells[Columns.Count-2]);
wc.ToolTip = "Edit this row";
// Adds a client-side onclick handler and a tooltip to Delete
wc = ((WebControl) e.Item.Cells[Columns.Count-1]);
String js = "return confirm('Do you really want to delete this row?');";
wc.Attributes["onclick"] = js;
wc.ToolTip = "Delete this row";
}
}
public sealed class DataGridInitRowEventArgs : EventArgs
{
public DataRow Row;
}
}
}
| 对此文章发表了评论 |

