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: js/Button/Getting-Started.md
+7-8Lines changed: 7 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,20 +1,19 @@
1
1
---
2
2
layout: post
3
-
title: Getting-Started
4
-
description: getting started
5
-
platform: js
3
+
title: Getting Started with JavaScript Button Control | Syncfusion
4
+
description: Learn here all about getting started with Syncfusion Essential JavaScript Button component, it's elements and more details.
6
5
control: Button
7
6
documentation: ug
8
7
api : /api/js/ejbutton
9
8
---
10
9
11
-
# Getting Started
10
+
# Getting Started with JavaScript Button Control
12
11
13
12
This section explains you briefly on how to create a **Button** in your application with **JavaScript**. Essential JavaScript Button helps to display a Button widget within a web page and allows you to Click, Toggle Click, Reset, and Submit. The following example illustrates how to customize Button control in a Media Player and Office Ribbon Application.
14
13
15
14
The following screenshot illustrates the functionality of a Button control in Media Player and Office Ribbon Application.
Copy file name to clipboardExpand all lines: js/Grid/Data-Binding.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
@@ -9,7 +9,7 @@ api: /api/js/ejgrid
9
9
---
10
10
# Data binding
11
11
12
-
The Grid control uses [`ej.DataManager`](https://help.syncfusion.com/js/datamanager/overview# "ej.DataManager") which supports both RESTful JSON data services binding and local JSON array binding. The [`dataSource`](https://help.syncfusion.com/api/js/ejgrid#members:datasource "dataSource") property can be assigned either with the instance of [`ej.DataManger`](https://help.syncfusion.com/api/js/ejdatamanager# "ej.DataManager") or JSON data array collection. It supports different kinds of data binding methods such as.
12
+
The Grid control uses [`ej.DataManager`](https://help.syncfusion.com/js/datamanager/overview "ej.DataManager") which supports both RESTful JSON data services binding and local JSON array binding. The [`dataSource`](https://help.syncfusion.com/api/js/ejgrid#members:datasource "dataSource") property can be assigned either with the instance of [`ej.DataManger`](https://help.syncfusion.com/api/js/ejdatamanager "ej.DataManager") or JSON data array collection. It supports different kinds of data binding methods such as.
13
13
14
14
1. Local data
15
15
2. Remote data
@@ -47,7 +47,7 @@ The following code example describes the above behavior.
47
47
48
48
{% endhighlight %}
49
49
50
-
The JSON array to the [`dataSource`](https://help.syncfusion.com/api/js/ejgrid#members:datasource "dataSource") property can also be provided as an instance of the [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager# "DataManager"). When the JSON array is passed as an instance of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager# "DataManager"), the `ej.JsonAdaptor` will be used to manipulate the grid datasource.
50
+
The JSON array to the [`dataSource`](https://help.syncfusion.com/api/js/ejgrid#members:datasource "dataSource") property can also be provided as an instance of the [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager "DataManager"). When the JSON array is passed as an instance of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager "DataManager"), the `ej.JsonAdaptor` will be used to manipulate the grid datasource.
51
51
52
52
The following code example describes the above behavior.
53
53
@@ -79,11 +79,11 @@ N> 3. To update the dataSource after Grid rendered, use [`dataSource`](https://h
79
79
80
80
## Remote Data
81
81
82
-
To bind remote data to Grid Control, you can assign a service data as an instance of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager# "DataManager") to the [`dataSource`](https://help.syncfusion.com/api/js/ejgrid#members:datasource "dataSource") property.
82
+
To bind remote data to Grid Control, you can assign a service data as an instance of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager "DataManager") to the [`dataSource`](https://help.syncfusion.com/api/js/ejgrid#members:datasource "dataSource") property.
83
83
84
84
### OData
85
85
86
-
OData is a standardized protocol for creating and consuming data. You can provide the [OData service](https://www.odata.org/) URL directly to the [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager# "DataManager") class and then you can assign it to Grid [`dataSource`](https://help.syncfusion.com/api/js/ejgrid#members:datasource "datasource").
86
+
OData is a standardized protocol for creating and consuming data. You can provide the [OData service](https://www.odata.org/) URL directly to the [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager "DataManager") class and then you can assign it to Grid [`dataSource`](https://help.syncfusion.com/api/js/ejgrid#members:datasource "datasource").
87
87
88
88
The following code example describes the above behavior.
89
89
@@ -112,7 +112,7 @@ The following output is displayed as a result of the above code example.
112
112
113
113
#### OData Version 4
114
114
115
-
For OData Version 4 support, ej.ODataV4Adaptor should be used. By using `url` property of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager# "DataManager") you can bind OData Version 4 Service link and specify `adaptor` as `ej.ODataV4Adaptor`.
115
+
For OData Version 4 support, ej.ODataV4Adaptor should be used. By using `url` property of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager "DataManager") you can bind OData Version 4 Service link and specify `adaptor` as `ej.ODataV4Adaptor`.
116
116
117
117
I> You can provide adaptor value either as `string` value ("ODataAdaptor") or by creating a new instance (new `ej.ODataV4Adaptor`).
118
118
@@ -208,9 +208,9 @@ The following output is displayed as a result of the above code example.
208
208
209
209
### Other RESTful web services
210
210
211
-
The [Custom Adaptor](https://help.syncfusion.com/js/datamanager/data-adaptors#custom-adaptor "CustomAdaptor") concept of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager# "DataManager") allows to customize or generate your own adaptor which is used to process the `query` and `result` data.
211
+
The [Custom Adaptor](https://help.syncfusion.com/js/datamanager/data-adaptors#custom-adaptor "CustomAdaptor") concept of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager "DataManager") allows to customize or generate your own adaptor which is used to process the `query` and `result` data.
212
212
213
-
When using remote data binding, the adaptor of the [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager# "DataManager") plays vital role in processing queries to make them suitable to sends along with the data request and also in processing the response data from the server.
213
+
When using remote data binding, the adaptor of the [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager "DataManager") plays vital role in processing queries to make them suitable to sends along with the data request and also in processing the response data from the server.
214
214
215
215
The following code example describes the above behavior.
216
216
@@ -277,7 +277,7 @@ The following output is displayed as a result of the above code example.
277
277
278
278
### Load At Once
279
279
280
-
On remote data binding, by default all the Grid actions will be processed on server-side such as paging, sorting, editing, grouping and filtering etc. To avoid post back to server on every action, you can set the grid to load all the data on initialization time and make the actions client-side. To enable this, you can use `offline` property of the [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager# "DataManager").
280
+
On remote data binding, by default all the Grid actions will be processed on server-side such as paging, sorting, editing, grouping and filtering etc. To avoid post back to server on every action, you can set the grid to load all the data on initialization time and make the actions client-side. To enable this, you can use `offline` property of the [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager "DataManager").
281
281
282
282
The following code example describes the above behavior.
283
283
@@ -313,7 +313,7 @@ The following output is displayed as a result of the above code example.
313
313
314
314
### Data Caching
315
315
316
-
Date caching will help you prevent the request to server for already visited pages in Grid using the `enableCaching` property of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager# "DataManager"). Also using `cachingPageSize` and `timeTillExpiration` properties of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager# "DataManager"), you can control the number of pages to be cached and duration it should be cached respectively.
316
+
Date caching will help you prevent the request to server for already visited pages in Grid using the `enableCaching` property of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager "DataManager"). Also using `cachingPageSize` and `timeTillExpiration` properties of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager "DataManager"), you can control the number of pages to be cached and duration it should be cached respectively.
317
317
318
318
N> The cached data will be stored in browser's HTML5 `localStorage`.
Copy file name to clipboardExpand all lines: js/Spreadsheet/Open-and-Save.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
@@ -57,7 +57,7 @@ Following file types can be opened in Spreadsheet
57
57
* XLSX
58
58
* CSV
59
59
60
-
[`Click`](http://js.syncfusion.com/demos/web/#!/azure/spreadsheet/importexport"Click") here to view online demo sample.
60
+
[`Click`](https://ej2.syncfusion.com/home/javascript.html#!/azure/spreadsheet/importexport"Click") here to view online demo sample.
61
61
62
62
* Using [`getExportProps`](https://help.syncfusion.com/api/js/ejspreadsheet#methods:xlexport-getexportprops"getExportProps") method to get the export properties in the Spreadsheet.
Copy file name to clipboardExpand all lines: js/ToggleButton/Getting-Started.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,26 +1,26 @@
1
1
---
2
2
layout: post
3
-
title: Getting-Started
4
-
description: getting started
3
+
title: GettingStarted with JavaScript Toggle Botton Control | Syncfusion
4
+
description: Learn here all about getting started with Syncfusion Essential JavaScript Toggle Button component, it's elements and more details.
5
5
platform: js
6
6
control: Toggle Button
7
7
documentation: ug
8
8
api: /api/js/ejtogglebutton
9
9
---
10
10
11
-
# Getting Started
11
+
# Getting Started with JavaScript Toggle Botton Control
12
12
13
13
This section explains briefly about how to create a **Toggle Button** in your application with **JavaScript.**
14
14
15
15
## Control structure
16
16
17
17
The HTML checkbox element can be easily configured as **Essential JavaScript Toggle Button** control. The basic rendering of **Essential JavaScript Toggle Button** is achieved by using default functionality.
0 commit comments