Here Mudassar Ahmed Khan has explained with an example, how to implement Client Side AJAX based Paging (Pagination) and Sorting using Entity Framework and jQuery in ASP.Net MVC Razor.
The Paging (Pagination) and Sorting will be implemented in HTML Table using jQuery AJAX and JSON in ASP.Net MVC Razor.
↧
Client Side AJAX based Paging and Sorting in ASP.Net MVC
↧
Paging and Sorting without PostBack (Refresh) in ASP.Net GridView
Here Mudassar Ahmed Khan has explained with an example, how to implement Paging (Pagination) and Sorting in GridView control without Page PostBack (Refresh) in ASP.Net using C# and VB.Net.
The EnableSortingAndPagingCallbacks property does make the Paging (Pagination) and Sorting in GridView AJAX based i.e. without Page PostBack (Refresh) but it has limitation that it does not work with TemplateField column.
Hence the best solution is to make use of ASP.Net AJAX UpdatePanel and place the GridView inside it, which makes the Paging (Pagination) and Sorting in GridView AJAX based i.e. without Page PostBack (Refresh).
↧
↧
Check (Select) All CheckBoxes in WebGrid using Header CheckBox in ASP.Net MVC
Here Mudassar Ahmed Khan has explained with an example, how to check all (select all) CheckBoxes in WebGrid using a CheckBox in Header row in ASP.Net MVC Razor.
The first column of WebGrid will contain the CheckBoxes and the check all (select all) CheckBoxes functionality will be implemented using jQuery in ASP.Net MVC Razor.
When the Header row CheckBox is checked (selected), all the row CheckBoxes will be checked (selected) and when the Header row CheckBox is unchecked (deselected), all the row CheckBoxes will be unchecked (deselected).
↧
Retain WebGrid CheckBox selection on PostBack (Form Submit) in ASP.Net MVC
Here Mudassar Ahmed Khan has explained with an example, how to retain selection of CheckBox inside WebGrid on PostBack (Form Submit) in ASP.Net MVC Razor.
↧
Add CheckBox to WebGrid Header in ASP.Net MVC
Here Mudassar Ahmed Khan has explained with an example, how add CheckBox to WebGrid Header Row in ASP.Net MVC Razor.
↧
↧
Implement Client Side search in GridView using jQuery in ASP.Net
Here Mudassar Ahmed Khan has explained with an example, how to search GridView records (data) on Client Side using jQuery in ASP.Net.
The Client Side search will be a Column-Wise search i.e. each column of GridView will have a TextBox and the rows will be searched and filtered as the user types in the TextBoxes.
The Client Side Column-Wise search will be the jQuery QuickSearch Plugin.
↧
Client Side Column-Wise Search in WebGrid using jQuery in ASP.Net MVC
Here Mudassar Ahmed Khan has explained with an example, how to implement Column-Wise search on WebGrid records on Client Side using jQuery in ASP.Net.
The Client Side search will be a Column-Wise search i.e. each column of WebGrid will have a TextBox and the rows will be searched and filtered as the user types in the TextBoxes.
The Client Side Column-Wise search will be the jQuery QuickSearch Plugin.
↧
Get Selected (Checked) CheckBoxes of TreeView on Button click in ASP.Net
Here Mudassar Ahmed Khan has explained with an example, how to get selected (checked) CheckBoxes of TreeView on Button click in ASP.Net using C# and VB.Net.
When the Button is clicked, all the selected (checked) CheckBoxes are fetched and displayed using JavaScript Alert Message Box.
↧
Implement TreeView with CheckBoxes from Database using jQuery in ASP.Net MVC
Here Mudassar Ahmed Khan has explained with an example, how to implement TreeView with CheckBoxes from database using the jQuery jsTree plugin in ASP.Net MVC Razor.
The TreeView with CheckBoxes will be populated from database using Entity Framework in ASP.Net MVC Razor.
↧
↧
Implement Drag and Drop File upload in ASP.Net MVC
Here Mudassar Ahmed Khan has explained with an example, how to Drag and Drop and upload files in ASP.Net MVC Razor.
Using the jQuery FileDrop plugin and HTML5, multiple files can be uploaded using the Drag and Drop feature in ASP.Net MVC Razor.
↧
Bind and display data in GridView in ASP.Net MVC
Here Mudassar Ahmed Khan has explained with an example, how to bind and display data in GridView in ASP.Net MVC Razor.
In ASP.Net MVC, GridView control is replaced by WebGrid control.
This article will explain how to implement features of GridView such as Paging and Sorting in WebGrid control in ASP.Net MVC Razor.
↧
Add new row to WebGrid using jQuery in ASP.Net MVC
Here Mudassar Ahmed Khan has explained with an example, how to add new row to WebGrid using jQuery in ASP.Net MVC Razor.
The WebGrid will be populated from database using Entity Framework .
When the Add button is clicked, jQuery will add a new row to WebGrid and will also send the data to Controller’s Action method using AJAX and the record will be inserted to database Table using Entity Framework.
↧
Get TextBox value from Repeater on Button click in ASP.Net
Here Mudassar Ahmed Khan has explained with an example, how to get TextBox value from Repeater on Button click in ASP.Net using C# and VB.Net.
The Repeater Item will be referenced using the NamingContainer property and then the TextBox will be referenced using the FindControl method in ASP.Net.
↧
↧
Populate (Bind) DropDownList in ItemTemplate of Repeater Control in ASP.Net
Here Mudassar Ahmed Khan has explained with an example, how to populate (bind) DropDownList in ItemTemplate of Repeater Control in ASP.Net using C# and VB.Net.
The DropDownList will be populated from database inside the OnItemDataBound event of the Repeater control in ASP.Net using C# and VB.Net.
↧
Implement Button Click event in ASP.Net Repeater control
Here Mudassar Ahmed Khan has explained with an example, how implement Button click in ASP.Net Repeater control using C# and VB.Net.
This article will also explain how to find the controls present in the Repeater Item (Row) inside Button Click event in ASP.Net using C# and VB.Net.
↧
Populate (Bind) TextBox in ItemTemplate of Repeater Control in ASP.Net
Here Mudassar Ahmed Khan has explained with an example, how to populate (bind) TextBox in ItemTemplate of Repeater Control in ASP.Net using C# and VB.Net.
The TextBox will be populated from database using the DataBinder.Eval function inside the Repeater control in ASP.Net using C# and VB.Net.
↧
Paging and Sorting in GridView without DataSource (SqlDataSource) in ASP.Net
Here Mudassar Ahmed Khan has explained with an example, how to implement Paging and Sorting in GridView without DataSource (SqlDataSource control) in ASP.Net using C# and VB.Net.
Paging and Sorting in GridView without DataSource (SqlDataSource control) in ASP.Net is done using OnPageIndexChanging and OnSorting events respectively.
↧
↧
Handle Sorting event in GridView in ASP.Net
Here Mudassar Ahmed Khan has explained with an example, how to handle Sorting event in GridView in ASP.Net using C# and VB.Net.
Sorting in GridView is implemented using the OnSorting event in ASP.Net.
↧
Ascending Descending Sorting using Columns Header in ASP.Net GridView
Here Mudassar Ahmed Khan has explained with an example, how to implement Ascending and Descending Sorting using Columns Header in ASP.Net GridView using C# and VB.Net.
The Columns Header are made clickable and when the Column Headers are clicked, the records are sorted in Ascending or Descending order in GridView.
↧
Sorting in TemplateField column using SortExpression in ASP.Net GridView
Here Mudassar Ahmed Khan has explained with an example, how to implement Sorting in TemplateField column using SortExpression property in ASP.Net GridView using C# and VB.Net.
The Columns Header are made clickable and when the Column Headers are clicked, the records are sorted in Ascending or Descending order in GridView.
↧