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
10 changes: 5 additions & 5 deletions aspnetmvc/DataManager/IEnumerable-IQueryable.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
---
layout: post
title: IEnumerable-IQueryable | DataManager | ASP.NET MVC | Syncfusion
description: IEnumerable-IQueryable
description: Learn here about IEnumerable IQueryable in Syncfusion ASP.NET MVC DataManager Control, its elements, and more.
platform: ejmvc
control: DataManager
documentation: ug
keywords : IEnumerable-IQueryable, IQueryable, IEnumerable

---

# IEnumerable
# IEnumerable in ASP.NET MVC DataManager

IEnumerable will execute **select** query on server side, load data in-memory on client side and then filter data.IEnumerable can be used for querying data from in-memory collections like List, Array etc.

Expand Down Expand Up @@ -55,7 +55,7 @@ Refer the below given code to bind data from IEnumerable list through datamanage

The result of above code example is illustrated as follows.

![](IEnumerable-IQueryable_images/Databinding.png)
![ASP.NET MVC DataManager Databinding](IEnumerable-IQueryable_images/Databinding.png)

## Filtering Sorting and Searching with IEnumerable

Expand Down Expand Up @@ -85,7 +85,7 @@ Refer the below given code to perform these actions

The result of above code example is illustrated as follows.

![](IEnumerable-IQueryable_images/Query.png)
![ASP.NET MVC DataManager Query](IEnumerable-IQueryable_images/Query.png)

## IQueryable

Expand Down Expand Up @@ -151,4 +151,4 @@ Refer the below code for performing these actions using IQueryable in Grid

The result of above code example is illustrated as follows.

![](IEnumerable-IQueryable_images/IQueryable.png)
![ASP.NET MVC DataManager IQueryable](IEnumerable-IQueryable_images/IQueryable.png)
14 changes: 7 additions & 7 deletions aspnetmvc/Diagram/Data-Binding.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
layout: post
title: Populate Diagram from external data sources
description: How to populate the Diagram from the local data, remote data, or HTML tables?
title: Data Binding support in ASP.NET MVC Diagram Control | Syncfusion
description: Learn here about data binding support in Syncfusion Essential ASP.NET MVC Diagram Control, its elements, and more.
platform: ejmvc
control: Diagram
documentation: ug
---

# Data Binding
# Data Binding in ASP.NET MVC Diagram

* Diagram can be populated with the nodes and connectors based on the information provided from an external data source.
* Diagram exposes its specific data-related properties allowing you to specify the data source fields from where the node information has to be retrieved from.
Expand Down Expand Up @@ -92,7 +92,7 @@ public Array GetDataSource()
{% endhighlight %}
{% endtabs %}

![](Data-Binding_images/Data-Binding_img1.png)
![ASP.NET MVC Diagram Local Data](Data-Binding_images/Data-Binding_img1.png)

## Remote Data

Expand Down Expand Up @@ -149,7 +149,7 @@ public ActionResult Index()
{% endhighlight %}
{% endtabs %}

![](Data-Binding_images/Data-Binding_img2.png)
![ASP.NET MVC Diagram Remote Data](Data-Binding_images/Data-Binding_img2.png)

## HTML Table Data

Expand Down Expand Up @@ -279,9 +279,9 @@ The following code illustrates how to convert HTML table to the Diagram.
{% endhighlight %}
{% endtabs %}

![](Data-Binding_images/Data-Binding_img4.png)
![ASP.NET MVC Diagram HTML Table Data](Data-Binding_images/Data-Binding_img4.png)

# CRUD
## CRUD

* This feature allows the user to read the DataSource and perform add/edit/delete the data in datasource at runtime.

Expand Down
16 changes: 8 additions & 8 deletions aspnetmvc/Diagram/Getting-Started.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
layout: post
title: Getting started with Syncfusion Essential Diagram for ASP.NET MVC
description: Getting started walk through to create your first Flow Diagram and Organizational Chart Diagram
title: Getting started with ASP.NET MVC Diagram Control | Syncfusion
description: Learn here about getting started with Syncfusion Essential ASP.NET MVC Diagram Control, its elements, and more.
platform: ejmvc
control: Diagram
documentation: ug
---

# Getting Started
# Getting Started with ASP.NET MVC Diagram

Getting started with your MVC Diagram is easy. You can start by creating a simple flow chart.

Expand All @@ -28,7 +28,7 @@ Getting started with your MVC Diagram is easy. You can start by creating a simpl

3\. This creates an empty diagram

![](/aspnetmvc/Diagram/Getting-Started_images/Getting-Started_img1.png)
![ASP.NET MVC Diagram Initialization](Diagram/Getting-Started_images/Getting-Started_img1.png)

### Create and add Node

Expand Down Expand Up @@ -72,7 +72,7 @@ N> `Labels` property is an array, which indicates that more than one label can b

Added node will be displayed in diagram as shown below.

![](/aspnetmvc/Diagram/Getting-Started_images/Getting-Started_img2.png)
![ASP.NET MVC Diagram Create and add Node](Diagram/Getting-Started_images/Getting-Started_img2.png)

### Connect nodes

Expand Down Expand Up @@ -126,7 +126,7 @@ Connect these two nodes by adding a `connector` into `Connectors` collection wit

* `Connector` connects the two nodes as shown below.

![](/aspnetmvc/Diagram/Getting-Started_images/Getting-Started_img3.png)
![ASP.NET MVC Diagram Connect nodes](Diagram/Getting-Started_images/Getting-Started_img3.png)

* Default values for all nodes and connectors can be set using default settings. For example if all nodes have same `Width` and `Height`, we can move such properties into `DefaultSettings`. Above code can be rewritten as shown below.

Expand Down Expand Up @@ -236,7 +236,7 @@ Similarly we can add required nodes and connectors to form a complete flow diagr

Final flow chart will looks as shown below.

![](/aspnetmvc/Diagram/Getting-Started_images/Getting-Started_img4.png)
![ASP.NET MVC Diagram Complete flow diagram](Diagram/Getting-Started_images/Getting-Started_img4.png)

## Automatic organization chart

Expand Down Expand Up @@ -357,4 +357,4 @@ Following code examples indicate how to define the default appearance of node an

* The Employee details are displayed in the Diagram as follows.

![](/aspnetmvc/Diagram/Getting-Started_images/Getting-Started_img5.png)
![ASP.NET MVC Diagram Apply org chart layout](Diagram/Getting-Started_images/Getting-Started_img5.png)