Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET AJAX > Filter > enter text in filter textbox

Not answered enter text in filter textbox

Feed from this thread
  • Posted on Dec 14, 2011 (permalink)

    I want to show a "Search" keyword when filtering with radgrid.Hows that possible?

    Reply

  • Posted on Dec 14, 2011 (permalink)

    Hello Tina,

    Try the following code.
    C#:
    protected  void RadGrid1_PreRender(object sender, EventArgs e)
    {
      GridFilteringItem fitem=(GridFilteringItem)RadGrid1.MasterTableView.GetItems(GridItemType.FilteringItem)[0];
      TextBox text = fitem["UniqueName"].Controls[0] as TextBox;
       text.Text = "Search";
    }

    -Shinu.

    Reply

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET AJAX > Filter > enter text in filter textbox
Related resources for "enter text in filter textbox"

ASP.NET Filter Features  |  Documentation  |  Demos  |  Telerik TV  |  Self-Paced Trainer  |  Step-by-step Tutorial  ]