Skip to content

Commit 653caa3

Browse files
Merge pull request #433 from Syncfusion-Content/hotfix/hotfix-v23.2.4
DOCINFRA-2341_merged_using_automation
2 parents d366c9b + 22237a6 commit 653caa3

11 files changed

+23
-24
lines changed

js/Button/Getting-Started.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
---
22
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.
65
control: Button
76
documentation: ug
87
api : /api/js/ejbutton
98
---
109

11-
# Getting Started
10+
# Getting Started with JavaScript Button Control
1211

1312
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.
1413

1514
The following screenshot illustrates the functionality of a Button control in Media Player and Office Ribbon Application.
1615

17-
![](/js/Button/Getting-Started_images/Getting-Started_img1.png)
16+
![Getting Started with JavaScript Button.](/js/Button/Getting-Started_images/javascript-button-getting-started.png)
1817

1918
## Create Button Widget
2019

@@ -280,7 +279,7 @@ Add the following function in **<script>** tag.
280279

281280
The following screenshot displays the output.
282281

283-
![](/js/Button/Getting-Started_images/Getting-Started_img2.png)
282+
![JavaScript Button getting started output.](/js/Button/Getting-Started_images/javascript-button-output.png)
284283

285284
## Create Office Ribbon Control
286285

@@ -384,9 +383,9 @@ Add Function Definition from click event to Button function.
384383

385384
The following screenshot displays Office Ribbon Application.
386385

387-
![](/js/Button/Getting-Started_images/Getting-Started_img3.png)
386+
![JavaScript Button application.](/js/Button/Getting-Started_images/javascript-button-application.png)
388387

389388
The following screenshot displays **Office Ribbon** **Bold** Option.
390389

391-
![](/js/Button/Getting-Started_images/Getting-Started_img4.png)
390+
![JavaScript Button display.](/js/Button/Getting-Started_images/javaScript-button-display.png)
392391

js/Grid/Data-Binding.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ api: /api/js/ejgrid
99
---
1010
# Data binding
1111

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.
1313

1414
1. Local data
1515
2. Remote data
@@ -47,7 +47,7 @@ The following code example describes the above behavior.
4747

4848
{% endhighlight %}
4949

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.
5151

5252
The following code example describes the above behavior.
5353

@@ -79,11 +79,11 @@ N> 3. To update the dataSource after Grid rendered, use [`dataSource`](https://h
7979

8080
## Remote Data
8181

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.
8383

8484
### OData
8585

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").
8787

8888
The following code example describes the above behavior.
8989

@@ -112,7 +112,7 @@ The following output is displayed as a result of the above code example.
112112

113113
#### OData Version 4
114114

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`.
116116

117117
I> You can provide adaptor value either as `string` value ("ODataAdaptor") or by creating a new instance (new `ej.ODataV4Adaptor`).
118118

@@ -208,9 +208,9 @@ The following output is displayed as a result of the above code example.
208208

209209
### Other RESTful web services
210210

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.
212212

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.
214214

215215
The following code example describes the above behavior.
216216

@@ -277,7 +277,7 @@ The following output is displayed as a result of the above code example.
277277

278278
### Load At Once
279279

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").
281281

282282
The following code example describes the above behavior.
283283

@@ -313,7 +313,7 @@ The following output is displayed as a result of the above code example.
313313

314314
### Data Caching
315315

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.
317317

318318
N> The cached data will be stored in browser's HTML5 `localStorage`.
319319

js/Spreadsheet/Open-and-Save.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Following file types can be opened in Spreadsheet
5757
* XLSX
5858
* CSV
5959

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.
6161

6262
* Using [`getExportProps`](https://help.syncfusion.com/api/js/ejspreadsheet#methods:xlexport-getexportprops "getExportProps") method to get the export properties in the Spreadsheet.
6363
You can open excel documents in following ways,

js/ToggleButton/Getting-Started.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
---
22
layout: post
3-
title: Getting-Started
4-
description: getting started
3+
title: Getting Started 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.
55
platform: js
66
control: Toggle Button
77
documentation: ug
88
api: /api/js/ejtogglebutton
99
---
1010

11-
# Getting Started
11+
# Getting Started with JavaScript Toggle Botton Control
1212

1313
This section explains briefly about how to create a **Toggle Button** in your application with **JavaScript.**
1414

1515
## Control structure
1616

1717
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.
1818

19-
![](/js/ToggleButton/Getting-Started_images/Getting-Started_img1.png)
19+
![JavaScript Toggle Button structure.](/js/ToggleButton/Getting-Started_images/javascript-toggle-button-structure.png)
2020

2121

2222

23-
![](/js/ToggleButton/Getting-Started_images/Getting-Started_img2.png)
23+
![JavaScript Toggle Button getting started.](/js/ToggleButton/Getting-Started_images/javascript-toggle-button-getting-started.png)
2424

2525

2626

@@ -106,7 +106,7 @@ Output of above steps
106106

107107

108108

109-
![](/js/ToggleButton/Getting-Started_images/Getting-Started_img4.png)
109+
![Label element in JavaScript Toggle Button.](/js/ToggleButton/Getting-Started_images/javascript-toggle-button-label.png)
110110

111111

112112

0 commit comments

Comments
 (0)