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: aspnetmvc/Grid/Cell.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
@@ -236,7 +236,7 @@ You can add custom attribute for the particular column's `td` element by using `
236
236
237
237
Based on custom attribute you can customize the style and appearance of the `td` element or handling jQuery functionalities.
238
238
239
-
You can use JsRender syntax in the template. For more information about JsRender syntax, please refer [this link](http://www.jsviews.com/#jsrapi"the link").
239
+
You can use JsRender syntax in the template. For more information about JsRender syntax, please refer [this link](https://www.jsviews.com/#jsrapi"the link").
240
240
241
241
The following code example describes the above behavior.
242
242
@@ -327,7 +327,7 @@ When you move the cursor over the particular cell it provides an information abo
327
327
328
328
**Template**
329
329
330
-
HTML templates can be specified in the `Tooltip` property of the particular column cell as a string (HTML element) or ID of the template's HTML element.You can use JsRender syntax in the template. For more information about JsRender syntax, please refer [this link](http://www.jsviews.com/#jsrapi"this link").
330
+
HTML templates can be specified in the `Tooltip` property of the particular column cell as a string (HTML element) or ID of the template's HTML element.You can use JsRender syntax in the template. For more information about JsRender syntax, please refer [this link](https://www.jsviews.com/#jsrapi"this link").
331
331
332
332
N> It's a standard way to enclose the template within the `script` tag with `type` as "text/x-jsrender".
333
333
N> The `Tooltip` template must contain `value` property to bind the corresponding cell text in tooltip
Copy file name to clipboardExpand all lines: aspnetmvc/Grid/Columns.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -247,7 +247,7 @@ The following output is displayed as a result of the above code example.
247
247
248
248
The template design that applies on for the column header. To render template, use the `HeaderTemplateID` property of `Columns`.
249
249
250
-
You can use JsRender syntax in the template. For more information about JsRender syntax, please refer [this link](http://www.jsviews.com/#jsrapi"the link").
250
+
You can use JsRender syntax in the template. For more information about JsRender syntax, please refer [this link](https://www.jsviews.com/#jsrapi"the link").
251
251
252
252
N> It's a standard way to enclose the `template` within the `script` tag with `type` as `text/x-jsrender`.
253
253
@@ -351,7 +351,7 @@ The following output is displayed as a result of the above code example.
351
351
352
352
`Format` is the process of customizing the particular column data with specified jQuery recognized globalize formats, such as currency, numeric, decimal, percentage or dates. To specify the globalize format, by using Format property of `Columns`.
353
353
354
-
The `Format` value should be wrapped within "{0:" and "}". (For ex: "{0:C3}"). The [data format](https://github.com/jquery/globalize/tree/v0.1.1#format"data format") strings available for the `Date` and `Number` types.
354
+
The `Format` value should be wrapped within "{0:" and "}". (For ex: "{0:C3}"). The [data format](https://github.com/globalizejs/globalize/tree/v0.1.1#format"data format") strings available for the `Date` and `Number` types.
355
355
356
356
The following code example describes the above behavior.
357
357
@@ -695,7 +695,7 @@ The following output is displayed as a result of the above code example.
695
695
696
696
HTML templates can be specified in the `Template` property of the particular column as a string (html element) or ID of the template's HTML element.
697
697
698
-
You can use JsRender syntax in the template. For more information about JsRender syntax, please refer [this link](http://www.jsviews.com/#jsrapi"this link").
698
+
You can use JsRender syntax in the template. For more information about JsRender syntax, please refer [this link](https://www.jsviews.com/#jsrapi"this link").
699
699
700
700
For template manipulation using JavaScript, either you can use JsRender [helper](https://www.jsviews.com/#helpers) function or `TemplateRefresh` grid event. For more information on `TemplateRefresh` event, refer [this link](https://help.syncfusion.com/aspnetmvc/grid/how-to#display-other-syncfusion-controls-in-grid-columns"this link").
701
701
@@ -831,7 +831,7 @@ The following output is displayed as a result of the above code example.
831
831
832
832
Expression column is possible only for `Template` column. You can use JsRender syntax in the template.
833
833
834
-
You can use JsRender syntax in the template. For more information about JsRender syntax, please refer [this link](http://www.jsviews.com/#jsrapi"the link").
834
+
You can use JsRender syntax in the template. For more information about JsRender syntax, please refer [this link](https://www.jsviews.com/#jsrapi"the link").
835
835
836
836
N> This expression column is supported at read only mode.
Copy file name to clipboardExpand all lines: aspnetmvc/Grid/Data-Adaptors.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
@@ -8,7 +8,7 @@ documentation: ug
8
8
---
9
9
# Data Adaptors in ASP.NET MVC Grid
10
10
11
-
The Data Adaptor is a mechanism through which the `DataManager` interact with the remote service or local dataSource. The `DataManager` has several preconfigured Data Adaptors, refer to the [link](http://help.syncfusion.com/aspnetmvc/datamanager/data-Adaptors).
11
+
The Data Adaptor is a mechanism through which the `DataManager` interact with the remote service or local dataSource. The `DataManager` has several preconfigured Data Adaptors, refer to the [link](https://help.syncfusion.com/aspnetmvc/datamanager/data-Adaptors).
12
12
13
13
In Grid, the Adaptor can be specified using the `Adaptor` property of the `DataSource` builder.
14
14
@@ -62,7 +62,7 @@ The following output is displayed as a result of the above code example.
62
62
63
63
The Url Adaptor is the base Adaptor that would interact with remote services. It can be enabled in Grid using `Adaptor` property of `DataSource` as `AdaptorType.UrlAdaptor`. For every operations, an AJAX post will be send to the specified data service.
64
64
65
-
N> When using `UrlAdaptor`, grid actions such as `Paging, Filtering` and `Sorting` should be handled at the server side itself. We have `DataOperation` class to do these server side operations. Please refer to the Knowledge Base [link](https://www.syncfusion.com/kb/4300). These operations can also be done using the `QueryableDataOperations` class which accepts the IQueryable Data. Please refer the Kb [link](https://www.syncfusion.com/kb/8434).
65
+
N> When using `UrlAdaptor`, grid actions such as `Paging, Filtering` and `Sorting` should be handled at the server side itself. We have `DataOperation` class to do these server side operations. Please refer to the Knowledge Base [link](https://support.syncfusion.com/kb/article/4411/server-side-api-for-datamanager-operations). These operations can also be done using the `QueryableDataOperations` class which accepts the IQueryable Data. Please refer the Kb [link](https://support.syncfusion.com/kb/article/7406/server-side-api-for-datamanager-operations-with-iqueryable-data).
66
66
67
67
68
68
The following code example describes the above behavior.
Copy file name to clipboardExpand all lines: aspnetmvc/Grid/Data-Binding.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,13 +21,13 @@ We can also bind the above type of datasource by using lambda Expressions of Gri
21
21
22
22
N> 1. To update the dataSource after Grid rendered, use `dataSource` method of Grid. Refer to this [link](https://help.syncfusion.com/aspnetmvc/grid/how-to#set-dynamic-datasource-to-grid) for more information.
23
23
24
-
N> 2. DateTime values, retrieved from server-end or database, will be converted based on the local time zone. To avoid the local time zone conversion, refer this knowledge base [link](https://www.syncfusion.com/kb/8613/how-to-convert-dates-to-utc-format).
24
+
N> 2. DateTime values, retrieved from server-end or database, will be converted based on the local time zone. To avoid the local time zone conversion, refer this knowledge base [link](https://support.syncfusion.com/kb/article/7605/how-to-convert-dates-to-utc-format).
25
25
26
26
In the following section, let us see on how to bind various datasources to Grid using `DataSource` API.
27
27
28
28
## IEnumerable
29
29
30
-
The Grid can be bound with either non-generic collection or generic collection that implements [IEnumerable](https://msdn.microsoft.com/en-us/library/system.collections.ienumerable.aspx) interface. It can be assigned to Grid’s `DataSource` property.
30
+
The Grid can be bound with either non-generic collection or generic collection that implements [IEnumerable](https://learn.microsoft.com/en-us/dotnet/api/system.collections.ienumerable?redirectedfrom=MSDN) interface. It can be assigned to Grid’s `DataSource` property.
31
31
32
32
N> When using `DataSource` builder, the IEnumerable datasource can be passed as parameter either directly to the `DataSource` builder or to the `Json` property of the `DataSource` builder.
33
33
@@ -321,7 +321,7 @@ The following output is displayed as a result of the above code example.
321
321
322
322
See Also
323
323
324
-
For more information on ITypedList interface please refer to this [link](https://msdn.microsoft.com/en-us/library/System.ComponentModel.ITypedList.aspx).
324
+
For more information on ITypedList interface please refer to this [link](https://learn.microsoft.com/en-us/dotnet/api/system.componentmodel.itypedlist?redirectedfrom=MSDN).
325
325
326
326
## Complex Binding
327
327
@@ -406,7 +406,7 @@ The following output is displayed as a result of the above code example.
406
406
407
407
See Also
408
408
409
-
To create WCF Data Service in your web application refer [here](https://msdn.microsoft.com/en-us/library/cc668184.aspx).
409
+
To create WCF Data Service in your web application refer [here](https://learn.microsoft.com/visualstudio/data-tools/walkthrough-creating-a-wcf-data-service-with-wpf-and-entity-framework?view=vs-2015&redirectedfrom=MSDN).
Copy file name to clipboardExpand all lines: aspnetmvc/Grid/Editing.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
@@ -12,7 +12,7 @@ The grid control has support for dynamic insertion, updating and deletion of rec
12
12
13
13
Deletion of the record is possible by selecting the required row and clicking on Delete icon in toolbar.
14
14
15
-
The primary key for the data source should be defined in `Columns` definition, for editing to work properly. In `Columns` definition, particular primary column's `IsPrimaryKey` property should be set to `true`. Refer the Knowledge base [link](http://www.syncfusion.com/kb/2675/cant-edit-any-row-except-the-first-row-in-grid#"link") for more information.
15
+
The primary key for the data source should be defined in `Columns` definition, for editing to work properly. In `Columns` definition, particular primary column's `IsPrimaryKey` property should be set to `true`. Refer the Knowledge base [link](https://support.syncfusion.com/kb/article/2934/cant-edit-any-row-except-the-first-row-in-grid"link") for more information.
16
16
17
17
N> 1. In grid, the primary key column will be automatically set to read only while editing the row, but you can specify primary key column value while adding a new record.
18
18
N> 2. The column which is specified as `IsIdentity` will be in readonly mode both while editing and adding a record. Also, auto incremented value is assigned to that `IsIdentity` column.
@@ -487,7 +487,7 @@ Before the template elements are converted to JS controls
487
487
488
488
After the template elements are converted to JS controls using actionComplete event.
489
489
490
-
N> To render the EJMVC form controls like DatePicker, Dropdownlist, NumericTextBox in the template edit form, from the partial view, refer the KB [`How render ejControls in the Edit Form Template of the MVC Grid`](https://www.syncfusion.com/kb/7746/how-render-ejcontrols-in-the-edit-form-template-of-the-mvc-grid "How render ejControls in the Edit Form Template of the MVC Grid?").
490
+
N> To render the EJMVC form controls like DatePicker, Dropdownlist, NumericTextBox in the template edit form, from the partial view, refer the KB [`How render ejControls in the Edit Form Template of the MVC Grid`](https://support.syncfusion.com/kb/article/6947/how-render-ejcontrols-in-the-edit-form-template-of-the-mvc-grid).
491
491
492
492
### Dialog
493
493
@@ -892,14 +892,14 @@ Before the template elements are converted to JS controls
892
892
893
893
After the template elements are converted to JS controls using actionComplete event.
894
894
895
-
N> To render the EJMVC form controls like DatePicker, Dropdownlist, NumericTextBox in the template edit form, from the partial view, refer the KB [`How render ejControls in the Edit Form Template of the MVC Grid`](https://www.syncfusion.com/kb/7746/how-render-ejcontrols-in-the-edit-form-template-of-the-mvc-grid "How render ejControls in the Edit Form Template of the MVC Grid?").
895
+
N> To render the EJMVC form controls like DatePicker, Dropdownlist, NumericTextBox in the template edit form, from the partial view, refer the KB [`How render ejControls in the Edit Form Template of the MVC Grid`](https://support.syncfusion.com/kb/article/6947/how-render-ejcontrols-in-the-edit-form-template-of-the-mvc-grid).
896
896
897
897
### Batch / Excel-like
898
898
899
899
Users can start editing by clicking a cell and typing data into it. Edited cell will be marked while navigating to next cell or any other row, so that you know which fields or cells has been edited. Set`EditMode` as `Batch` to enable batch editing.
900
900
901
901
N>`getBatchChanges` method of grid holds the unsaved record changes.
902
-
N> Refer the KB [link](http://www.syncfusion.com/kb/3016/how-to-suppress-grid-confirmation-messages# "link") for "How to suppress grid confirmation messages" in batch mode.
902
+
N> Refer the KB [link](https://support.syncfusion.com/kb/article/3065/how-to-suppress-grid-confirmation-messages "link") for "How to suppress grid confirmation messages" in batch mode.
903
903
904
904
The following code example describes the above behavior.
905
905
@@ -1160,9 +1160,9 @@ equalTo</td><td>
1160
1160
Requires the element to be the same as another.</td></tr>
1161
1161
</table>
1162
1162
1163
-
Grid supports all the standard validation methods of jQuery, please refer the jQuery validation documentation [link](http://jqueryvalidation.org/documentation/# "link") for more information.
1163
+
Grid supports all the standard validation methods of jQuery, please refer the jQuery validation documentation [link](https://jqueryvalidation.org/documentation/# "link") for more information.
1164
1164
1165
-
To return custom validation message from server end, please refer thisKB [link](https://www.syncfusion.com/kb/7135/how-to-return-custom-message-from-controller-when-crud-action-fails).
1165
+
To return custom validation message from server end, please refer thisKB [link](https://support.syncfusion.com/kb/article/6608/how-to-return-custom-message-from-controller-when-crud-action-fails).
1166
1166
1167
1167
The following code example describes the above behavior.
1168
1168
@@ -1217,7 +1217,7 @@ The following output is displayed as a result of the above code example.
N>1. Refer this [Knowledge Base link](https://www.syncfusion.com/kb/6817/how-to-perform-server-side-validation-in-grid) to perform server side validation in Grid.
1220
+
N>1. Refer this [Knowledge Base link](https://support.syncfusion.com/kb/article/6216/how-to-perform-server-side-validation-in-grid) to perform server side validation in Grid.
Copy file name to clipboardExpand all lines: aspnetmvc/Grid/Enable-Persistence.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
@@ -9,9 +9,9 @@ documentation: ug
9
9
10
10
# State Persistence
11
11
12
-
State persistence is to maintain the grid state in browser's [local storage](http://www.w3schools.com/html/html5_webstorage.asp#) even if browser refreshes or move to the next page. State persistence stores grid's model object in local storage while defining the `enablePersistence` as true.
12
+
State persistence is to maintain the grid state in browser's [local storage](https://www.w3schools.com/html/html5_webstorage.asp) even if browser refreshes or move to the next page. State persistence stores grid's model object in local storage while defining the `enablePersistence` as true.
13
13
14
-
I> The [localStorage](http://www.w3schools.com/html/html5_webstorage.asp#) is not supported below IE9 then grid state persistence technique is fallback to [cookie](http://www.w3schools.com/js/js_cookies.asp#).
14
+
I> The [localStorage](https://www.w3schools.com/html/html5_webstorage.asp) is not supported below IE9 then grid state persistence technique is fallback to [cookie](https://www.w3schools.com/js/js_cookies.asp).
15
15
16
16
## List of properties are not persisted by default
Copy file name to clipboardExpand all lines: aspnetmvc/Grid/Exporting.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -233,7 +233,7 @@ N> Excel file will be exported in the collapsed state with the expand/collapse i
233
233
234
234
N> 1. The dataSource passed to the exporting method is compared with grid column while exporting, when a column is not defined in the grid dataSource, it is obtained as null value and hence throws a null exception. To avoid the above exception ensure that the columns bound to the grid are defined in the grid dataSource before exporting the grid.
235
235
236
-
N> 2. To export the dynamic list of objects in the grid use the TypeBuilder concept refer to this [`link`](https://www.syncfusion.com/kb/7620/how-to-export-dynamic-list-using-typebuilder-in-grid"link")
236
+
N> 2. To export the dynamic list of objects in the grid use the TypeBuilder concept refer to this [`link`](https://support.syncfusion.com/kb/article/6889/how-to-export-dynamic-list-using-typebuilder-in-grid)
0 commit comments