hello All
i have updated my application with new version of telerik controls. in my Application i have 1 radgrid,but my problem is that
in radgrid there is multiple columns somes are showing and some are visible false,in my grid there is one column i.e. Display name in that for each row i am displaying tooltip i.e my one of the grid column but it is visible false.
i am using the following code on Radgrid_ItemDataBound
but i am getting value of
plz tell the solution how to display tooltip (value of another radgrid boundcolumn)for radgrid bound column.
thank you...
i have updated my application with new version of telerik controls. in my Application i have 1 radgrid,but my problem is that
in radgrid there is multiple columns somes are showing and some are visible false,in my grid there is one column i.e. Display name in that for each row i am displaying tooltip i.e my one of the grid column but it is visible false.
i am using the following code on Radgrid_ItemDataBound
//Set tool tip if (e.Item is GridDataItem) { GridDataItem gridItem = e.Item as GridDataItem; foreach (GridColumn column in RadGrid_PurchaseOrderDetail.MasterTableView.RenderColumns) { if (column is GridBoundColumn) { gridItem["PartItems"].ToolTip = gridItem["SKUNumber"].Text; gridItem["Price"].ToolTip = gridItem["StandardCost"].Text; } } }but i am getting value of
gridItem["SKUNumber"].Text this is ' 'plz tell the solution how to display tooltip (value of another radgrid boundcolumn)for radgrid bound column.
thank you...