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/Accessibility.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
@@ -18,19 +18,19 @@ The WAI-ARIA specification suite defines a set of roles, states, and properties
18
18
19
19
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.
20
20
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).
22
22
23
23
The basic steps for converting a common widget into accessible are as follows:
24
24
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.
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).
34
34
35
35
{% highlight html %}
36
36
@@ -42,7 +42,7 @@ i. The above code will make the button widget accessible, as it was defined with
42
42
ii. The property aria-describedby has been assigned with some related button text that denotes the button description to be notified to the user.
43
43
44
44
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/).
Copy file name to clipboardExpand all lines: aspnetmvc/Autocomplete/Data-Binding.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
@@ -208,7 +208,7 @@ The below following types are used to bind remote datasource to an AutoComplete
208
208
209
209
###OData
210
210
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.
212
212
213
213
214
214
{% highlight html %}
@@ -225,7 +225,7 @@ Run the code to get the following output
225
225
226
226
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.
227
227
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/).
229
229
230
230
{% highlight html %}
231
231
@@ -291,7 +291,7 @@ Run the code to get the following output
291
291
292
292
### WebAPI
293
293
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.
Copy file name to clipboardExpand all lines: aspnetmvc/Barcode/Getting-Started.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
@@ -36,7 +36,7 @@ By default, ASP.NET MVC Barcode renders gray scale colors with predefined Quiet
36
36
37
37
### Refer Assemblies
38
38
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)
40
40
41
41
Add the following assemblies in your MVC application for using Barcode control:
0 commit comments