Hi, friends i am new to Telerik...Need Help..
I am using Below code to populate data into radgrid...
can i use rad filter without datasource id to filter grid..and i want the columns of sql query into rad filter through datset ds Only .Any code..?.
protected void Page_Load(object sender, EventArgs e) { SqlConnection con = new SqlConnection(conStr); con.Open(); SqlDataAdapter da = new SqlDataAdapter("SELECT NAME,STATUS_ID,DATE, FROM TBL_TABLE", con); DataSet ds = new DataSet(); da.Fill(ds); RadGrid1.DataSource = ds; RadGrid1.DataBind(); con.Close(); }