You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aspnet/Gantt/How-to/Change-Weekend.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
1
---
2
2
layout: post
3
3
title: Change-Weekend | Gantt | ASP.NET Webforms | Syncfusion
4
-
description: Change workweek/working days in a week
4
+
description: Learn here about change workweek/working days in a week in Syncfusion ASP.NET Webforms Gantt Control, its elements, and more.
5
5
platform: aspnet
6
6
control: Gantt
7
7
documentation: ug
8
8
---
9
9
10
-
##Change workweek/working days in a week
10
+
# Change workweek/working days in a week in ASP.NET Webforms Gantt
11
11
Non-working days/weekend are used to represent the non-productive days in a project. It is possible to change the non-working days in a week using the `WorkWeek` property in Gantt.
12
12
13
13
By default, Saturdays and Sundays are considered as non-working days/weekend in a project.
@@ -23,7 +23,7 @@ The following code example explains how to change weekend/non-working days
23
23
24
24
The above code example makes Fridays and Saturdays as non-working days in a week.
Copy file name to clipboardExpand all lines: aspnet/Grid/Filtering.md
+15-15Lines changed: 15 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
---
2
2
layout: post
3
-
title: Filtering with Grid widget for Syncfusion Essential ASP.NET
4
-
description: How to enable filtering and its functionalities
3
+
title: Filtering in ASP.NET Web Forms Grid Control | Syncfusion
4
+
description: Learn here about filtering support in Syncfusion Essential ASP.NET Web Forms Grid Control, its elements, and more.
5
5
platform: aspnet
6
6
control: Grid
7
7
documentation: ug
8
8
---
9
-
# Filtering
9
+
# Filtering in ASP.NET Web Forms Grid
10
10
11
11
Filtering helps to view particular or related records from dataSource which meets a given filtering criteria. To enable filter, set `AllowFiltering` property as`true`.
12
12
@@ -102,7 +102,7 @@ The following code example describes the above behavior.
102
102
103
103
The following output is displayed as a result of the above code example.
104
104
105
-

105
+

106
106
107
107
108
108
## Menu Filter
@@ -187,19 +187,19 @@ The following code example describes the above behavior.
187
187
188
188
The following output is displayed as a result of the above code example.
189
189
190
-

190
+

191
191
192
192
Numeric Filter
193
193
194
-

194
+

195
195
196
196
String Filter
197
197
198
-

198
+

199
199
200
200
Date Filter
201
201
202
-

202
+

203
203
204
204
Boolean Filter
205
205
@@ -282,7 +282,7 @@ The following code example describes the above behavior.
282
282
283
283
The following output is displayed as a result of the above code example.
284
284
285
-

285
+

286
286
287
287
288
288
### Checkbox list generation:
@@ -367,7 +367,7 @@ The following code example describes the above behavior.
367
367
368
368
The following output is displayed as a result of the above code example.
369
369
370
-

370
+

371
371
372
372
373
373
### Add current selection to filter checkbox:
@@ -376,7 +376,7 @@ When filtering is done multiple times on the same column then the previously fil
376
376
377
377
The following image describes the above mentioned behavior.
378
378
379
-

379
+

380
380
381
381
382
382
### Case Sensitivity
@@ -457,7 +457,7 @@ The following code example describes the above behavior.
457
457
458
458
The following output is displayed as a result of the above code example.
459
459
460
-

460
+

461
461
462
462
463
463
## Filter Bar
@@ -676,7 +676,7 @@ The following code example describes the above behavior.
676
676
677
677
The following output is displayed as a result of the above code example.
678
678
679
-

679
+

680
680
681
681
682
682
Filter bar modes:
@@ -765,7 +765,7 @@ The following code example describes the above behavior.
765
765
766
766
The following output is displayed as a result of the above code example.
767
767
768
-

768
+

Copy file name to clipboardExpand all lines: aspnet/Grid/How-to/Apply-formatting-for-columns-dynamically.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
1
---
2
2
layout: post
3
-
title: Apply formatting for columns dynamically | Grid | ASP.NET Webforms | Syncfusion
4
-
description: apply formatting for columns dynamically
3
+
title: Apply formatting in ASP.NET Webforms Grid Control | Syncfusion
4
+
description: Learn here about apply formatting for columns dynamically in Syncfusion ASP.NET Webforms Grid Control, its elements, and more.
5
5
platform: aspnet
6
6
control: Grid
7
7
documentation: ug
8
8
---
9
9
10
-
##Apply formatting for columns dynamically
10
+
# Apply formatting for columns in ASP.NET Webforms Grid
11
11
12
12
Column format can be used dynamically to change data values format with the help of the public method. The following code example illustrates the Essential JavaScript with column formatting in public method.
Copy file name to clipboardExpand all lines: aspnet/Grid/How-to/Initialize-Grid.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
1
---
2
2
layout: post
3
3
title: Initialize Grid | Grid | ASP.NET Webforms | Syncfusion
4
-
description: initialize grid
4
+
description: Learn here about initialization in Syncfusion Essential ASP.NET Webforms Grid Control, its elements, and more.
5
5
platform: aspnet
6
6
control: Grid
7
7
documentation: ug
8
8
---
9
9
10
-
##Initialize Grid
10
+
# Initialize ASP.NET Webforms Grid
11
11
12
12
In this section, you can learn about Grid’s mandatory property to render a simple Grid. To initialize Grid, it needs two important properties. They are columns and its inner property field. Columns are used to define schema of Grid and field is mapping a name to the data source.
13
13
@@ -31,7 +31,7 @@ In this section, you can learn about Grid’s mandatory property to render a sim
31
31
32
32
The following output is displayed as a result of the above code example.
Copy file name to clipboardExpand all lines: aspnet/Grid/Overview.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
1
---
2
2
layout: post
3
3
title: Overview | Grid | ASP.NET Webforms | Syncfusion
4
-
description: overview
4
+
description: Learn here about overview of Syncfusion Essential ASP.NET WebForms Grid Control, its elements, and more.
5
5
platform: aspnet
6
6
control: Grid
7
7
documentation: ug
8
8
---
9
9
10
-
# Overview
10
+
# Overview of ASP.NET WebForms Grid
11
11
12
12
The Grid control for ASP.NET is an efficient display engine for tabular data. It will pull from a datasource, such as ListCollection, OData web services, or SQLData, binding data fields to columns and displaying a column header to identify the field. It is a feature-rich control that provides extensive appearance customization options with support for grouped records. This Grid is very useful for generating complex grid-based reports with rich formatting. The most important features available in the Grid control for ASP.NET are paging, sorting, filtering, searching, grouping, and editing.
Copy file name to clipboardExpand all lines: aspnet/Grid/Selection.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
---
2
2
layout: post
3
-
title: Selection with Grid widget for Syncfusion Essential ASP
4
-
description: How to enable selection and its functionalities
3
+
title: Selection in ASP.NET Web Forms Grid Control | Syncfusion
4
+
description: Learn here about selection support in Syncfusion Essential ASP.NET Web Forms Grid Control, its elements, and more.
5
5
platform: aspnet
6
6
control: Grid
7
7
documentation: ug
8
8
---
9
-
# Selection
9
+
# Selection in ASP.NET Web Forms Grid
10
10
11
11
Selection provides an interactive support to highlight the row, cell or column that you select. Selection can be done through simple Mouse down or Keyboard interaction. To enable selection, set `AllowSelection` as `true`.
12
12
@@ -102,7 +102,7 @@ The following code example describes the above behavior.
102
102
103
103
The following output is displayed as a result of the above code example
104
104
105
-

