0
我試圖用工具提示綁定datagrid行。我應該在哪種情況下編寫代碼?該行創建的事件不會讓我的數據綁定並返回空白。代碼參考如下:如何在datagrid行上綁定工具提示?
protected void gdvActionItemView_RowCreated(object sender, GridViewRowEventArgs e)
{
e.Row.Cells[2].ToolTip = e.Row.Cells[2].Text;
if (e.Row.Cells[2].Text.Length > 100)
{
e.Row.Cells[2].Text.Substring(0, 100);
}
}
請幫忙。