Skip to content

DOCINFRA-2341_merged_using_automation #450

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions aspnet/DatePicker/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ To create a web application and to add necessary assemblies you can use the help

CSS file

* [ej.web.all.min.css](http://cdn.syncfusion.com/{{ site.releaseversion }}/js/web/flat-azure/ej.web.all.min.css) - includes all widgets styles (To know more about theme refer [Theming in Essential JavaScript Component](http://help.syncfusion.com/js/theming-in-essential-javascript-components#))
* [ej.web.all.min.css](http://cdn.syncfusion.com/{{ site.releaseversion }}/js/web/flat-azure/ej.web.all.min.css) - includes all widgets styles (To know more about theme refer [Theming in Essential JavaScript Component](https://help.syncfusion.com/js/theming-in-essential-javascript-components))

External script files

* [jQuery](http://jquery.com/#) (from the version 1.7.1 to 3.1.0)
* [jQuery](https://jquery.com/) (from the version 1.7.1 to 3.1.0)

N> From V13.4.0.53 onwards, jQuery.globalize.min.js file has been replaced with our script file ej.globalize.min.js to support the globalization for our widgets. For version lower than 13.4.0.53, refer jQuery.globalize.min.js. jQuery.easing external dependency has been removed from version 14.3.0.49 onwards. Kindly include this jQuery.easing dependency for versions lesser than 14.3.0.49 in order to support animation effects.

Expand Down Expand Up @@ -51,7 +51,7 @@ You can make use of **ej.web.all.min.js** file which encapsulates all EJWEB comp

* [ej.web.all.min.js](http://cdn.syncfusion.com/{{ site.releaseversion }}/js/web/ej.web.all.min.js) - includes all web widgets.

N> In production, we highly recommend you to use our [custom script generator](http://helpjs.syncfusion.com/js/include-only-the-needed-widgets#) to create custom script file with required controls and its dependencies only. Also to reduce the file size further please use [GZip compression](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/optimize-encoding-and-transfer?hl=en#text-compression-with-gzip) in your server.
N> In production, we highly recommend you to use our [custom script generator](https://help.syncfusion.com/js/overview) to create custom script file with required controls and its dependencies only. Also to reduce the file size further please use [GZip compression](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/optimize-encoding-and-transfer?hl=en#text-compression-with-gzip) in your server.

Below is a simple site master page with required CSS and script references added to create EJWEB DatePicker in ASP.NET WEB application

Expand Down Expand Up @@ -137,11 +137,11 @@ In ASP.NET to bind all the data sources to their server controls, we can use Pag

{% endhighlight %}

N> Existing EJWEB DatePicker instance can be created by [jQuery.data()](http://api.jquery.com/jQuery.data/#) and you can control the API's of DatePicker behavior.
N> Existing EJWEB DatePicker instance can be created by [jQuery.data()](https://api.jquery.com/jQuery.data/) and you can control the API's of DatePicker behavior.

## DatePicker events

You can handle the all available [Client side events](http://help.syncfusion.com/js/api/ejdatepicker#events) in Essential JavaScript DatePicker. Refer the below code example to use the client side event in EJWEB DatePicker
You can handle the all available [Client side events](https://help.syncfusion.com/api/js/ejdatepicker#events) in Essential JavaScript DatePicker. Refer the below code example to use the client side event in EJWEB DatePicker


{% highlight html %}
Expand Down Expand Up @@ -169,4 +169,4 @@ In Code Behind page,

{% endhighlight %}

Also, EJWEB DatePicker components have support with server side events please refer the [Server Side Events](http://help.syncfusion.com/aspnet/datepicker/server-side-events) section to know about available server side events in this component.
Also, EJWEB DatePicker components have support with server side events please refer the [Server Side Events](https://help.syncfusion.com/aspnet/datepicker/server-side-events) section to know about available server side events in this component.
16 changes: 8 additions & 8 deletions aspnet/Grid/Data-Binding.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ The following output is displayed as a result of the above code example.
![ASPNET Grid Data Binding](Data-Binding_images/Data-Binding_img1.png)

{% seealso %}
Refer to this [link](https://docs.microsoft.com/en-us/previous-versions/dz12d98w(v=vs.140)) for more information on SqlDataSource.
Refer to this [link](https://learn.microsoft.com/en-us/previous-versions/dz12d98w(v=vs.140)) for more information on SqlDataSource.
{% endseealso %}


Expand Down Expand Up @@ -168,7 +168,7 @@ The following output is displayed as a result of the above code example.
![ASPNET Grid ObjectDataSource](Data-Binding_images/Data-Binding_img2.png)

{% seealso %}
Refer to this [link](https://docs.microsoft.com/en-us/previous-versions/9a4kyhcx(v=vs.140)) for more information on ObjectDataSource.
Refer to this [link](https://learn.microsoft.com/en-us/previous-versions/9a4kyhcx(v=vs.140)) for more information on ObjectDataSource.
{% endseealso %}

### XmlDataSource
Expand Down Expand Up @@ -208,7 +208,7 @@ The following output is displayed as a result of the above code example.
![ASPNET Grid XmlDataSource](Data-Binding_images/Data-Binding_img3.png)

{% seealso %}
Refer to this [link](https://docs.microsoft.com/en-us/previous-versions/494y92bs(v=vs.140)) for more information on XmlDataSource
Refer to this [link](https://learn.microsoft.com/en-us/previous-versions/494y92bs(v=vs.140)) for more information on XmlDataSource
{% endseealso %}


Expand Down Expand Up @@ -267,7 +267,7 @@ The following output is displayed as a result of the above code example.

## IEnumerable

The Grid can be bound with either non-generic collection or generic collection that implements [IEnumerable](https://docs.microsoft.com/en-us/dotnet/api/system.collections.ienumerable?redirectedfrom=MSDN&view=net-6.0) interface. It can be assigned to Grid’s `DataSource` property.
The Grid can be bound with either non-generic collection or generic collection that implements [IEnumerable](https://learn.microsoft.com/en-us/dotnet/api/system.collections.ienumerable?redirectedfrom=MSDN&view=net-6.0) interface. It can be assigned to Grid’s `DataSource` property.

The following code example describes the above behavior.

Expand Down Expand Up @@ -351,7 +351,7 @@ The following output is displayed as a result of the above code example.
![ASPNET Grid EntityFramework](Data-Binding_images/Data-Binding_img6.png)

{% seealso %}
For more information on creating and consuming Entity Framework, please refer this [link]( http://www.asp.net/web-forms/overview/older-versions-getting-started/getting-started-with-ef/the-entity-framework-and-aspnet-getting-started-part-1)
For more information on creating and consuming Entity Framework, please refer this [link](https://learn.microsoft.com/en-us/aspnet/web-forms/overview/older-versions-getting-started/getting-started-with-ef/the-entity-framework-and-aspnet-getting-started-part-1)
{% endseealso %}

## LINQ to SQL
Expand Down Expand Up @@ -396,7 +396,7 @@ The following output is displayed as a result of the above code example.


{% seealso %}
For more information on using LINQ to SQL please refer to the [link](http://weblogs.asp.net/scottgu/using-linq-to-sql-part-1)
For more information on using LINQ to SQL please refer to the [link](https://weblogs.asp.net/scottgu/using-linq-to-sql-part-1)
{% endseealso %}

## DataTable
Expand Down Expand Up @@ -472,7 +472,7 @@ ITypedList provides functionality to discover the schema for a bind-able list, w

To implement ITypedList binding, create a generic type named class that derives from ITypedList interface. Define the named class based on properties descriptor of the Grid Model class, to return list according to the custom implementation.

For more information on ITypedList interface you can refer [here](https://docs.microsoft.com/en-us/dotnet/api/system.componentmodel.itypedlist?redirectedfrom=MSDN&view=net-6.0)
For more information on ITypedList interface you can refer [here](https://learn.microsoft.com/en-us/dotnet/api/system.componentmodel.itypedlist?redirectedfrom=MSDN&view=net-6.0)
Create a collection of ITypedList and bind it to Grid using `DataSource` property.

The following code example describes the above behavior.
Expand Down Expand Up @@ -594,7 +594,7 @@ The following output is displayed as a result of the above code example.

WCF Data Services is a component of the .NET Framework that enables you to create services that use the Open Data Protocol (OData) to expose and consume data over the Web or intranet by using the semantics of representational state transfer (REST).

To create WCF Data Service in your web application refer [here](https://docs.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2015/data-tools/walkthrough-creating-a-wcf-data-service-with-wpf-and-entity-framework?view=vs-2015&redirectedfrom=MSDN)
To create WCF Data Service in your web application refer [here](https://learn.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2015/data-tools/walkthrough-creating-a-wcf-data-service-with-wpf-and-entity-framework?view=vs-2015&redirectedfrom=MSDN)

To consume OData service, set the service link to the `URL` property of `DataManager` which is a nested property of Grid Control.

Expand Down
2 changes: 1 addition & 1 deletion aspnet/Installation/Installation-Errors.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ You are attempting to use a Trial unlock key to unlock the licensed installer.

### Suggested solution

Only a licensed unlock key can unlock a licensed installer. So, to unlock the Licensed installer, use the Licensed unlock key. To generate the licensed unlock key, refer to [this](http://syncfusion.com/kb/2326) article.
Only a licensed unlock key can unlock a licensed installer. So, to unlock the Licensed installer, use the Licensed unlock key. To generate the licensed unlock key, refer to [this](https://support.syncfusion.com/kb/article/2757/how-to-generate-syncfusion-setup-unlock-key-from-syncfusion-support-account) article.


## License has expired
Expand Down