This is a migrated thread and some comments may be shown as answers.

[Solved] Google like custom filtering to only one column:

3 Answers 99 Views
Grid
This is a migrated thread and some comments may be shown as answers.
nagarjun
Top achievements
Rank 1
nagarjun asked on 06 Apr 2009, 10:05 AM
Hi all,

        I need to have a google like filtering to only one column in my project. I have gone through the things provided in page http://www.telerik.com/support/kb/aspnet-ajax/grid/google-suggest-style-filtering-in-radgrid.aspx. Here the example shows RadGrid binding at server side(code behind). As i am binding RadGrid using GridBoundColumns client side binding. Can you please suggest me how to use this custom Google like filtering at client side to only one column which will be helpful to me.


Thanks,
Nagarjun S.

3 Answers, 1 is accepted

Sort by
0
nagarjun
Top achievements
Rank 1
answered on 07 Apr 2009, 03:57 AM
Hi,

    Is there any chance of doing above task. Is it possible or not?
0
Sebastian
Telerik team
answered on 07 Apr 2009, 08:06 AM
Hello nagarjun,

Unfortunately this is not possible because the RadComboBox instance can not be created purely client-side since it is ASP.NET server control. I hope that using the server-side approach is applicable workaround for you.

Regards,
Sebastian
the Telerik team

Check out Telerik Trainer , the state of the art learning tool for Telerik products.
0
nagarjun
Top achievements
Rank 1
answered on 08 Apr 2009, 07:02 AM
Hi,

    Thanks for reply.
     Here the thing is i am not using dataset to get the data from database. Instead i use LINQ to get data from database as :
      
      list<Asset> asset=new list<Asset>(); 
      var Query=from a in context.assets
                        select a;
      asset=Query.ToList();

      RadGrid1.DataSource = asset ;

      As you said that putting client side GoogleLikeFiltering is not possible so, now i need to bind one one column from above "asset" to RadGrid1 at serverside.
      Can you give an idea how to take column by column from "asset" and bind to Grid1 at serverside.


Thanks,
Nagarjun S. 
Tags
Grid
Asked by
nagarjun
Top achievements
Rank 1
Answers by
nagarjun
Top achievements
Rank 1
Sebastian
Telerik team
Share this question
or