105
+

106
106
107
107
## Multiple Row Selection using Checkbox Column
108
108
@@ -144,7 +144,7 @@ The following code example describes the above behavior.
144
144
145
145
The following output is displayed as a result of the above code example
146
146
147
-

147
+

148
148
149
149
## Cell Selection
150
150
@@ -223,7 +223,7 @@ The following code example describes the above behavior.
223
223
224
224
The following output is displayed as a result of the above code example
225
225
226
-

226
+

227
227
228
228
### Cell Selection Mode
229
229
@@ -307,7 +307,7 @@ The following code example describes the above behavior.
307
307
308
308
The following output is displayed as a result of the above code example
309
309
310
-

310
+

311
311
312
312
313
313
## Column Selection
@@ -387,7 +387,7 @@ The following code example describes the above behavior.
387
387
388
388
The following output is displayed as a result of the above code example
389
389
390
-

390
+

391
391
392
392
393
393
## Touch options
@@ -466,7 +466,7 @@ The following code example describes the above behavior.
466
466
467
467
The following output is displayed as a result of the above code example.
468
468
469
-

469
+

Copy file name to clipboardExpand all lines: aspnet/Grid/Sorting.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
---
2
2
layout: post
3
-
title: Sorting with Grid widget for Syncfusion Essential ASP.NET
4
-
description: How to enable sorting and its functionalities
3
+
title: Sorting in ASP.NET Web Forms Grid Control | Syncfusion
4
+
description: Learn here about sorting support in Syncfusion Essential ASP.NET Web Forms Grid Control, its elements, and more.
5
5
platform: aspnet
6
6
control: Grid
7
7
documentation: ug
8
8
---
9
-
# Sorting
9
+
# Sorting in ASP.NET Web Forms Grid
10
10
The Grid control has support to sort data bound columns in ascending or descending order. This can be achieved by setting `AllowSorting` property as `true`.
11
11
12
12
To dynamically sort a particular column, click on its column header. The order switch between ascending and descending each time you click a column header for sorting.
@@ -85,7 +85,7 @@ The following code example describes the above behavior.
85
85
86
86
The following output is displayed as a result of the above code example.
87
87
88
-

88
+

89
89
90
90
## Initial Sorting
91
91
Through `SortedColumns` property of `SortSettings`, you can sort the columns while initializing the grid itself. You need to specify the `Field` (Columns) name and `Direction` in the `SortedColumns`.
@@ -167,7 +167,7 @@ The following code example describes the above behavior.
167
167
168
168
The following output is displayed as a result of the above code example.
169
169
170
-

170
+

171
171
172
172
## Multi-Column Sorting
173
173
Sort multiple columns in grid by setting `AllowMultiSorting` property as true. The sorting order is displayed in the header while doing multi sorting.
@@ -253,7 +253,7 @@ The following code example describes the above behavior.
253
253
254
254
The following output is displayed as a result of the above code example.
255
255
256
-

256
+

257
257
258
258
## Stable sorting
259
259
For sorting, grid uses default browser's sort function for better performance. On multi column sorting in some browsers like chrome, the records order will be different due to unstable implementation of sorting algorithm in it.
@@ -347,7 +347,7 @@ The following code example describes the above behavior.
347
347
348
348
The following output is displayed as a result of the above code example.
349
349
350
-

350
+

351
351
352
352
## Touch options
353
353
While using Grid in a touch device, you have an option for multi sorting in single tap on the grid header. By tapping on the grid header, it will show the toggle button in small popup with sort icon. Now tap the button to enable multi sorting in single tap.
@@ -431,7 +431,7 @@ The following code example describes the above behavior.
431
431
432
432
The following output is displayed as a result of the above code example.
433
433
434
-

434
+

435
435
436
436
N> To get the sorted data of the grid after sorting a column you can refer the [`How To`](https://help.syncfusion.com/aspnet/grid/how-to"Getting Datasource of Grid in Sorted Order").
0 commit comments