Click here to Skip to main content
15,886,077 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:

friends I want to sort or filter the gridview on textbox text changing value using Ajax in Asp.net
Posted

1 solution

for sorting, sort source data table. which is more helpful

Eg..

protected void gridView_Sorting(object sender, GridViewSortEventArgs e)
{
DataTable dataTable = gridView.DataSource as DataTable;

if (dataTable != null)
{
DataView dataView = new DataView(dataTable);
dataView.Sort = e.SortExpression + " " + ConvertSortDirectionToSql(e.SortDirection);

gridView.DataSource = dataView;
gridView.DataBind();
}
}
 
Share this answer
 
Comments
seliya hilal 22-Mar-12 6:08am    
===============
The code below works when columns are created explicitly as declerative >><asp:BoundField DataField="ID" HeaderText="ID" SortExpression="" />
===============

AllowSorting

="True"
OnSorting

="GvEvent_Sorting"

<

asp:TemplateField ItemStyle-HorizontalAlign="Right" HeaderText="MyDate" SortExpression

="MyDate">

#region GV_sort event and Sort Direction

protected void GvEvent_Sorting(object sender, GridViewSortEventArgs e)
{

//Retrieve the table from the session object.
DataTable dt = Session["MyDS"] as DataTable;
if (dt != null)
{
//Sort the data.
dt.DefaultView.Sort = e.SortExpression + " " + GetSortDirection(e.SortExpression);
GridView Gv = (GridView)sender;
Gv.DataSource = Session["MyDS"];
Gv.DataBind();
}
}

private string GetSortDirection(string column)
{
// By default, set the sort direction to ascending.
string sortDirection = "ASC";
// Retrieve the last column that was sorted.
string sortExpression = ViewState["SortExpression"] as string;
if (sortExpression != null)
{
// Check if the same column is being sorted.
// Otherwise, the default value can be returned.
if (sortExpression == column)
{
string lastDirection = ViewState["SortDirection"] as string;
if ((lastDirection != null) && (lastDirection == "ASC"))
{
sortDirection = "DESC";
}
}
}
// Save new values in ViewState.
ViewState["SortDirection"] = sortDirection;
ViewState["SortExpression"] = column;
return sortDirection;
}
#endregion
seliya hilal 22-Mar-12 6:15am    
For filtering filter using session which will hold value after postback

You have to write textbox value in session

write code where you using sql expression..

Eg..

String sql="Select * From Table_Name ";

If(!String.IsNullOrEmpty(txtFirstname.text))
{
sql+= txtFirstname.text;
}

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900