or
public class HyperlinksTemplateColumn : ITemplate { protected Label _value; public void InstantiateIn(System.Web.UI.Control container) { _value = new Label(); _value.ID = "_hyperlinkLabel" ; container.Controls.Add(_value); } }GridTemplateColumn customCol = new GridTemplateColumn();radGrid.MasterTableView.Columns.Add(customCol);customCol.ItemTemplate = new HyperlinksTemplateColumn();protected void radGrid_ItemCommand(object sender, GridCommandEventArgs e) { if (e.CommandName == RadGrid.ExportToExcelCommandName) { foreach (GridDataItem item in radGrid.MasterTableView.Items) { item[CmSwAgreementConstants.HYPERLINK_COLUMN_UNIQUE_NAME].Text = "set corresponding data her" } }}<telerik:RadScriptManager runat="server" ID="RadScriptManager1" /><telerik:RadAjaxPanel runat="server" ID="RadAjaxPanel1"> <telerik:RadAutoCompleteBox ID="RadAutoCompleteBox1" runat="server" Width="250" DropDownHeight="150" DropDownWidth="250"> </telerik:RadAutoCompleteBox> </telerik:RadAjaxPanel>protected void Page_Load(object sender, EventArgs e) { RadAutoCompleteBox1.DataSource = new List<string>() { "Europe", "America", "Asia", "Africa", "Australia" }; }...
<rad:GridCheckBoxColumn DataField="ContentFull" DataType="System.Boolean" UniqueName="ContentFull">
...
<rad:GridTemplateColumn UniqueName="Reason">
<ItemTemplate>
</ItemTemplate>
<EditItemTemplate>
<asp:DropDownList ID="ddlAdjustmentReason" runat="server" DataSourceID="EntityDataSource2"
AppendDataBoundItems="True" DataValueField="AdjustmentCodeID" DataTextField="AdjustmentDescription">
<asp:ListItem Value="" Text="" />
</asp:DropDownList>
</EditItemTemplate>
</rad:GridTemplateColumn>
....
function RefreshDataSpecsGrid() { var multiPage = $find("<%= RadMultiPageDataSpecs.ClientID %>"); var pageView = multiPage.findPageViewByID('pagDataSpecsDetails'); var domElement = pageView.get_element(); var grid = domElement.get_element('grdDataSpecs'); var masterTable = grid.get_masterTableView(); masterTable.rebind(); }
In this sample in the official web, now if I want to see the tooltip and when I put the mouse in the southern part which name is Subject knowledge, the tooltip show the northern part which name is Experience.