Hi,
Is it posible to display diffrent tooltip on whole grid and the diffrent ToolTip on GridButtonColumn. When i try to assign as below, even if i point on the Brid button column, it only displays the grid toolip.
Is it posible to display diffrent tooltip on whole grid and the diffrent ToolTip on GridButtonColumn. When i try to assign as below, even if i point on the Brid button column, it only displays the grid toolip.
<telerik:RadGrid ID="rgTest" runat="server" AllowAutomaticInserts="false" AutoGenerateColumns="False" Skin="Outlook" Height="100%" Width="90%" Culture="en-GB" GridLines="None" CellSpacing="0" ShowHeader="False" OnDeleteCommand="rdTest_Delete" ToolTip="<%$Resources: , Grid_tooltip%>" > <MasterTableView AllowAutomaticInserts="false" CommandItemDisplay="None" CommandItemSettings-ShowRefreshButton="False" DataKeyNames="Id" NoMasterRecordsText="" ViewStateMode="Enabled" GridLines="None" EditMode="InPlace" ShowHeadersWhenNoRecords="False"> <Columns> <telerik:GridButtonColumn UniqueName="DeleteCommandColumn" ButtonType="ImageButton" CommandName="Delete" ImageUrl="~/Graphics/Remove.png" Text="<%$Resources: , Delete_tooltip%>" HeaderStyle-Width="5%"> <HeaderStyle Width="5%"></HeaderStyle> </telerik:GridButtonColumn> </Columns> </MasterTableView> </telerik:RadGrid>