Skip to content

SEO-205214-Image-Alt-Missing-ASP.Net Web Form-Hotfix #587

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

Open
wants to merge 1 commit into
base: hotfix/hotfix-v30.1.37
Choose a base branch
from
Open
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
28 changes: 14 additions & 14 deletions aspnet/Gantt/Editing.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Update the task details through grid cell editing by setting `EditSettings.EditM
{% endhighlight %}

The output of Gantt with cell editing is as follows.
![](Editing_images/Editing_img1.png)
![initialize cell edit mode in Asp.net Gantt editing.](Editing_images/Editing_img1.png)

### Save editing cell

Expand Down Expand Up @@ -116,7 +116,7 @@ Update the task details through edit dialog by setting `EditMode` as `normal`. T

The following screenshot shows the output of `normal` editing.

![](Editing_images/Editing_img2.png)
![initialize Normal edit mode in Asp.net Gannt](Editing_images/Editing_img2.png)

### Define required fields in add/edit dialog

Expand All @@ -139,7 +139,7 @@ In Gantt we can define the editing fields available in add and edit dialogs by u
{% endhighlight %}

The following screenshot show the output of above code example.
![](Editing_images/Editing_img4.png)
![define required fields in add/edit dialog in Asp.net Editing.](Editing_images/Editing_img4.png)

N> Similarly we can define the required fields in add dialog with `AddDialogFields.Field` and `AddDialogFields.EditType` properties.

Expand Down Expand Up @@ -175,7 +175,7 @@ function load(args) {
{% endhighlight %}

The following screenshot show the output of above code example.
![](Editing_images/Editing_img5.png)
![add custom column fields in general tab in Asp.net Editing.](Editing_images/Editing_img5.png)

N> Similarly we can include custom fields in add dialog's General tab by setting `DisplayInGeneralTab` as `true` in `AddDialogFields` collection.

Expand Down Expand Up @@ -273,7 +273,7 @@ In Gantt, we can add, edit, update the task dependencies by mouse interactions,

Task dependency can be added by mouse interactions by connecting connector points in predecessor and successor tasks. The following screen shot shows the add dependency action.

![](Editing_images/Editing_img3.png)
![add dependency in Asp.net Gantt.](Editing_images/Editing_img3.png)

### Edit Dependency

Expand Down Expand Up @@ -306,13 +306,13 @@ function actionBegin(args) {
{% endhighlight %}

The following screen shot shows the dependency edit dialog.
![](Editing_images/Predecessor_Editing_Dialog.png)
![Edit Dependency](Editing_images/Predecessor_Editing_Dialog.png)

### Delete Dependency

Task dependency can be deleted by using edit dialog and [`deleteDependency`](/api/js/ejgantt#methods:deletedependency) method. The following screen shot shows the dependency edit dialog with delete option.

![](Editing_images/Predecessor_Editing_Dialog.png)
![Delete Dependency](Editing_images/Predecessor_Editing_Dialog.png)

[Click](https://asp.syncfusion.com/demos/web/gantt/editing.aspx) here to view the online demo sample for editing in Gantt.

Expand Down Expand Up @@ -378,7 +378,7 @@ The following code snippet explains how to enable delete confirmation message in

{% endhighlight %}

![](Editing_images/deleteConfirmation.png)
![delete confirmation message in Asp.net Gantt.](Editing_images/deleteConfirmation.png)

The above screen shot shows the appearance of delete confirmation message in Gantt.

Expand Down Expand Up @@ -409,12 +409,12 @@ $("#indentTask").click(function () {

The following screenshots shows the output of above code example.

![](Editing_images/Editing_img6.png)
![before indent the task.](Editing_images/Editing_img6.png)

Before Indent
{:.caption}

![](Editing_images/Editing_img7.png)
![after indent the task.](Editing_images/Editing_img7.png)

After Indent
{:.caption}
Expand Down Expand Up @@ -447,12 +447,12 @@ $("#outdentTask").click(function () {

The following screenshots shows the output of above code example.

![](Editing_images/Editing_img6.png)
![before outdent the task.](Editing_images/Editing_img6.png)

Before Outdent
{:.caption}

![](Editing_images/Editing_img8.png)
![after outdent the task.](Editing_images/Editing_img8.png)

After Outdent
{:.caption}
Expand Down Expand Up @@ -485,11 +485,11 @@ $("#deleteTask").click(function () {

The following screenshots shows the output of above code example.

![](Editing_images/Editing_img6.png)
![before delete the tadk.](Editing_images/Editing_img6.png)
Before Delete
{:.caption}

![](Editing_images/Editing_img9.png)
![after delete the task. ](Editing_images/Editing_img9.png)
After Delete
{:.caption}

Expand Down
6 changes: 3 additions & 3 deletions aspnet/Grid/How-to/Add-comments-in-the-exported-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Using the Range property and AddComment method of the XlsIO IRange Class, we wil

The following screenshot displays the exported grid with comments added to cells

![](Add-comments-in-the-Exported-file_images/Add-comments-in-the-Exported-file_img1.png)
![adding comments in excel sheet in Asp.net Grid.](Add-comments-in-the-Exported-file_images/Add-comments-in-the-Exported-file_img1.png)

## Adding Comments in Exported Word document

Expand Down Expand Up @@ -105,7 +105,7 @@ We can add comments to the word document using the AppendComment method in the W

The following screenshot shows the exported grid with comments added to the document.

![](Add-comments-in-the-Exported-file_images/Add-comments-in-the-Exported-file_img2.png)
![adding comments in exported Word document in ASp.net Gantt.](Add-comments-in-the-Exported-file_images/Add-comments-in-the-Exported-file_img2.png)

## Adding Comments in Exported PDF document

Expand Down Expand Up @@ -164,4 +164,4 @@ We can add comments to a PDF documents using the annotation support provided in

The following screenshot displays the exported grid with comments added to cells

![](Add-comments-in-the-Exported-file_images/Add-comments-in-the-Exported-file_img3.png)
![adding comments in exported pdf document in Asp.net Grid.](Add-comments-in-the-Exported-file_images/Add-comments-in-the-Exported-file_img3.png)
6 changes: 3 additions & 3 deletions aspnet/Slider/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ASP.NET Slider control provides support to display a Slider within the web pa

The following screenshot demonstrates the functionality of Slider control. By selecting mobile model in the dropdown, you can purchase a mobile at any rate specified in the MobilePriceSlider. In addition, you can also specify the number of mobiles required by using the MobileCountSlider. Simultaneously, you can observe the changes in the Mobile Price and Count by using Sliders.

![](Getting-Started_images/Getting-Started_img1.png)
![create your first Slider in ASP.NET](Getting-Started_images/Getting-Started_img1.png)



Expand Down Expand Up @@ -201,7 +201,7 @@ function show() {

The following screenshot illustrates the final output in the Slider creation.

![](Getting-Started_images/Getting-Started_img2.png)
![create a Slider ASP.NET WebForms.](Getting-Started_images/Getting-Started_img2.png)



Expand Down Expand Up @@ -461,7 +461,7 @@ function calculate() {

The following screenshot displays the calculated EMI amount by using Slider.

![](Getting-Started_images/Getting-Started_img3.png)
![create emi calculator in ASP.NET Slider.](Getting-Started_images/Getting-Started_img3.png)