From 72783e2e799ef1962c2bac9d7e95141f2a216251 Mon Sep 17 00:00:00 2001 From: gowthamanthavasiyappan <90315799+gowthamanthavasiyappan@users.noreply.github.com> Date: Wed, 7 Jun 2023 16:47:14 +0530 Subject: [PATCH] SEO-172685-JavaScript-redirection-tool-fixes-3 --- js/FileExplorer/Context-Menu.md | 2 +- js/FileExplorer/Getting-Started.md | 6 +++--- js/FileExplorer/How-To.md | 14 +++++++------- js/FileExplorer/Overview.md | 2 +- js/FileExplorer/Toolbar.md | 2 +- js/Gantt/Baseline.md | 2 +- js/Gantt/Columns.md | 4 ++-- js/Gantt/Context-Menu.md | 2 +- js/Gantt/Critical-feature.md | 2 +- js/Gantt/Customizations.md | 12 ++++++------ js/Gantt/Data-Binding.md | 4 ++-- js/Gantt/Duration-units.md | 4 ++-- js/Gantt/Exporting.md | 8 ++++---- js/Gantt/HistogramView.md | 2 +- js/Gantt/Rows.md | 2 +- js/Gantt/Timescale-Modes.md | 2 +- js/Gantt/Toolbar.md | 2 +- js/Gantt/WorkBreakdownStructure.md | 2 +- js/Gantt/Working-time-range.md | 2 +- js/Grid/Cell.md | 4 ++-- js/Grid/Columns.md | 8 ++++---- js/Grid/Data-Binding.md | 8 ++++---- js/Grid/Editing.md | 8 ++++---- js/Grid/Exporting.md | 2 +- js/Grid/Getting-Started.md | 4 ++-- js/Grid/Grouping.md | 2 +- js/Grid/How-to.md | 2 +- js/Grid/Print-Grid.md | 2 +- 28 files changed, 58 insertions(+), 58 deletions(-) diff --git a/js/FileExplorer/Context-Menu.md b/js/FileExplorer/Context-Menu.md index 4433504cc..10a7989a8 100644 --- a/js/FileExplorer/Context-Menu.md +++ b/js/FileExplorer/Context-Menu.md @@ -256,7 +256,7 @@ The following screenshot displays the customization of context menu in FileExplo ![](Context-Menu_images/Context-Menu_img1.png) -For more details about context menu customization, refer the sample [here](http://jsplayground.syncfusion.com/Sync_nz201mh4). +For more details about context menu customization, refer the sample [here](https://jsplayground.syncfusion.com/Sync_nz201mh4). ## Context Menu Events diff --git a/js/FileExplorer/Getting-Started.md b/js/FileExplorer/Getting-Started.md index 317ffd1de..0039bd708 100644 --- a/js/FileExplorer/Getting-Started.md +++ b/js/FileExplorer/Getting-Started.md @@ -56,13 +56,13 @@ Add the below CSS reference in the head section, for the default theme {% endhighlight %} -N> Essential JS widgets having the support for 13 built-in themes, to know more please check [here](http://docs.syncfusion.com/js/theming-in-essential-javascript-components#) +N> Essential JS widgets having the support for 13 built-in themes, to know more please check [here](https://docs.syncfusion.com/js/theming-in-essential-javascript-components) ### Script references The external script dependencies of the FileExplorer widget are, -* [jQuery 1.7.1](http://jquery.com/#) or later versions. +* [jQuery 1.7.1](https://jquery.com/) or later versions. * [jsrender](https://www.jsviews.com/#jsrender) – for grid view template. And the internal script dependencies of the FileExplorer widget are: @@ -146,7 +146,7 @@ So you can add the below Script references in the head section: {% endhighlight %} -N> The above Script and CSS references uses the [CDN links](http://docs.syncfusion.com/js/cdn#). In case if you need to refer the local files then you can copy the corresponding files from the [installed location](http://docs.syncfusion.com/js/installation-and-deployment#) and can include into your application directory +N> The above Script and CSS references uses the [CDN links](https://docs.syncfusion.com/js/cdn). In case if you need to refer the local files then you can copy the corresponding files from the [installed location](https://docs.syncfusion.com/js/installation-and-deployment) and can include into your application directory N> In production we recommend you to use our [Custom script generator](http://docs.syncfusion.com/js/include-only-the-needed-widgets#) to create custom script file with required controls and its dependencies only] diff --git a/js/FileExplorer/How-To.md b/js/FileExplorer/How-To.md index ce4759776..85bb54742 100644 --- a/js/FileExplorer/How-To.md +++ b/js/FileExplorer/How-To.md @@ -122,13 +122,13 @@ Generally web based file explorer needs a service for handling the file related By default, we have provided these server side AJAX handling functionalities in “**C#**” for managing physical filesystem and you can check it with “**FileExplorerOperations**” file, which is available at following Web API service application. -**Web API service**: [http://www.syncfusion.com/downloads/support/directtrac/general/ze/FileExplorer_WebAPI1406113770.zip](http://www.syncfusion.com/downloads/support/directtrac/general/ze/FileExplorer_WebAPI1406113770.zip#) +**Web API service**: [http://www.syncfusion.com/downloads/support/directtrac/general/ze/FileExplorer_WebAPI1406113770.zip](https://www.syncfusion.com/downloads/support/directtrac/general/ze/FileExplorer_WebAPI1406113770.zip) **Note**: In this Web API application, we have provided “**FileOperationController**” file, which contains “**doJSONAction**” action method. When you make AJAX request, “**doJSONAction**” method will be called with AJAX request parameters then it calls the corresponding built-in file handling methods (Read, Search, Download, Upload, Remove, Rename etc.) that are available in our “**FileExplorerOperations**” class based on the “**ActionType**” parameter value. For your convenience, we have prepared a sample based on this and you can find it under following location. -Sample: [http://jsplayground.syncfusion.com/gysvwdcp](http://jsplayground.syncfusion.com/gysvwdcp#) +Sample: [http://jsplayground.syncfusion.com/gysvwdcp](https://jsplayground.syncfusion.com/gysvwdcp) **Note**: First run the provided Web API service, then you will get an URL like ”[http://localhost:51460/](http://localhost:51460/#)“ (Here port number may change). As per port number, replace the specified URL in “**path**” and “**ajaxAction**” of “**FileExplorer**” sample. @@ -140,7 +140,7 @@ Please refer following steps to create a Web API service for FileExplorer using **Step 1**: Create a new ASP.NET Web API project using Visual Studio. -Reference [link](https://docs.microsoft.com/en-us/aspnet/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api#) +Reference [link](https://learn.microsoft.com/en-us/aspnet/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api) **Step 2**: Add "**Syncfusion.EJ**" assembly reference, which is available at following location of your system. @@ -152,7 +152,7 @@ C:\Program Files (x86)\Syncfusion\Essential Studio\\{15.1.0.33}\Assemblies\4.5 This assembly contain built-in file handling methods such as (Read, Search, Download, Upload, Remove, Rename etc.) and it will be available in "**FileExplorerOperations**" class. -**Step 3**: Add “[FileExplorerController.cs](http://www.syncfusion.com/downloads/support/directtrac/general/ze/FileExplorerController-2059296017#)” file in the controller part of Web API project. +**Step 3**: Add “[FileExplorerController.cs](https://www.syncfusion.com/downloads/support/directtrac/general/ze/FileExplorerController-2059296017)” file in the controller part of Web API project. This file, contains action handler methods. Based on the request parameters, it helps to call the built-in file handling methods of **Syncfusion.EJ** assembly. **Step 4**: Add following content in the “**WebApiApplication**” class of “**Global.asax.cs**” file. @@ -399,7 +399,7 @@ It used to search all the matched files and sub-folders in the given folder path You can set the alias name to the root folder of FileExplorer by using [`rootFolderName`](https://help.syncfusion.com/api/js/ejfileexplorer#members:rootfoldername) API. It is used to replace the actual root folder name in the FileExplorer UI. Refer to the below sample to set the alias name for the root folder of FileExplorer. -Sample Link: [link](http://jsplayground.syncfusion.com/psx0vwle) +Sample Link: [link](https://jsplayground.syncfusion.com/psx0vwle) ## Use the FTP connection using FileExplorer @@ -422,7 +422,7 @@ In this FTP Web API application, we have provided “FTPFileOperationController **Step 2:** Include **“FTPFileExplorerOperations”** file in that application. This file contains built-in file handling methods which helps to connect our FileExplorer with FTP service. -[http://www.syncfusion.com/downloads/support/directtrac/general/ze/FTPFileExplorerOperations901960089.zip](http://www.syncfusion.com/downloads/support/directtrac/general/ze/FTPFileExplorerOperations901960089.zip#) +[http://www.syncfusion.com/downloads/support/directtrac/general/ze/FTPFileExplorerOperations901960089.zip](https://www.syncfusion.com/downloads/support/directtrac/general/ze/FTPFileExplorerOperations901960089.zip) **Step 3:** Add **“FileExplorerController.cs”** file in the controller part of FTP project. @@ -528,4 +528,4 @@ ajaxAction: "http://localhost/FileExplorer/FileOperation/doJSONAction" }); We have prepared a demo based on above steps, please refer this. -[http://www.syncfusion.com/downloads/support/directtrac/general/ze/FTPWebAPI1239740174.zip](http://www.syncfusion.com/downloads/support/directtrac/general/ze/FTPWebAPI1239740174.zip#) \ No newline at end of file +[http://www.syncfusion.com/downloads/support/directtrac/general/ze/FTPWebAPI1239740174.zip](https://www.syncfusion.com/downloads/support/directtrac/general/ze/FTPWebAPI1239740174.zip) \ No newline at end of file diff --git a/js/FileExplorer/Overview.md b/js/FileExplorer/Overview.md index e6ce142a9..58333a19d 100644 --- a/js/FileExplorer/Overview.md +++ b/js/FileExplorer/Overview.md @@ -12,7 +12,7 @@ api: /api/js/ejfileexplorer The **Essential JavaScript FileExplorer** is an interface for managing the File system through any web application. It allows the user to perform the most common file operations include browse, open, create, rename, copy, paste or move, delete and file searching. -For a live demo of FileExplorer check the online sample from [here](https://js.syncfusion.com/demos/web/#!/azure/fileexplorer/DefaultFunctionalities) +For a live demo of FileExplorer check the online sample from [here](https://ej2.syncfusion.com/home/#!/azure/fileexplorer/DefaultFunctionalities) N> The FileExplorer control was officially added with the Essential Studio JavaScript package from the v13.1 release only. diff --git a/js/FileExplorer/Toolbar.md b/js/FileExplorer/Toolbar.md index 2fc41e5dd..cae22fb0c 100644 --- a/js/FileExplorer/Toolbar.md +++ b/js/FileExplorer/Toolbar.md @@ -279,7 +279,7 @@ So you can configure the filter type with case sensitivity like below: From the [toolbar items](#toolbar-items) you can see the list of built-in tools to perform the operations. Along with this built-in tools, you can add your custom tool with the custom functionality. -You can find an online demo sample of FileExplorer with custom tool from [here](http://js.syncfusion.com/demos/web/#!/azure/fileexplorer/CustomTool). +You can find an online demo sample of FileExplorer with custom tool from [here](https://ej2.syncfusion.com/home/#!/azure/fileexplorer/CustomTool). {% highlight javascript %} diff --git a/js/Gantt/Baseline.md b/js/Gantt/Baseline.md index f4d5861a6..88e96c897 100644 --- a/js/Gantt/Baseline.md +++ b/js/Gantt/Baseline.md @@ -24,7 +24,7 @@ Baseline is used to describe the original plan of the task and it can be the sam {% endhighlight %} -[Click](http://js.syncfusion.com/demos/web/#!/bootstrap/gantt/schedulingconcepts/baseline) here to view the online demo sample for baselines in Gantt. +[Click](https://ej2.syncfusion.com/home/#!/bootstrap/gantt/schedulingconcepts/baseline) here to view the online demo sample for baselines in Gantt. The following screenshot shows the baseline in Gantt control. diff --git a/js/Gantt/Columns.md b/js/Gantt/Columns.md index 84f0d157e..fe3dbf248 100644 --- a/js/Gantt/Columns.md +++ b/js/Gantt/Columns.md @@ -53,9 +53,9 @@ It is possible to format a column using [`load`](/api/js/ejgantt#events:load) ev }); {% endhighlight %} -Note: For more numeric format strings, please refer to this [link](https://msdn.microsoft.com/library/dwhawy9k(v=vs.100).aspx). +Note: For more numeric format strings, please refer to this [link](https://learn.microsoft.com/en-us/previous-versions/dotnet/netframework-4.0/dwhawy9k(v=vs.100)?redirectedfrom=MSDN). -For more date format strings, please refer to this [link](https://msdn.microsoft.com/library/az4se3k1(v=vs.100).aspx). +For more date format strings, please refer to this [link](https://learn.microsoft.com/en-us/previous-versions/dotnet/netframework-4.0/az4se3k1(v=vs.100)?redirectedfrom=MSDN). ## Column Resizing diff --git a/js/Gantt/Context-Menu.md b/js/Gantt/Context-Menu.md index ab37feeb0..837e1bbfa 100644 --- a/js/Gantt/Context-Menu.md +++ b/js/Gantt/Context-Menu.md @@ -146,4 +146,4 @@ The screenshot of the custom context menu items in Gantt control is as follows. ![](/js/Gantt/Context-Menu_images/Context-Menu_img3.png) -[Click](http://js.syncfusion.com/demos/web/#!/bootstrap/gantt/contextmenu/customcontextmenu) here to view the online demo sample for custom context menu in Gantt. +[Click](https://ej2.syncfusion.com/home/#!/bootstrap/gantt/contextmenu/customcontextmenu) here to view the online demo sample for custom context menu in Gantt. diff --git a/js/Gantt/Critical-feature.md b/js/Gantt/Critical-feature.md index 5033c02c0..ccf49d0b0 100644 --- a/js/Gantt/Critical-feature.md +++ b/js/Gantt/Critical-feature.md @@ -38,7 +38,7 @@ You can enable/disable the critical path in Gantt by using toolbar button, and t ![JavaScript Gantt toolbar icons](criticalfeature_images/criticalfeature_img1.jpeg) -[Click](http://js.syncfusion.com/demos/web/#!/bootstrap/gantt/schedulingconcepts/criticalpath) here to view the online demo sample for critical path in Gantt. +[Click](https://ej2.syncfusion.com/home/#!/bootstrap/gantt/schedulingconcepts/criticalpath) here to view the online demo sample for critical path in Gantt. ## Using Method diff --git a/js/Gantt/Customizations.md b/js/Gantt/Customizations.md index 7bb83328e..0130bf390 100644 --- a/js/Gantt/Customizations.md +++ b/js/Gantt/Customizations.md @@ -92,7 +92,7 @@ The following code example shows how to define template for taskbars in Gantt. The DOM structure and class names mentioned in the above code snippet is mandatory for providing the editing support in custom templates. -[Click](http://js.syncfusion.com/demos/web/#!/bootstrap/gantt/customizations/taskbartemplate) here to view the online demo sample for Taskbar templates in Gantt. +[Click](https://ej2.syncfusion.com/home/#!/bootstrap/gantt/customizations/taskbartemplate) here to view the online demo sample for Taskbar templates in Gantt. The following screenshot shows the template for taskbars in Gantt. @@ -186,7 +186,7 @@ The following code example explains how to map custom templates to task labels. {% endhighlight %} -You can find the online demo sample for task label templates in Gantt [here](http://js.syncfusion.com/demos/web/#!/bootstrap/gantt/customizations/tasklabeltemplate) +You can find the online demo sample for task label templates in Gantt [here](https://ej2.syncfusion.com/home/#!/bootstrap/gantt/customizations/tasklabeltemplate) The following screenshot shows Gantt with task label templates. @@ -299,7 +299,7 @@ The default dependency tooltip in Gantt can be customized by using [`predecessor The following screenshot show the output of above code example. ![](/js/Gantt/Customization_images/Customization_img8.png) -You can find the JS playground sample for dependency tooltip template [here](http://jsplayground.syncfusion.com/Sync_f5fvhwfi). +You can find the JS playground sample for dependency tooltip template [here](https://jsplayground.syncfusion.com/Sync_f5fvhwfi). ### Cell tooltip @@ -361,7 +361,7 @@ TreeGrid part tooltip can also be customized using [`cellTooltipTemplate`](/api/ {% endhighlight %} ![](/js/Gantt/Customization_images/Customization_img5.png) -You can find the online demo sample for tooltip templates for taskbars [here](http://js.syncfusion.com/demos/web/#!/bootstrap/gantt/customizations/tooltiptemplate) +You can find the online demo sample for tooltip templates for taskbars [here](https://ej2.syncfusion.com/home/#!/bootstrap/gantt/customizations/tooltiptemplate) ### Taskbar Editing Tooltip @@ -419,7 +419,7 @@ Taskbar editing tooltip can be customized by using [`taskbarEditingTooltipTempla The below screenshot shows the output of above code example. ![](/js/Gantt/Customization_images/Customization_img6.png) -You can find the JS playground sample for this property [here](http://jsplayground.syncfusion.com/Sync_khndhguw). +You can find the JS playground sample for this property [here](https://jsplayground.syncfusion.com/Sync_khndhguw). #### Customize progress bar editing tooltip @@ -451,4 +451,4 @@ Progress bar editing tooltip can be customized by using [`progressbarTooltipTemp The below screenshot shows the output of above code example. ![](/js/Gantt/Customization_images/Customization_img7.png) -You can find the JS playground sample for this property [here](http://jsplayground.syncfusion.com/Sync_aakdzajo). +You can find the JS playground sample for this property [here](https://jsplayground.syncfusion.com/Sync_aakdzajo). diff --git a/js/Gantt/Data-Binding.md b/js/Gantt/Data-Binding.md index 06e0696e5..766de3442 100644 --- a/js/Gantt/Data-Binding.md +++ b/js/Gantt/Data-Binding.md @@ -229,7 +229,7 @@ The following screenshot shows the output of the above steps. ![](/js/Gantt/Data-Binding_images/Data-Binding_img2.png) -You can find the online demo sample for binding self-referential data [here](http://js.syncfusion.com/demos/web/#!/bootstrap/gantt/databinding/selfreference) +You can find the online demo sample for binding self-referential data [here](https://ej2.syncfusion.com/home/#!/bootstrap/gantt/databinding/selfreference) ## Remote data @@ -337,4 +337,4 @@ $("#GanttContainer").ejGantt({ {% endhighlight %} -You can find the online demo sample of Gantt with virtualization mode [here](https://js.syncfusion.com/demos/web/#!/bootstrap/gantt/databinding/performance). +You can find the online demo sample of Gantt with virtualization mode [here](https://ej2.syncfusion.com/home/#!/bootstrap/gantt/databinding/performance). diff --git a/js/Gantt/Duration-units.md b/js/Gantt/Duration-units.md index 1105cc8dd..50a9b113f 100644 --- a/js/Gantt/Duration-units.md +++ b/js/Gantt/Duration-units.md @@ -62,7 +62,7 @@ $("#GanttContainer").ejGantt({ The below sample explains the tasks’ duration unit in Gantt. -[Duration Unit](http://js.syncfusion.com/demos/web/#!/bootstrap/gantt/schedulingconcepts/durationunits) +[Duration Unit](https://ej2.syncfusion.com/home/#!/bootstrap/gantt/schedulingconcepts/durationunits) The below screen shot shows different duration unit support in Gantt control. @@ -99,4 +99,4 @@ ej.Gantt.Locale["en-US"] = { N> **durationUnitTexts** property is used to display the unit of duration in columns and taskbar tooltips. N> **durationUnitEditText** property is used to save the edited duration unit value on editing action. -[Click](http://js.syncfusion.com/demos/web/#!/bootstrap/gantt/schedulingconcepts/durationunits) here to view the online demo sample for mapping the duration units. \ No newline at end of file +[Click](https://ej2.syncfusion.com/home/#!/bootstrap/gantt/schedulingconcepts/durationunits) here to view the online demo sample for mapping the duration units. \ No newline at end of file diff --git a/js/Gantt/Exporting.md b/js/Gantt/Exporting.md index caef6761f..b608c83b3 100644 --- a/js/Gantt/Exporting.md +++ b/js/Gantt/Exporting.md @@ -244,7 +244,7 @@ The following code snippets shows how to bind `ServerExcelQueryCellInfo` event i {% endhighlight %} -[Click](http://js.syncfusion.com/demos/web/#!/bootstrap/gantt/export/conditionalformatting) here to view the online demo sample with above code example. +[Click](https://ej2.syncfusion.com/home/#!/bootstrap/gantt/export/conditionalformatting) here to view the online demo sample with above code example. N> Refer this [link](https://help.syncfusion.com/cr/aspnetmvc/Syncfusion.XlsIO.IExtendedFormat.html) to know more about what are the properties are available in Excel cell and it's type values. @@ -338,9 +338,9 @@ The following code snippets shows how to bind `ServerPdfQueryCellInfo` event in {% endhighlight %} -[Click](http://js.syncfusion.com/demos/web/#!/bootstrap/gantt/export/conditionalformatting) here to view the online demo sample with above code example. +[Click](https://ej2.syncfusion.com/home/#!/bootstrap/gantt/export/conditionalformatting) here to view the online demo sample with above code example. -N> Refer this [link](http://help.syncfusion.com/cr/cref_files/aspnetmvc/Syncfusion.EJ.Export~Syncfusion.EJ.Export.PdfTreeGridCellStyle_members.html) to know more about what are the properties are available in PDF cell and it's type values. +N> Refer this [link](https://help.syncfusion.com/cr/cref_files/aspnetmvc/Syncfusion.EJ.Export~Syncfusion.EJ.Export.PdfTreeGridCellStyle_members.html) to know more about what are the properties are available in PDF cell and it's type values. ### Customize PDF taskbar @@ -426,4 +426,4 @@ The following code snippets shows how to bind `ServerPdfQueryTaskbarInfo` event {% endhighlight %} -[Click](http://js.syncfusion.com/demos/web/#!/bootstrap/gantt/export/conditionalformatting) here to view the online demo sample with above code example. +[Click](https://ej2.syncfusion.com/home/#!/bootstrap/gantt/export/conditionalformatting) here to view the online demo sample with above code example. diff --git a/js/Gantt/HistogramView.md b/js/Gantt/HistogramView.md index 337d7ccb4..07a053630 100644 --- a/js/Gantt/HistogramView.md +++ b/js/Gantt/HistogramView.md @@ -122,7 +122,7 @@ The following screenshot shows the resource histogram with project view Gantt. ![](/js/Gantt/HistogramView_images/HistogramView_1.png) Please find our online demo sample for further reference -[ResourceHistogram](https://js.syncfusion.com/demos/web/#!/bootstrap/gantt/resourcehistogram) +[ResourceHistogram](https://ej2.syncfusion.com/home/#!/bootstrap/gantt/resourcehistogram) ### Synchronize with resource view The following code snippet shows how to synchronize the resource histogram view Gantt with resource view Gantt. diff --git a/js/Gantt/Rows.md b/js/Gantt/Rows.md index df935ed43..380ba8ed6 100644 --- a/js/Gantt/Rows.md +++ b/js/Gantt/Rows.md @@ -153,7 +153,7 @@ The following screenshot depicts a row drag and drop in the Gantt widget. ![](/js/Gantt/Rows_images/Rows_img4.png) -[Click](http://js.syncfusion.com/demos/web/#!/bootstrap/gantt/rowdraganddrop) here to view the online demo sample for row drag and drop in Gantt. +[Click](https://ej2.syncfusion.com/home/#!/bootstrap/gantt/rowdraganddrop) here to view the online demo sample for row drag and drop in Gantt. ### Customizing drag tooltip diff --git a/js/Gantt/Timescale-Modes.md b/js/Gantt/Timescale-Modes.md index 207f5c539..f43969177 100644 --- a/js/Gantt/Timescale-Modes.md +++ b/js/Gantt/Timescale-Modes.md @@ -266,7 +266,7 @@ $("#GanttContainer").ejGantt({ ![Rounding off timescale](Timescale-Modes_images/Timescale-Modes_img6.png) -[Click](http://js.syncfusion.com/demos/web/#!/bootstrap/gantt/schedulingconcepts/timescalemodes) here to view the timescale modes in Gantt. +[Click](https://ej2.syncfusion.com/home/#!/bootstrap/gantt/schedulingconcepts/timescalemodes) here to view the timescale modes in Gantt. ## Customize automatic timescale update action diff --git a/js/Gantt/Toolbar.md b/js/Gantt/Toolbar.md index fa5034c73..027f8a9a3 100644 --- a/js/Gantt/Toolbar.md +++ b/js/Gantt/Toolbar.md @@ -130,4 +130,4 @@ To insert EJ Controls in Gantt toolbar we need to initiate the control in the [` ![](/js/Gantt/Toolbar_images/Toolbar_img2.png) -[Click](http://js.syncfusion.com/demos/web/#!/bootstrap/gantt/customizations/toolbartemplate) here to view the demo sample for custom toolbar item. \ No newline at end of file +[Click](https://ej2.syncfusion.com/home/#!/bootstrap/gantt/customizations/toolbartemplate) here to view the demo sample for custom toolbar item. \ No newline at end of file diff --git a/js/Gantt/WorkBreakdownStructure.md b/js/Gantt/WorkBreakdownStructure.md index 892ace9be..529557824 100644 --- a/js/Gantt/WorkBreakdownStructure.md +++ b/js/Gantt/WorkBreakdownStructure.md @@ -26,7 +26,7 @@ The below screenshot depicts the output of above code example. ![](/js/Gantt/WorkBreakdownStructure_images/wbs_img1.png) -[Click](http://js.syncfusion.com/demos/web/#!/bootstrap/gantt/schedulingconcepts/workbreakdownstrcture) here to view the online demo sample for WBS in Gantt. +[Click](https://ej2.syncfusion.com/home/#!/bootstrap/gantt/schedulingconcepts/workbreakdownstrcture) here to view the online demo sample for WBS in Gantt. diff --git a/js/Gantt/Working-time-range.md b/js/Gantt/Working-time-range.md index f2b69b68f..6cd930f22 100644 --- a/js/Gantt/Working-time-range.md +++ b/js/Gantt/Working-time-range.md @@ -31,7 +31,7 @@ N> 2. [`dayWorkingTime`](/api/js/ejgantt#members:dayworkingtime) property is use The below demo explains the working time range in Gantt. -[Working Time Range](http://js.syncfusion.com/demos/web/#!/bootstrap/gantt/schedulingconcepts/workingtimerange) +[Working Time Range](https://ej2.syncfusion.com/home/#!/bootstrap/gantt/schedulingconcepts/workingtimerange) The following screen shot shows working time range in Gantt control. diff --git a/js/Grid/Cell.md b/js/Grid/Cell.md index cd52588f0..3d19e79b3 100644 --- a/js/Grid/Cell.md +++ b/js/Grid/Cell.md @@ -192,7 +192,7 @@ You can add the [custom attribute](https://help.syncfusion.com/api/js/ejgrid#mem Based on custom attribute you can customize the style and appearance of the `td` element or handling jQuery functionalities. -You can use JsRender syntax in the template.For more information about JsRender syntax, please refer to [this link](http://www.jsviews.com/#jsrapi "the link"). +You can use JsRender syntax in the template.For more information about JsRender syntax, please refer to [this link](https://www.jsviews.com/#jsrapi "the link"). The following code example describes the above behavior. @@ -259,7 +259,7 @@ When you move the cursor over the particular cell it provides an information abo **Template** -HTML templates can be specified in the [tooltip ](https://help.syncfusion.com/api/js/ejgrid#members:columns-tooltip "tooltip ") property of the particular column cell as a string (HTML element) or ID of the template's HTML element.You can use JsRender syntax in the template. For more information about JsRender syntax, please refer to [this link](http://www.jsviews.com/#jsrapi "this link"). +HTML templates can be specified in the [tooltip ](https://help.syncfusion.com/api/js/ejgrid#members:columns-tooltip "tooltip ") property of the particular column cell as a string (HTML element) or ID of the template's HTML element.You can use JsRender syntax in the template. For more information about JsRender syntax, please refer to [this link](https://www.jsviews.com/#jsrapi "this link"). N> It's a standard way to enclose the template within the `script` tag with `type` as "text/x-jsrender". diff --git a/js/Grid/Columns.md b/js/Grid/Columns.md index 5e7d25c2f..92420e502 100644 --- a/js/Grid/Columns.md +++ b/js/Grid/Columns.md @@ -297,7 +297,7 @@ The following output is displayed as a result of the above code example. [Format](https://help.syncfusion.com/api/js/ejgrid#members:columns-format "Format") is the process of customizing the particular column data with specified jQuery recognized globalize formats, such as currency, numeric, decimal, percentage or dates. The globalize format can be specified by using [`format`](https://help.syncfusion.com/api/js/ejgrid#members:columns-format "format") property of [`columns`](https://help.syncfusion.com/api/js/ejgrid#members:columns "columns"). -The [`format`](https://help.syncfusion.com/api/js/ejgrid#members:columns-format "format") value should be wrapped within "{0:" and "}". (For ex: "{0:C3}"). The [data format](https://github.com/jquery/globalize/tree/v0.1.1#format "data format") strings are available for the Date and Number types. +The [`format`](https://help.syncfusion.com/api/js/ejgrid#members:columns-format "format") value should be wrapped within "{0:" and "}". (For ex: "{0:C3}"). The [data format](https://github.com/globalizejs/globalize/tree/v0.1.1#format "data format") strings are available for the Date and Number types. The following code example describes the above behavior. @@ -362,7 +362,7 @@ The following output is displayed as a result of the above code example. ## Column width customization by external action -To change the columns width by external action use [`setWidthToColumns`](https://help.syncfusion.com/api/js/ejGrid#methods:setwidthtocolumns "setWidthToColumns") method. +To change the columns width by external action use [`setWidthToColumns`](https://help.syncfusion.com/api/js/ejgrid#methods:setwidthtocolumns "setWidthToColumns") method. The following code example describes the above behavior. @@ -702,7 +702,7 @@ The following output is displayed as a result of the above code example. HTML templates can be specified in the [`template`](https://help.syncfusion.com/api/js/ejgrid#members:columns-template "template") property of the particular column as a string (HTML element) or ID of the template's HTML element. -You can use JsRender syntax in the template. For more information about JsRender syntax, please refer [this link](http://www.jsviews.com/#jsrapi "this link"). +You can use JsRender syntax in the template. For more information about JsRender syntax, please refer [this link](https://www.jsviews.com/#jsrapi "this link"). For template manipulation using JavaScript, either you can use JsRender [helper](https://www.jsviews.com/#helpers) function or [`templateRefresh`](https://help.syncfusion.com/api/js/ejgrid#events:templaterefresh "templateRefresh") grid event. For more information on [`templateRefresh`](https://help.syncfusion.com/api/js/ejgrid#events:templaterefresh "templateRefresh") event, refer [this link](https://help.syncfusion.com/js/grid/how-to#display-other-syncfusion-controls-in-grid-columns "this link"). @@ -849,7 +849,7 @@ The following output is displayed as a result of the above code example. [Expression](https://help.syncfusion.com/api/js/ejgrid#members:columns-template "Expression") column is possible only for the [`template`](https://help.syncfusion.com/api/js/ejgrid#members:columns-template "template") column. -You can use JsRender syntax in the template.For more information about JsRender syntax, please refer to [this link](http://www.jsviews.com/#jsrapi "the link"). +You can use JsRender syntax in the template.For more information about JsRender syntax, please refer to [this link](https://www.jsviews.com/#jsrapi "the link"). N> This expression column is supported at read only mode. diff --git a/js/Grid/Data-Binding.md b/js/Grid/Data-Binding.md index 85259c367..ca743df02 100644 --- a/js/Grid/Data-Binding.md +++ b/js/Grid/Data-Binding.md @@ -16,7 +16,7 @@ The Grid control uses [`ej.DataManager`](https://help.syncfusion.com/js/datamana 3. HTML table N> 1. To update the dataSource after Grid rendered, use `dataSource` method of Grid. Refer to this [link](https://help.syncfusion.com/api/js/ejgrid#members:datasource) for more information. -N> 2. DateTime values, retrieved from server-end or database, will be converted based on the local time zone. To avoid the local time zone conversion, refer this knowledge base [link](https://www.syncfusion.com/kb/8613/how-to-convert-dates-to-utc-format). +N> 2. DateTime values, retrieved from server-end or database, will be converted based on the local time zone. To avoid the local time zone conversion, refer this knowledge base [link](https://support.syncfusion.com/kb/article/7605/how-to-convert-dates-to-utc-format). ## Local Data @@ -74,7 +74,7 @@ The following output is displayed as a result of the above code example. N> 1. There is no in-built support to bind the XML data to the grid. But you can achieve this requirement with the help of [custom adaptor](https://help.syncfusion.com/js/datamanager/data-adaptors#custom-adaptor) concept. -N> 2. Refer this [Knowledge Base link](https://www.syncfusion.com/kb/3377/how-to-process-xml-data-from-server-using-datamanager-and-bound-to-grid) for bounding XML data to grid using custom adaptor. +N> 2. Refer this [Knowledge Base link](https://support.syncfusion.com/kb/article/3562/how-to-process-xml-data-from-server-using-datamanager-and-bound-to-grid) for bounding XML data to grid using custom adaptor. N> 3. To update the dataSource after Grid rendered, use [`dataSource`](https://help.syncfusion.com/api/js/ejgrid#methods:datasource) method of grid. Either JSON or DataManager can be passed to [`dataSource`](https://help.syncfusion.com/api/js/ejgrid#methods:datasource) method. ## Remote Data @@ -126,7 +126,7 @@ The following code example describes the above behavior. $(function () { var dataManager = ej.DataManager({ - url:["http://services.odata.org/V4/Northwind/Northwind.svc/Regions/"](http://services.odata.org/V4/Northwind/Northwind.svc/Regions/#), + url:["http://services.odata.org/V4/Northwind/Northwind.svc/Regions/"](https://services.odata.org/V4/Northwind/Northwind.svc/Regions/), adaptor: new ej.ODataV4Adaptor() }); @@ -138,7 +138,7 @@ The following code example describes the above behavior. {% endhighlight %} -{% seealso %}For further details about OData service please refer to [this link](http://www.odata.org/#). {% endseealso %} +{% seealso %}For further details about OData service please refer to [this link](https://www.odata.org/). {% endseealso %} ### WebAPI diff --git a/js/Grid/Editing.md b/js/Grid/Editing.md index eede3a106..a4993b0e2 100644 --- a/js/Grid/Editing.md +++ b/js/Grid/Editing.md @@ -15,7 +15,7 @@ Deletion of the record is possible by selecting the required row and clicking on By default edit action is enabled while double click on the record.To prevent this behavior, set [`editSettings.allowEditOnDblClick `](https://help.syncfusion.com/api/js/ejgrid#members:editsettings-alloweditondblclick "editSettings.allowEditOnDblClick ") property as `false`. -The primary key for the data source should be defined in [`columns`](https://help.syncfusion.com/api/js/ejgrid#members:columns "columns") definition, for editing to work properly. In [`columns`](https://help.syncfusion.com/api/js/ejgrid#members:columns "columns") definition, particular primary column's [`isPrimaryKey`](https://help.syncfusion.com/api/js/ejgrid#members:columns-isprimarykey "isPrimaryKey") property should be set to `true`. Refer to the Knowledge base [link](http://www.syncfusion.com/kb/2675/cant-edit-any-row-except-the-first-row-in-grid# "link") for more information. +The primary key for the data source should be defined in [`columns`](https://help.syncfusion.com/api/js/ejgrid#members:columns "columns") definition, for editing to work properly. In [`columns`](https://help.syncfusion.com/api/js/ejgrid#members:columns "columns") definition, particular primary column's [`isPrimaryKey`](https://help.syncfusion.com/api/js/ejgrid#members:columns-isprimarykey "isPrimaryKey") property should be set to `true`. Refer to the Knowledge base [link](https://support.syncfusion.com/kb/article/2934/cant-edit-any-row-except-the-first-row-in-grid "link") for more information. N> 1. In grid, the primary key column will be automatically set to read only while editing the row, but you can specify primary key column value while adding a new record. @@ -737,7 +737,7 @@ Users can start editing by clicking a cell and typing data into it. Edited cell N> [`getBatchChanges`](https://help.syncfusion.com/api/js/ejgrid#methods:getbatchchanges "getBatchChanges") method of grid holds the unsaved record changes. N> Using [`getDataByIndex`](https://help.syncfusion.com/api/js/ejgrid#methods:getdatabyindex "getDataByIndex") method we can get the row data based on index. -N> Refer the KB [link](http://www.syncfusion.com/kb/3016/how-to-suppress-grid-confirmation-messages# "link") for "How to suppress grid confirmation messages" in batch mode. +N> Refer the KB [link](https://support.syncfusion.com/kb/article/3065/how-to-suppress-grid-confirmation-messages) for "How to suppress grid confirmation messages" in batch mode. The following code example describes the above behavior. @@ -1086,7 +1086,7 @@ equalTo Requires the element to be the same as another. -Grid supports all the standard validation methods of jQuery, please refer to the jQuery validation documentation [link](http://jqueryvalidation.org/documentation/# "link") for more information. +Grid supports all the standard validation methods of jQuery, please refer to the jQuery validation documentation [link](https://jqueryvalidation.org/documentation/# "link") for more information. The following code example describes the above behavior. @@ -1125,7 +1125,7 @@ The following output is displayed as a result of the above code example. ![jQuery validation of editing in Javascript grid](Editing_images/Editing_img18.png) -N> 1. Refer this [Knowledge Base link](https://www.syncfusion.com/kb/6817/how-to-perform-server-side-validation-in-grid) to perform server side validation in Grid. +N> 1. Refer this [Knowledge Base link](https://support.syncfusion.com/kb/article/6216/how-to-perform-server-side-validation-in-grid) to perform server side validation in Grid. N> 2. Use [`editFormValidate`](https://help.syncfusion.com/api/js/ejgrid#methods:editFormValidate "editFormValidate") to programmatically trigger validation of edit form. diff --git a/js/Grid/Exporting.md b/js/Grid/Exporting.md index 03fcffc0d..22f18e4ad 100644 --- a/js/Grid/Exporting.md +++ b/js/Grid/Exporting.md @@ -50,7 +50,7 @@ $(function () { ## External Export in Grid -To export the grid by external action use [`export `](https://help.syncfusion.com/api/js/ejgrid#methods:export "export ") method, refer the KB [`link `](https://www.syncfusion.com/kb/4335/how-to-export-grid-data-to-excel-word-and-pdf-formats-on-external-action "link "). +To export the grid by external action use [`export `](https://help.syncfusion.com/api/js/ejgrid#methods:export "export ") method, refer the KB [`link `](https://support.syncfusion.com/kb/article/4020/how-to-export-grid-data-to-excel-word-and-pdf-formats-on-external-action "link "). ## Server configuration diff --git a/js/Grid/Getting-Started.md b/js/Grid/Getting-Started.md index 17cd44cd4..334d5b1bf 100644 --- a/js/Grid/Getting-Started.md +++ b/js/Grid/Getting-Started.md @@ -13,7 +13,7 @@ api: /api/js/ejgrid The grid control has the following list of external JavaScript dependencies. -* [jQuery](http://jquery.com/) 1.7.1 and later versions +* [jQuery](https://jquery.com/) 1.7.1 and later versions * [jsRender](https://github.com/borismoore/jsrender) - to render the templates Refer to the internal dependencies in the following table. @@ -145,7 +145,7 @@ To get started, you can use the `ej.web.all.min.js` file that encapsulates all t -N> In production, we highly recommend you to use our [custom script generator](https://help.syncfusion.com/js/custom-script-generator) 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) in your server. +N> In production, we highly recommend you to use our [custom script generator](https://help.syncfusion.com/js/custom-script-generator) to create custom script file with required controls and its dependencies only. Also, to reduce the file size further please use [GZip compression](https://web.dev/optimizing-content-efficiency-optimize-encoding-and-transfer/?hl=en) in your server. For themes, you can use the `ej.web.all.min.css` CDN link from the code example given. To add the themes in your application, please refer to [this link](https://help.syncfusion.com/js/theming-in-essential-javascript-components). diff --git a/js/Grid/Grouping.md b/js/Grid/Grouping.md index e1b31c0d4..69309d214 100644 --- a/js/Grid/Grouping.md +++ b/js/Grid/Grouping.md @@ -237,7 +237,7 @@ The following output is displayed as a result of the above code example. Using [`captionFormat`](https://help.syncfusion.com/api/js/ejgrid#members:groupsettings-captionformat "captionFormat") property of [`groupSettings`](https://help.syncfusion.com/api/js/ejgrid#members:groupsettings "groupSettings") you can render any type of JsRender templates or customizing the group caption text. -You can use JsRender syntax in the template.For more information about JsRender syntax, please refer [the link](http://www.jsviews.com/#jsrapi "the link"). +You can use JsRender syntax in the template.For more information about JsRender syntax, please refer [the link](https://www.jsviews.com/#jsrapi "the link"). N> 1. It's a standard way to enclose the `template` within the `script` tag with `type` as "text/x-jsrender". N> 2. Using locale property of `GroupCaptionFormat`, you can only customize the default group caption text. diff --git a/js/Grid/How-to.md b/js/Grid/How-to.md index 1074a894e..5f829bba5 100644 --- a/js/Grid/How-to.md +++ b/js/Grid/How-to.md @@ -90,7 +90,7 @@ public class SignalHub: Hub ## Copy data from Excel to Grid -Copy data from Excel to Grid is possible by converting Excel data to JSON data and then binding it to the Grid. Details are covered in this [blog](https://www.syncfusion.com/blogs/post/Copying-and-Pasting-Excel-Sheet-Data-to-Grid-ASPNET-MVC.aspx) post. +Copy data from Excel to Grid is possible by converting Excel data to JSON data and then binding it to the Grid. Details are covered in this [blog](https://www.syncfusion.com/blogs/post/essential-js-2-copying-and-pasting-excel-sheet-data-to-grid-asp-net-mvc.aspx) post. ## Prevent/Maintain persistence of properties diff --git a/js/Grid/Print-Grid.md b/js/Grid/Print-Grid.md index 1e16c73dc..3cc829b3f 100644 --- a/js/Grid/Print-Grid.md +++ b/js/Grid/Print-Grid.md @@ -43,7 +43,7 @@ Some of the print options are not configurable through the JavaScript code. You * [Chrome](https://support.google.com/chrome/answer/1379552?hl=en) * [Firefox](https://support.mozilla.org/en-US/kb/how-print-web-pages-firefox) * [Safari](http://www.mintprintables.com/print-tips/adjust-margins-osx/) -* [IE](http://www.helpteaching.com/help/print/index.htm) +* [IE](https://www.helpteaching.com/help/print/index.htm) ## Print on external Button Click