Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
RadGrid を使用しています。コメントと呼ばれる列があり、現在は Y/N として持っています。コメントのヘッダー行にカーソルを合わせると、ツール ヒントを追加したいと思います。これを行う簡単な方法はありますか?
次のコード スニペットを試してください。
protected void RadGrid2_ItemDataBound(object sender, GridItemEventArgs e) { if (e.Item is GridHeaderItem) { GridHeaderItem header = (GridHeaderItem)e.Item; header["ColumnUniqueName"].ToolTip = "Custom Text"; } }