Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 9bf91b4

Browse files
Merge pull request #341 from syncfusion-content/SEO-172685-aspnet-mvc-redirection-fixes-5
Merged #341 into hotfix
2 parents 363a1a8 + 228f927 commit 9bf91b4

23 files changed

+45
-45
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/Configuration-and-Deployment.md‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ documentation: ug
1313

1414
### Overview
1515

16-
The [Bower](http://bower.io) is a package manager for the Web. Syncfusion Bower package allows to use the Syncfusion JavaScript Widgets in an efficient way.
16+
The [Bower](https://bower.io/) is a package manager for the Web. Syncfusion Bower package allows to use the Syncfusion JavaScript Widgets in an efficient way.
1717

1818
I>Syncfusion JavaScript Bower package is available in [public Git Repository](https://github.com/syncfusion/JavaScript-Widgets) and also registered as Syncfusion-JavaScript in the Bower registry.
1919

2020
### Bower Installation
2121

22-
To configure the Bower in your machine you need to install [node, npm](http://nodejs.org) and [git](http://git-scm.org). For more information to configure the Bower package, please refer to the official site for [bower](http://bower.io/#install-bower).
22+
To configure the Bower in your machine you need to install [node, npm](https://nodejs.org/) and [git](https://git-scm.com/). For more information to configure the Bower package, please refer to the official site for [bower](https://bower.io/#install-bower).
2323
Syncfusion JavaScript Bower package can be configured in the following ways.
2424

2525
1. Using command prompt.
@@ -92,7 +92,7 @@ Syncfusion JavaScript npm package is available in [public Git Repository](https:
9292

9393
### Syncfusion npm Installation
9494

95-
To configure the npm, install the [Nodejs](http://nodejs.org/) and update the npm. For more information to configure the npm packages refer to the official site of [npm](https://docs.npmjs.com/getting-started/installing-node).
95+
To configure the npm, install the [Nodejs](https://nodejs.org/) and update the npm. For more information to configure the npm packages refer to the official site of [npm](https://docs.npmjs.com/getting-started/installing-node/).
9696

9797
The syncfusion-javascript npm package can be configured by the following ways.
9898

@@ -171,7 +171,7 @@ npm update
171171

172172
### Overview
173173

174-
JSPM is a package manager for [SystemJS universal module loader](https://github.com/systemjs/systemjs), built on top of the dynamic [ES6 module loader](https://github.com/ModuleLoader/es6-module-loader). This can load any module format (ES6, AMD, CommonJS and globals) directly from any registry such as npm and GitHub with flat versioned dependency management. Any custom registry endpoints can be created through the Registry API.
174+
JSPM is a package manager for [SystemJS universal module loader](https://github.com/systemjs/systemjs), built on top of the dynamic [ES6 module loader](https://github.com/ModuleLoader/es-module-loader). This can load any module format (ES6, AMD, CommonJS and globals) directly from any registry such as npm and GitHub with flat versioned dependency management. Any custom registry endpoints can be created through the Registry API.
175175

176176
### Syncfusion JavaScript JSPM
177177

‎aspnetmvc/Dependencies.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2457,4 +2457,4 @@ The complete list of EJ icons are listed in the following table. You have to use
24572457

24582458
## CDN
24592459

2460-
In case, if the users need to make use of the CDN links instead of the normal above specified scripts and stylesheet references in their application, then have a look at the link [here](http://help.syncfusion.com/js/cdn).
2460+
In case, if the users need to make use of the CDN links instead of the normal above specified scripts and stylesheet references in their application, then have a look at the link [here](https://help.syncfusion.com/js/cdn).

‎aspnetmvc/Introduction.md‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ The **Syncfusion Essential Studio for ASP.NET MVC** is a set of server-side wrap
1616
## How to best read this User Guide
1717

1818
* The best way to get started is to read the common "[Getting Started](/aspnetmvc/getting-started)" document for the component that you would like to start using first. The "Getting Started" guide gives enough information that you need to know before starting to write code. This is the only section that is recommended to read end-to-end before starting to write code, all the other information can be referred when needed.
19-
* Once you get familiar with the basics of using the component, the next step will be to start integrating the component into your application. A good starting point will be to refer to the code snippets in the [online sample browser](https://mvc.syncfusion.com/demos/web) that contains hundreds of code samples, it is very likely that you will find a code sample that resembles your intended usage scenario.
19+
* Once you get familiar with the basics of using the component, the next step will be to start integrating the component into your application. A good starting point will be to refer to the code snippets in the [online sample browser](https://ej2.syncfusion.com/home/aspnetmvc.html#platform) that contains hundreds of code samples, it is very likely that you will find a code sample that resembles your intended usage scenario.
2020
* After integrating the component into your application using one of the sample code snippets as a starting point, it is likely that you would need additional information on specific features and API. The best option will be to search a specific topic using the search box that is available at the top of the user guide.
2121
* Another valuable resource is the [API reference](https://help.syncfusion.com/cr/aspnetmvc/dociohelper) that provides detailed information on the object hierarchy as well as the settings available on every object.
2222

2323
## Additional Help Resources
2424

25-
* The [Knowledge Base](https://www.syncfusion.com/kb/aspnetmvc) section contains responses to some of the most common questions that other customers have asked us before. So this will be a good place to search for topics that are not covered in the user guide.
26-
* Similar to the [Knowledge Base](https://www.syncfusion.com/kb/aspnetmvc), the [forum](https://www.syncfusion.com/forums/aspnetmvc) section also contains responses to questions that other customers have asked us before.
25+
* The [Knowledge Base](https://support.syncfusion.com/kb/retiredproducts/category/89) section contains responses to some of the most common questions that other customers have asked us before. So this will be a good place to search for topics that are not covered in the user guide.
26+
* Similar to the [Knowledge Base](https://support.syncfusion.com/kb/retiredproducts/category/89), the [forum](https://www.syncfusion.com/forums/aspnetmvc) section also contains responses to questions that other customers have asked us before.
2727

2828
## Create a Support Incident
2929

30-
If you are still not able to find the information that you are looking for in the self-help resources mentioned above, please [contact us](https://www.syncfusion.com/support) by creating a support ticket.
30+
If you are still not able to find the information that you are looking for in the self-help resources mentioned above, please [contact us](https://support.syncfusion.com/) by creating a support ticket.
3131

‎aspnetmvc/RadialMenu/Getting-Started.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ documentation: ug
1111

1212
## Creating your first RadialMenu in MVC application
1313

14-
1. Create an MVC Project and add necessary assemblies, scripts and CSS files given in [MVC-Getting Started](http://help.syncfusion.com/aspnetmvc/getting-started#manual-integration-of-syncfusion-mvc-components-into-newexisting-mvc-applications) Documentation.
14+
1. Create an MVC Project and add necessary assemblies, scripts and CSS files given in [MVC-Getting Started](https://help.syncfusion.com/aspnetmvc/getting-started#manual-integration-of-syncfusion-mvc-components-into-newexisting-mvc-applications) Documentation.
1515

1616
2. Add RadialMenu control using the helper from EJ namespace.
1717

@@ -35,7 +35,7 @@ documentation: ug
3535

3636
The following steps guide you to add a **Radial Menu** control.
3737

38-
Create a MVC Project and add the necessary DLL and scripts with the help of the given [MVC Getting Started](http://help.syncfusion.com/aspnetmvc/getting-started) documentation.
38+
Create a MVC Project and add the necessary DLL and scripts with the help of the given [MVC Getting Started](https://help.syncfusion.com/aspnetmvc/getting-started) documentation.
3939

4040
Add the following code snippet in corresponding View page to render the RadialMenu.
4141

‎aspnetmvc/RadialMenu/radialmenu-dependencies.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ documentation: ug
1111

1212
The external script dependencies of the RadialMenu component are,
1313

14-
* [jQuery 1.7.1](http://jquery.com/) and later versions.
14+
* [jQuery 1.7.1](https://jquery.com/) and later versions.
1515

1616
And the internal script dependencies of the RadialMenu widget are:
1717

‎aspnetmvc/RadialSlider/Getting-Started.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ documentation: ug
1111

1212
## Creating your first RadialSlider in MVC application
1313

14-
1. Create an MVC Project and add necessary assemblies, scripts and CSS files given in [MVC-Getting Started](http://help.syncfusion.com/aspnetmvc/getting-started#manual-integration-of-syncfusion-mvc-components-into-newexisting-mvc-applications) Documentation.
14+
1. Create an MVC Project and add necessary assemblies, scripts and CSS files given in [MVC-Getting Started](https://help.syncfusion.com/aspnetmvc/getting-started#manual-integration-of-syncfusion-mvc-components-into-newexisting-mvc-applications) Documentation.
1515

1616
2. Add RadialSlider control using the helper from EJ namespace.
1717

‎aspnetmvc/RadialSlider/radialslider-dependencies.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ documentation: ug
1010

1111
The external script dependencies of the RadialSlider component are,
1212

13-
* [jQuery 1.7.1](http://jquery.com/) and later versions.
13+
* [jQuery 1.7.1](https://jquery.com/) and later versions.
1414

1515
And the internal script dependencies of the RadialSlider widget are:
1616

‎aspnetmvc/RadioButton/Getting-Started.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ The whole purpose of Radio Button is to enable you to make one selection, only o
504504

505505
You can make only one selection from the group of radio buttons. All radio buttons in that group need to share the same name. This tells the form handler, the name of the group, and the value of the selected Radio Button.
506506

507-
Radio Button is [mutually exclusive](http://en.wikipedia.org/wiki/Mutually_exclusive_events); that is, when you select a radio button, any previously selected radio buttons in the same group become deselected.
507+
Radio Button is [mutually exclusive](https://en.wikipedia.org/wiki/Mutually_exclusive_events); that is, when you select a radio button, any previously selected radio buttons in the same group become deselected.
508508

509509
For example, when you want to choose between a groups of colors, you can create Radio Buttons for each color. You can give all the radio buttons the same name, for example, "preferred_color", but you must give each radio button a different value, for example, "red".
510510

‎aspnetmvc/RangeNavigator/User-Interactions.md‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ EjRangeNavigator provides highlighting supports to the intervals on mouse hover.
3131
![](User-Interactions_images/User-Interactions_img1.png)
3232

3333

34-
[Click](http://mvc.syncfusion.com/demos/web/rangenavigator/rangehighlight) here to view the highlight and selections online demo sample.
34+
[Click](https://ej2.syncfusion.com/home/aspnetmvc.html#platform) here to view the highlight and selections online demo sample.
3535

3636
### Customize the highlight style
3737

@@ -82,7 +82,7 @@ EjRangeNavigator provides selection supports to the intervals by, clicking and d
8282
![](User-Interactions_images/User-Interactions_img3.png)
8383

8484

85-
[Click](http://mvc.syncfusion.com/demos/web/rangenavigator/rangehighlight) here to view the highlight and selections online demo sample.
85+
[Click](https://ej2.syncfusion.com/home/aspnetmvc.html#platform) here to view the highlight and selections online demo sample.
8686

8787
### Customize the selection style
8888

@@ -149,4 +149,4 @@ To customize the selected intervals, use `Color`, `Border` and `Opacity` options
149149

150150
![](User-Interactions_images/User-Interactions_img5.png)
151151

152-
[Click](http://mvc.syncfusion.com/demos/web/rangenavigator/rangescrollbar) here to view scrollbar online demo sample.
152+
[Click](https://ej2.syncfusion.com/home/aspnetmvc.html#platform) here to view scrollbar online demo sample.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /