Skip to content
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
4 changes: 2 additions & 2 deletions PHP/Kanban/dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords: kanban dependency files

The Kanban control has the following list of external JavaScript dependencies.

* [`jQuery 1.7.1`](http://jquery.com) and later versions
* [`jQuery 1.7.1`](https://jquery.com/) and later versions
* [`jsRender`](https://github.com/borismoore/jsrender) - to render the templates

Refer to the internal dependencies in the following table.
Expand Down Expand Up @@ -159,4 +159,4 @@ N> Kanban uses one or more sub-controls, therefore refer the `ej.web.all.min.js`

To get the real appearance of the Kanban, the dependent CSS file `ej.web.all.min.css` (which includes styles of all the widgets) should also needs to be referred.

N> Uncompressed version of library files are also available which is used for development or debugging purpose and can be generated from the custom script [here](http://csg.syncfusion.com).
N> Uncompressed version of library files are also available which is used for development or debugging purpose and can be generated from the custom script [here](https://csg.syncfusion.com/).
10 changes: 5 additions & 5 deletions PHP/Kanban/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords: ejkanban, kanban, kanban widget, js kanban

To get start with the Kanban control using PHP wrapper classes, either of the following prerequisites needs to be installed in your machine to deploy and run those samples locally.

* [PHP tools for Visual Studio](https://visualstudiogallery.msdn.microsoft.com/6eb51f05-ef01-4513-ac83-4c5f50c95fb5)
* [PHP tools for Visual Studio](https://marketplace.visualstudio.com/items?itemName=DEVSENSE.PHPToolsforVisualStudio)
* [Xampp](https://www.apachefriends.org/download.html)

In this section, let's see how to create, deploy and run the Kanban samples using Xampp server.
Expand Down Expand Up @@ -133,9 +133,9 @@ N> 2.It is mandatory to define the render() method at last as given in the above

## Data Binding

`Data binding` in the Kanban is achieved by using the [ej.DataManager](http://help.syncfusion.com/js/datamanager/overview) that supports both RESTful JSON data services binding and local JSON array binding. To set the data source to Kanban, the `dataSource` property is assigned with the instance of the `ej.DataManger`.
`Data binding` in the Kanban is achieved by using the [ej.DataManager](https://help.syncfusion.com/js/datamanager/overview) that supports both RESTful JSON data services binding and local JSON array binding. To set the data source to Kanban, the `dataSource` property is assigned with the instance of the `ej.DataManger`.

For demonstration purpose, [Northwind OData service](http://mvc.syncfusion.com/Services/Northwnd.svc/) is used in this tutorial. Refer to the following code example.
For demonstration purpose, [Northwind OData service](https://mvc.syncfusion.com/Services/Northwnd.svc/) is used in this tutorial. Refer to the following code example.

{% highlight html %}

Expand All @@ -160,7 +160,7 @@ For demonstration purpose, [Northwind OData service](http://mvc.syncfusion.com/S

{% endhighlight %}

N> ODataAdaptor is the default adaptor used within DataManager. While binding to other web services, proper [data adaptor](http://help.syncfusion.com/js/datamanager/data-adaptors) needs to be set for `adaptor` option of DataManager.
N> ODataAdaptor is the default adaptor used within DataManager. While binding to other web services, proper [data adaptor](https://help.syncfusion.com/js/datamanager/data-adaptors) needs to be set for `adaptor` option of DataManager.

## Mapping Values

Expand Down Expand Up @@ -229,7 +229,7 @@ N> `primaryKey` field is mandatory for “Drag and Drop” ,”Selection” and

## Adding Filters

Filters allows to filter the collection of cards from `dataSource` which meets the predefined `query` in the filters collection. To enable filtering, define `filterSettings` collection with display `text` and [ej.Query](http://help.syncfusion.com/js/datamanager/query).
Filters allows to filter the collection of cards from `dataSource` which meets the predefined `query` in the filters collection. To enable filtering, define `filterSettings` collection with display `text` and [ej.Query](https://help.syncfusion.com/js/datamanager/query).

{% highlight html %}

Expand Down
2 changes: 1 addition & 1 deletion PHP/Kanban/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The Kanban control is an efficient way to visualize the workflow at each stage a

Some important features of the Kanban control are:

* Data sources - Bind the Kanban control with an array of JSON objects or [`ej.DataManager`](http://help.syncfusion.com/js/datamanager/overview) which support OData and remote web service binding.
* Data sources - Bind the Kanban control with an array of JSON objects or [`ej.DataManager`](https://help.syncfusion.com/js/datamanager/overview) which support OData and remote web service binding.
* Swim lane – Supports Swim lane grouping.
* Filters – Supports filtering based on user Query.
* Editing - Offers card editing, inserting, and deleting using Dialog.
Expand Down
2 changes: 1 addition & 1 deletion PHP/LinearGauge/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Refer the required scripts files in your PHP page as mentioned below in order to

{% endhighlight %}

In the above code, ej.web.all.min.js script reference has been added for demonstration purpose. It is not recommended to use this for deployment purpose, as its file size is larger since it contains all the widgets. Instead, you can use [`CSG`](http://csg.syncfusion.com/) utility to generate a custom script file with the required widgets for deployment purpose.
In the above code, ej.web.all.min.js script reference has been added for demonstration purpose. It is not recommended to use this for deployment purpose, as its file size is larger since it contains all the widgets. Instead, you can use [`CSG`](https://csg.syncfusion.com/) utility to generate a custom script file with the required widgets for deployment purpose.

## Initialize LinearGauge

Expand Down
8 changes: 4 additions & 4 deletions PHP/Maps/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ You can configure an **Essential PHP** Map in simple steps. In this example, you

To use ejMap, refer the following libraries in **HTML** page.

* [jQuery](http://jquery.com/) version 1.10.1 and above,
* [jQuery](https://jquery.com/) version 1.10.1 and above,
* ej.web.all.min
* JsRender

Expand Down Expand Up @@ -54,11 +54,11 @@ Refer the required scripts files in your PHP page as mentioned below in order to

{% endhighlight %}

In the above code, ej.web.all.min.js script reference has been added for demonstration purpose. It is not recommended to use this for deployment purpose, as its file size is larger since it contains all the widgets. Instead, you can use [`CSG`](http://csg.syncfusion.com/) utility to generate a custom script file with the required widgets for deployment purpose.
In the above code, ej.web.all.min.js script reference has been added for demonstration purpose. It is not recommended to use this for deployment purpose, as its file size is larger since it contains all the widgets. Instead, you can use [`CSG`](https://csg.syncfusion.com/) utility to generate a custom script file with the required widgets for deployment purpose.

### Prepare Shape Data

The Shape Data collection describing geographical shape information can be obtained from [GEOJSON format shapes](http://www.syncfusion.com/uploads/user/uploads/Maps_GeoJSON.zip).
The Shape Data collection describing geographical shape information can be obtained from [GEOJSON format shapes](https://www.syncfusion.com/uploads/user/uploads/Maps_GeoJSON.zip).

In this example, USA shape is used as shape data and this shape data JSON string is converted into PHP object using getUSAMap() method.

Expand Down Expand Up @@ -319,4 +319,4 @@ The following screenshot illustrates a map displaying an interactive legend.

![](Getting-Started_images/Getting-Started_img6.png)

The complete code sample can be found [here](http://www.syncfusion.com/uploads/user/directTrac/General/Getting_Started1888184355.zip).
The complete code sample can be found [here](https://www.syncfusion.com/uploads/user/directTrac/General/Getting_Started1888184355.zip).
2 changes: 1 addition & 1 deletion PHP/Maps/Overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Some of the **Maps** control use case scenarios:

* **Layers** - Map is maintained through Layers and it can accommodate one or more layers.
* **Map Providers Support** - Syncfusion Map support map providers such as OpenStreetMap that can be added to any layers in maps.
* **GeoJSON Data Input** - The GeoJSON standard allows you to plot your own shapes using customized data to your maps. You can obtain some of the GeoJSON standard shape information from [GEOJSON format shapes](http://www.syncfusion.com/uploads/user/uploads/Maps_GeoJSON.zip) that can be used as data input for maps.
* **GeoJSON Data Input** - The GeoJSON standard allows you to plot your own shapes using customized data to your maps. You can obtain some of the GeoJSON standard shape information from [GEOJSON format shapes](https://www.syncfusion.com/uploads/user/uploads/Maps_GeoJSON.zip) that can be used as data input for maps.
* **Map Elements Customization** - Map contains a set of elements, including shapes, bubbles, markers, legend, labels and data items that can be visualized with customized appearance showing additional information on the map using data bound data.
* **User Interaction** - Options like zooming, panning and map selection enables the effective interaction on map elements.

Expand Down
2 changes: 1 addition & 1 deletion PHP/NavigationDrawer/navigationdrawer-dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ Should be referred to render the checkbox for the list items using navigation dr
</table>

To get the real appearance of the Navigation Drawer, the dependent CSS file `ej.web.all.min.css` (which includes styles of all the controls) should also needs to be referred.
Note: Uncompressed version of library files are also available which is used for development or debugging purpose and can be generated from the custom script [here](http://csg.syncfusion.com/).
Note: Uncompressed version of library files are also available which is used for development or debugging purpose and can be generated from the custom script [here](https://csg.syncfusion.com/).

4 changes: 2 additions & 2 deletions PHP/installation/Installation-Errors.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This article describes the most common installation errors, as well as the cause
* [License has expired](https://help.syncfusion.com/php/installation/installation-errors#license-has-expired)
* [Unable to find a valid license or trial](https://help.syncfusion.com/php/installation/installation-errors#unable-to-find-a-valid-license-or-trial)
* [Unable to install because of another installation](https://help.syncfusion.com/php/installation/installation-errors#unable-to-install-because-of-another-installation)
* [Unable to install due to controlled folder access](http://help.syncfusion.com/php/installation/installation-errors#unable-to-install-due-to-controlled-folder-access)
* [Unable to install due to controlled folder access](https://help.syncfusion.com/php/installation/installation-errors#unable-to-install-due-to-controlled-folder-access)

## Unlocking the license installer using the trial key

Expand All @@ -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
4 changes: 2 additions & 2 deletions PHP/installation/mac-installer/how-to-download.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Our 30-day trial can be downloaded in two ways.
![Trial and downloads of Syncfusion Essential Studio](images/trial-confirmation.png)

3. With a trial license, only the latest version’s trial installer can be downloaded.
4. After downloading, the Syncfusion PHP trial installer can be unlocked using either the trial unlock key or the Syncfusion registered login credential. More information on generating an unlock key can be found in [this](https://www.syncfusion.com/kb/8069/how-to-generate-unlock-key-for-essentials-studio-products) article.
4. After downloading, the Syncfusion PHP trial installer can be unlocked using either the trial unlock key or the Syncfusion registered login credential. More information on generating an unlock key can be found in [this](https://support.syncfusion.com/kb/article/7053/how-to-generate-unlock-key-for-essentials-studio-products) article.
5. Before the trial expires, you can download the trial installer at any time from your registered account’s [Trials & Downloads](https://www.syncfusion.com/account/manage-trials/downloads) page (as shown in below screenshot.)

![Trial and downloads of Syncfusion Essential Studio](images/trial-download.png)
Expand All @@ -54,7 +54,7 @@ You should initiate an evaluation if you have already obtained our components th

N> If you've already used the trial products and they haven't expired, you won't be able to start the trial for the same product again.

4. After you've started the trial, go to the [Trials & Downloads](https://www.syncfusion.com/account/manage-trials/downloads) page to get the latest version trial installer. You can generate the [unlock key](https://www.syncfusion.com/kb/8069/how-to-generate-unlock-key-for-essentials-studio-products) and [license key](https://help.syncfusion.com/php/licensing/overview) here at any time before the trial period expires. (as shown in below screenshot.)
4. After you've started the trial, go to the [Trials & Downloads](https://www.syncfusion.com/account/manage-trials/downloads) page to get the latest version trial installer. You can generate the [unlock key](https://support.syncfusion.com/kb/article/7053/how-to-generate-unlock-key-for-essentials-studio-products) and [license key](https://help.syncfusion.com/php/licensing/overview) here at any time before the trial period expires. (as shown in below screenshot.)

![License and downloads of Syncfusion Essential Studio](images/start-trial-download-installer.png)

Expand Down
4 changes: 2 additions & 2 deletions PHP/installation/offline-installer/how-to-download.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Our 30-day trial can be downloaded in two ways.
![Trial and downloads of Syncfusion Essential Studio](images/trial-confirmation.png)

3. With a trial license, only the latest version’s trial installer can be downloaded.
4. After downloading, the Syncfusion PHP trial installer can be unlocked using either the trial unlock key or the Syncfusion registered login credential. More information on generating an unlock key can be found in [this](https://www.syncfusion.com/kb/8069/how-to-generate-unlock-key-for-essentials-studio-products) article.
4. After downloading, the Syncfusion PHP trial installer can be unlocked using either the trial unlock key or the Syncfusion registered login credential. More information on generating an unlock key can be found in [this](https://support.syncfusion.com/kb/article/7053/how-to-generate-unlock-key-for-essentials-studio-products) article.
5. Before the trial expires, you can download the trial installer at any time from your registered account’s [Trials & Downloads](https://www.syncfusion.com/account/manage-trials/downloads) page (as shown in below screenshot.)

![Trial and downloads of Syncfusion Essential Studio](images/trial-download.png)
Expand All @@ -54,7 +54,7 @@ You should initiate an evaluation if you have already obtained our components th

N> If you've already used the trial products and they haven't expired, you won't be able to start the trial for the same product again.

4. After you've started the trial, go to the [Trials & Downloads](https://www.syncfusion.com/account/manage-trials/downloads) page to get the latest version trial installer. You can generate the [unlock key](https://www.syncfusion.com/kb/8069/how-to-generate-unlock-key-for-essentials-studio-products) and [license key](https://help.syncfusion.com/php/licensing/overview) here at any time before the trial period expires. (as shown in below screenshot.)
4. After you've started the trial, go to the [Trials & Downloads](https://www.syncfusion.com/account/manage-trials/downloads) page to get the latest version trial installer. You can generate the [unlock key](https://support.syncfusion.com/kb/article/7053/how-to-generate-unlock-key-for-essentials-studio-products) and [license key](https://help.syncfusion.com/php/licensing/overview) here at any time before the trial period expires. (as shown in below screenshot.)

![License and downloads of Syncfusion Essential Studio](images/start-trial-download-installer.png)

Expand Down
2 changes: 1 addition & 1 deletion PHP/installation/offline-installer/how-to-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ The steps below show how to install the Essential Studio PHP installer.

The trial unlock key is only valid for 30 days, and the installer will not accept an expired trial key.

To learn how to generate an unlock key for both trial and licensed products, see [this](https://www.syncfusion.com/kb/2326) Knowledge Base article.
To learn how to generate an unlock key for both trial and licensed products, see [this](https://support.syncfusion.com/kb/article/2757/how-to-generate-syncfusion-setup-unlock-key-from-syncfusion-support-account) Knowledge Base article.

![Product key](images/Step-by-Step-Installation_img3.png)

Expand Down
4 changes: 2 additions & 2 deletions PHP/installation/web-installer/how-to-download.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Our 30-day trial can be downloaded in two ways.
![Trial and downloads of Syncfusion Essential Studio](images/trial-confirmation.png)

3. With a trial license, only the latest version’s trial installer can be downloaded.
4. After downloading, the Syncfusion PHP trial installer can be unlocked using either the trial unlock key or the Syncfusion registered login credential. More information on generating an unlock key can be found in [this](https://www.syncfusion.com/kb/8069/how-to-generate-unlock-key-for-essentials-studio-products) article.
4. After downloading, the Syncfusion PHP trial installer can be unlocked using either the trial unlock key or the Syncfusion registered login credential. More information on generating an unlock key can be found in [this](https://support.syncfusion.com/kb/article/7053/how-to-generate-unlock-key-for-essentials-studio-products) article.
5. Before the trial expires, you can download the trial installer at any time from your registered account’s [Trials & Downloads](https://www.syncfusion.com/account/manage-trials/downloads) page (as shown in below screenshot.)
6. Click the Download (element 1 in the screenshot below) button to get the Syncfusion Essential Studio PHP web installer.

Expand All @@ -53,7 +53,7 @@ You should initiate an evaluation if you have already obtained our components th

N> If you've already used the trial products and they haven't expired, you won't be able to start the trial for the same product again.

4. After you've started the trial, go to the [Trials & Downloads](https://www.syncfusion.com/account/manage-trials/downloads) page to get the latest version trial installer. You can generate the [unlock key](https://www.syncfusion.com/kb/8069/how-to-generate-unlock-key-for-essentials-studio-products) and [license key](https://help.syncfusion.com/php/licensing/overview) here at any time before the trial period expires. (as shown in below screenshot.)
4. After you've started the trial, go to the [Trials & Downloads](https://www.syncfusion.com/account/manage-trials/downloads) page to get the latest version trial installer. You can generate the [unlock key](https://support.syncfusion.com/kb/article/7053/how-to-generate-unlock-key-for-essentials-studio-products) and [license key](https://help.syncfusion.com/php/licensing/overview) here at any time before the trial period expires. (as shown in below screenshot.)

![License and downloads of Syncfusion Essential Studio](images/start-trial-download-installer.png)

Expand Down
Loading