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
6 changes: 3 additions & 3 deletions aspnetmvc/DropDownList/HowTo.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
layout: post
title: How to - DropDownList control for Syncfusion ASP.NET MVC
description: How To Section in DropDownList control for Syncfusion ASP.NET MVC
description: How To Section in Syncfusion Essential ASP.NET MVC DropDownList control, its elements, features and more.
platform: ejmvc
control: DropDownList
documentation: ug
---

# How To
# How To Section in ASP.NET MVC DropDownList

## Add check all option in popup list?

Expand Down Expand Up @@ -81,7 +81,7 @@ You can use HeaderTemplate property to add any HTML element. Code snippet to add

The following screenshot exhibits the output of the above code,

![](HowTo_images/HowTo_img2.jpeg)
![ASP.NET MVC DropDownList How To output](HowTo_images/HowTo_img2.jpeg)

## Render the DropDownList in Partial View using normal mode

Expand Down
6 changes: 3 additions & 3 deletions aspnetmvc/Grid/Hierarchy-Grid.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
layout: post
title: Hierarchical binding | Grid | ASP.NET MVC | Syncfusion
description: How to bind the hierarchical data
description: How to bind the hierarchical data in Syncfusion Essential ASP.NET MVC Grid Control, its elements, and more.
platform: ejmvc
control: Grid
documentation: ug
---

# Hierarchical Bindings
# Hierarchical Bindings in ASP.NET MVC Grid

Hierarchical binding can be used to create the Grid with parent and child relation, this facilitate you to view the child records for a particular row by clicking on the Expander button present in first column of each grid row. This can be enabled by defining `ChildGrid` and `QueryString`.

Expand Down Expand Up @@ -78,7 +78,7 @@ public partial class GridController : Controller

{% endtabs %}

![](Hierarchy-Grid_images/HierarchyGrid_img1.png)
![ASP.NET MVC Grid Hierarchy](Hierarchy-Grid_images/HierarchyGrid_img1.png)


## Expand or collapse all child's
Expand Down
24 changes: 12 additions & 12 deletions aspnetmvc/Grid/Row.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
layout: post
title: Row with Grid widget for Syncfusion Essential MVC
description: How to use and customize the grid row
description: How to use and customize the row in Syncfusion Essential ASP.NET MVC Grid Control, its elements, and more.
platform: ejmvc
control: Grid
documentation: ug
---
# Row
# Row support in ASP.NET MVC Grid
It represents the record details that are fetched from the datasource.

## Row hover
Expand Down Expand Up @@ -47,7 +47,7 @@ The following code example describes the previous behavior.
{% endtabs %}
The following output is displayed as a result of the previous code example.

![](Row_images/Row_img1.png)
![ASP.NET MVC Grid Row](Row_images/Row_img1.png)

## Details template

Expand Down Expand Up @@ -127,7 +127,7 @@ The following code example describes the previous behavior.
{% endtabs %}
The following output is displayed as a result of the previous code example.

![](Row_images/Row_img2.png)
![ASP.NET MVC Grid template](Row_images/Row_img2.png)

## Row Template

Expand Down Expand Up @@ -219,7 +219,7 @@ namespace MVCSampleBrowser.Controllers

The following output is displayed as a result of the previous code example.

![](Row_images/Row_img3.png)
![ASP.NET MVC Grid Row Template](Row_images/Row_img3.png)

## Alternate row styling

Expand Down Expand Up @@ -262,7 +262,7 @@ By default its value is `true`, so the following code example describes the how
{% endtabs %}
The following output is displayed as a result of the previous code example.

![](Row_images/Row_img4.png)
![ASP.NET MVC Grid Alternate row styling](Row_images/Row_img4.png)


## Drag-and-Drop
Expand Down Expand Up @@ -330,12 +330,12 @@ The following code example describes the previous behavior.

The following output is displayed before reordering rows.

![](Row_images/Row_img5.png)
![ASP.NET MVC Grid Reorder](Row_images/Row_img5.png)
{:Before Drop}

The following output is displayed after reordering rows.

![](Row_images/Row_img6.png)
![ASP.NET MVC Grid after drop](Row_images/Row_img6.png)
{:After Drop}

### Grid-to-grid
Expand Down Expand Up @@ -448,12 +448,12 @@ The following code example describes the previous behavior.

The following output is displayed before dropping grid rows.

![](Row_images/Row_img7.png)
![ASP.NET MVC Grid Before Drop](Row_images/Row_img7.png)
{:Before Drop}

The following output is displayed after dropping grid rows.

![](Row_images/Row_img8.png)
![ASP.NET MVC Grid After Drop](Row_images/Row_img8.png)
{:After Drop}

### Grid-to-custom control
Expand Down Expand Up @@ -543,12 +543,12 @@ function rowDropHandler(args) {

The following output is displayed before dropping the rows on form.

![](Row_images/Row_img9.png)
![ASP.NET MVC Grid before dropping the rows on form](Row_images/Row_img9.png)
{:Before Drop}

The following output is displayed after dropping the rows on form.

![](Row_images/Row_img10.png)
![ASP.NET MVC Grid after dropping the rows on form](Row_images/Row_img10.png)
{:After Drop}

N> The default behavior of drag and drop between grid or any other controls is as cut and paste. For copy and paste behavior specify the drag behavior in the `DragBehavior` property of `RowDropSettings` as "DragBehavior.Copy".