Skip to content

Commit 2fe2b82

Browse files
Merge pull request #342 from Syncfusion-Content/hotfix/hotfix-v21.2.3
DOCINFRA-2341_merged_using_automation
2 parents 49cb677 + 9bf91b4 commit 2fe2b82

File tree

163 files changed

+376
-376
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+376
-376
lines changed

aspnetmvc/Accessibility.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ The WAI-ARIA specification suite defines a set of roles, states, and properties
1818

1919
This section describes about the approaches followed to make the widgets accessible using the Roles, States, and Properties defined by WAI-ARIA specifications. The WAI-ARIA specifications recommends several attributes to be used along with the DOM element structure to make it accessible.
2020

21-
The common widgets that can be made accessible by using the WAI-ARIA are listed [here](https://www.w3.org/TR/wai-aria-practices-1.1/). The various ARIA attributes that are used to make the widgets accessible are listed [here](https://msdn.microsoft.com/en-us/library/hh801958%28v=vs.85%29.aspx).
21+
The common widgets that can be made accessible by using the WAI-ARIA are listed [here](https://www.w3.org/WAI/ARIA/apg/). The various ARIA attributes that are used to make the widgets accessible are listed [here](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA).
2222

2323
The basic steps for converting a common widget into accessible are as follows:
2424

25-
1. Choose the appropriate [role](https://www.w3.org/WAI/PF/aria/roles.html) for your widget that defines the general component type. For example, if you need to create a button, set the role to the button.
25+
1. Choose the appropriate [role](https://www.w3.org/TR/wai-aria/) for your widget that defines the general component type. For example, if you need to create a button, set the role to the button.
2626

2727
{% highlight html %}
2828

2929
<button id="button1" role="button">Submit</button>
3030

3131
{% endhighlight %}
3232

33-
2. Once the role is selected, now you can set its state/properties avails for it from the link given [here](https://www.w3.org/WAI/PF/aria/states_and_properties#aria-describedby).
33+
2. Once the role is selected, now you can set its state/properties avails for it from the link given [here](https://www.w3.org/TR/wai-aria/#aria-describedby).
3434

3535
{% highlight html %}
3636

@@ -42,7 +42,7 @@ i. The above code will make the button widget accessible, as it was defined with
4242
ii. The property aria-describedby has been assigned with some related button text that denotes the button description to be notified to the user.
4343

4444
N> Note: If your button is a togglebutton, it can be defined with an additional aria-pressed state, that returns the value true if the button undergoes toggling, else the state remains as false.<BR>
45-
An example with button control that has been made accessible can be referred from this [link](https://www.w3.org/TR/wai-aria-practices-1.1/examples/button/button.html).
45+
An example with button control that has been made accessible can be referred from this [link](https://www.w3.org/WAI/ARIA/apg/patterns/button/examples/button/).
4646

4747
## Usage of Accessibility in Syncfusion Widgets
4848

aspnetmvc/Accordion/Keyboard-Navigation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Shortcut Key</th><th>
1818
Description</th></tr>
1919
<tr>
2020
<td>
21-
{{ '[Access key](http://en.wikipedia.org/wiki/Access_key)' | markdownify }} + j </td><td>
21+
{{ '[Access key](https://en.wikipedia.org/wiki/Access_key)' | markdownify }} + j </td><td>
2222
Focuses into the accordion control</td></tr>
2323
<tr>
2424
<td>

aspnetmvc/Autocomplete/Data-Binding.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ The below following types are used to bind remote datasource to an AutoComplete
208208

209209
###OData
210210

211-
OData is a standardized protocol for creating and consuming data. You can provide the [OData service](http://www.odata.org/) URL directly to the Datasource URL property.
211+
OData is a standardized protocol for creating and consuming data. You can provide the [OData service](https://www.odata.org/) URL directly to the Datasource URL property.
212212

213213

214214
{% highlight html %}
@@ -225,7 +225,7 @@ Run the code to get the following output
225225

226226
For OData Version 4 support ODataV4Adaptor should be used. By using URL property of Datasource, you can bind OData Version 4 Service link and specify Adaptor value as enum AdaptorType.ODataV4Adaptor.
227227

228-
For further details about OData service please refer [the link](http://www.odata.org/).
228+
For further details about OData service please refer [the link](https://www.odata.org/).
229229

230230
{% highlight html %}
231231

@@ -291,7 +291,7 @@ Run the code to get the following output
291291

292292
### WebAPI
293293

294-
**WebApi** Adaptor, extended from **ODataAdaptor**, of **DataManager** is used for retrieving data from WebApi service. [ASP.NET Web API](https://msdn.microsoft.com/en-us/library/hh833994%28v=vs.108%29.aspx) is a Framework for building HTTP services. You can retrieve data from ASP.NET Web API by using [DataManager](https://help.syncfusion.com/js/datamanager/getting-started). Using WebApiAdaptor, you can bind WebApi service’s data to Autocomplete. The data from WebApi service must be returned as an object that has its value as data source and field property customerID with its value as Datasource total records count.
294+
**WebApi** Adaptor, extended from **ODataAdaptor**, of **DataManager** is used for retrieving data from WebApi service. [ASP.NET Web API](https://learn.microsoft.com/en-us/previous-versions/aspnet/hh833994(v=vs.108)?redirectedfrom=MSDN) is a Framework for building HTTP services. You can retrieve data from ASP.NET Web API by using [DataManager](https://help.syncfusion.com/js/datamanager/getting-started). Using WebApiAdaptor, you can bind WebApi service’s data to Autocomplete. The data from WebApi service must be returned as an object that has its value as data source and field property customerID with its value as Datasource total records count.
295295

296296
{% highlight html %}
297297

aspnetmvc/Autocomplete/Keyboard-Interaction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Shortcut Key</th><th>
2020
Description</th></tr>
2121
<tr>
2222
<td>
23-
{{ '[Access key](http://en.wikipedia.org/wiki/Access_key)' | markdownify }} + j </td><td>
23+
{{ '[Access key](https://en.wikipedia.org/wiki/Access_key)' | markdownify }} + j </td><td>
2424
Focuses into the AutoComplete text box</td></tr>
2525
<tr>
2626
<td>

aspnetmvc/Barcode/Getting-Started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ By default, ASP.NET MVC Barcode renders gray scale colors with predefined Quiet
3636

3737
### Refer Assemblies
3838

39-
You can create a MVC Project, add necessary assemblies and Scripts. Refer [MVC-Getting Started Documentation.](http://help.syncfusion.com/aspnetmvc/barcode/getting-started)
39+
You can create a MVC Project, add necessary assemblies and Scripts. Refer [MVC-Getting Started Documentation.](https://help.syncfusion.com/aspnetmvc/barcode/getting-started)
4040

4141
Add the following assemblies in your MVC application for using Barcode control:
4242

aspnetmvc/Button/Getting-Started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Essential ASP.NET MVC Button provides support to display a Button control within
1717

1818
The following screenshot illustrates the functionality of Button in Multimedia player control.
1919

20-
![](Getting-Started_images/Getting-Started_img1.png)
20+
![Getting started with ASP.NET MVC Button](getting-started_images/aspnetmvc-button-getting-started.png)
2121
Multimedia Player
2222
{:.caption}
2323

@@ -319,13 +319,13 @@ In this section, you can learn how to create a Microsoft Office Ribbon used to c
319319

320320

321321

322-
![](Getting-Started_images/Getting-Started_img2.png)
322+
![ASP.NET MVC Button office](getting-started_images/aspnetmvc-button-office.png)
323323

324324
Office Ribbon before applying the styles
325325
{:.caption}
326326

327327

328-
![](Getting-Started_images/Getting-Started_img3.png)
328+
![Create office in ASP.NET MVC Button](getting-started_images/aspnetmvc-button-create-ofice.png)
329329

330330
Office Ribbon after applying the styles
331331
{:.caption}

aspnetmvc/Chart/3D-Chart.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ For rendering a 3D Column Chart, specify the series **Type** as **Column** in th
3333
![](3D-Chart_images/3D-Chart_img1.png)
3434

3535

36-
[Click](http://mvc.syncfusion.com/demos/web/chart/column3d) here to view the Column 3DChart online demo sample.
36+
[Click](https://mvc.syncfusion.com/demos/web/chart/column3d) here to view the Column 3DChart online demo sample.
3737

3838

3939
## 3D Bar Chart
@@ -57,7 +57,7 @@ You can create a 3D Bar Chart by setting the series **Type** as **Bar** in the c
5757
![](3D-Chart_images/3D-Chart_img2.png)
5858

5959

60-
[Click](http://mvc.syncfusion.com/demos/web/chart/bar3d) here to view the Bar 3DChart online demo sample.
60+
[Click](https://mvc.syncfusion.com/demos/web/chart/bar3d) here to view the Bar 3DChart online demo sample.
6161

6262

6363
## 3D Stacked Column Chart
@@ -84,7 +84,7 @@ You can create a 3D Stacked Column Chart by setting the series **Type** as **Sta
8484
![](3D-Chart_images/3D-Chart_img3.png)
8585

8686

87-
[Click](http://mvc.syncfusion.com/demos/web/chart/stackingcolumn3d) here to view the Stacked Column 3DChart online demo sample.
87+
[Click](https://mvc.syncfusion.com/demos/web/chart/stackingcolumn3d) here to view the Stacked Column 3DChart online demo sample.
8888

8989
## 3D 100% Stacked Column Chart
9090

@@ -111,7 +111,7 @@ You can create a 3D Stacked Column Chart by setting the series **Type** as **Sta
111111
![](3D-Chart_images/3D-Chart_img4.png)
112112

113113

114-
[Click](http://mvc.syncfusion.com/demos/web/chart/stackingcolumn1003d) here to view the 100% Stacked Column 3DChart online demo sample.
114+
[Click](https://mvc.syncfusion.com/demos/web/chart/stackingcolumn1003d) here to view the 100% Stacked Column 3DChart online demo sample.
115115

116116

117117
## 3D Stacked Bar Chart
@@ -138,7 +138,7 @@ To create Stacking Bar 3DChart, set the series **Type** as **StackingBar** in th
138138
![](3D-Chart_images/3D-Chart_img5.png)
139139

140140

141-
[Click](http://mvc.syncfusion.com/demos/web/chart/stackingbar3d) here to view the Stacked Bar 3DChart online demo sample.
141+
[Click](https://mvc.syncfusion.com/demos/web/chart/stackingbar3d) here to view the Stacked Bar 3DChart online demo sample.
142142

143143

144144
## 3D 100% Stacked Bar Chart
@@ -165,7 +165,7 @@ You can create 100% Stacking Bar 3DChart by setting the series **Type** as **Sta
165165
![](3D-Chart_images/3D-Chart_img6.png)
166166

167167

168-
[Click](http://mvc.syncfusion.com/demos/web/chart/stackingbar1003d) here to view the 100% Stacked Bar 3DChart online demo sample.
168+
[Click](https://mvc.syncfusion.com/demos/web/chart/stackingbar1003d) here to view the 100% Stacked Bar 3DChart online demo sample.
169169

170170

171171
## 3D Pie Chart
@@ -190,7 +190,7 @@ To render the Pie Chart in 3D view, enable the **Enbel3D** option in the chart a
190190
![](3D-Chart_images/3D-Chart_img7.png)
191191

192192

193-
[Click](http://mvc.syncfusion.com/demos/web/chart/pie3d) here to view the Pie 3DChart online demo sample.
193+
[Click](https://mvc.syncfusion.com/demos/web/chart/pie3d) here to view the Pie 3DChart online demo sample.
194194

195195

196196
## 3D Doughnut Chart
@@ -215,7 +215,7 @@ To render the Doughnut Chart in 3D view, enable the **Enbel3D** option in the ch
215215
![](3D-Chart_images/3D-Chart_img8.png)
216216

217217

218-
[Click](http://mvc.syncfusion.com/demos/web/chart/doughnut3d) here to view the Doughnut 3DChart online demo sample.
218+
[Click](https://mvc.syncfusion.com/demos/web/chart/doughnut3d) here to view the Doughnut 3DChart online demo sample.
219219

220220

221221
## Configure 3D Chart
@@ -240,7 +240,7 @@ To render the EjChart in 3D view, set the **Enable3D** option as **true** in the
240240
![](3D-Chart_images/3D-Chart_img9.png)
241241

242242

243-
[Click](http://mvc.syncfusion.com/demos/web/chart/column3d) here to view the 3DChart online demo sample.
243+
[Click](https://mvc.syncfusion.com/demos/web/chart/column3d) here to view the 3DChart online demo sample.
244244

245245

246246
### Placing Bar / Column kind of series side-by-side

0 commit comments

Comments
 (0)