From 3dcb910e176e437c6df1ae0db60dc85442fe592d Mon Sep 17 00:00:00 2001 From: saravananj-sf4375 <161449214+saravananj-sf4375@users.noreply.github.com> Date: Wed, 8 Oct 2025 19:05:30 +0530 Subject: [PATCH 1/9] 985363: Renamed the Listview enable property as per API standard --- ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md b/ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md index 65a8fc0e07..1de27e280e 100644 --- a/ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md +++ b/ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md @@ -18,7 +18,7 @@ This article describes the API migration process of ListView control from Essent | Fields | **Property:** *FieldSettings*

`@Html.EJ().ListView("list").FieldSettings(e => e.Text("text"))` | **Property:** *Fields*

**Inner properties:** *child, enabled, groupBy htmlAttributes, iconCss, id, isChecked etc.*


`@Html.EJS().ListView("list").DataSource((IEnumerable)`
`ViewBag.dataSource).Fields(new Syncfusion.EJ2.Lists.ListViewFieldSettings { GroupBy="type"}).Render()`| | Template | **Property:** *RenderTemplate*

`@Html.EJ().ListView("list").RenderTemplate(true)`
`.TemplateId("template")`

`
Data 1
Data 2
Data 3
`| **Property:** *Template*

`@{ var template = "
${text}
"; }`

`@Html.EJS().ListView("list").DataSource((IEnumerable)`
`ViewBag.dataSource).Template(template).Render()`| | Animation | **Not Applicable** | **Property:** *Animation*

`List animation = new List();`
`animation.Add(new { effect = "SlideLeft", duration = "400", easing = "ease" });`

`@Html.EJS().ListView("list").DataSource((IEnumerable)`
`ViewBag.dataSource).Animation(ViewBag.animation).Render()`| -| Enable | **Not Applicable** |**Property:** *Enable*

`@Html.EJS().ListView("list").DataSource((IEnumerable)`
`ViewBag.dataSource).Enable(true).Render()`| +| Enabled | **Not Applicable** |**Property:** *Enable*

`@Html.EJS().ListView("list").DataSource((IEnumerable)`
`ViewBag.dataSource).Enabled(true).Render()`| | Template for grouping | **Not Applicable** | **Property:** *GroupTemplate*

`@{ var groupTemplate = "
${text}
"; }`

`@Html.EJS().ListView("list").DataSource((IEnumerable)`
`ViewBag.dataSource).GroupTemplate(groupTemplate).Render()` | | Template for header |**Not Applicable** | **Property:** *HeaderTemplate*

`@{ var headerTemplate = "
${text}
"; }`

`@Html.EJS().ListView("list").DataSource((IEnumerable)`
`ViewBag.dataSource).HeaderTemplate(headerTemplate).Render()`| | HTML attributes |**Not Applicable**| **Property:** *HtmlAttributes*

`@{`
`IDictionary htmlAttribute = new Dictionary();`
`htmlAttribute.Add("class", "listViewCustom");`
`}`

`@Html.EJS().ListView("list").DataSource((IEnumerable)`
`ViewBag.dataSource).HtmlAttributes(htmlAttribute).Render()`| From e46f7828882833f763b09d1ee1e2c6da3ba4253e Mon Sep 17 00:00:00 2001 From: saravananj-sf4375 <161449214+saravananj-sf4375@users.noreply.github.com> Date: Wed, 8 Oct 2025 19:05:52 +0530 Subject: [PATCH 2/9] 985363: Renamed the Listview enable property as per API standard --- ej2-asp-core-mvc/listview/EJ2_ASP.NETCORE/ej1-api-migration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ej2-asp-core-mvc/listview/EJ2_ASP.NETCORE/ej1-api-migration.md b/ej2-asp-core-mvc/listview/EJ2_ASP.NETCORE/ej1-api-migration.md index 8e3e46a682..8547d53c08 100644 --- a/ej2-asp-core-mvc/listview/EJ2_ASP.NETCORE/ej1-api-migration.md +++ b/ej2-asp-core-mvc/listview/EJ2_ASP.NETCORE/ej1-api-migration.md @@ -18,7 +18,7 @@ This article describes the API migration process of ListView control from Essent | Fields | **Property:** *fieldSettings*
``
``
`
` | **Property:** *fields*
**Inner properties:** *child, enabled, groupBy htmlAttributes, iconCss, id, isChecked, isVisible, sortBy, tableName, text, tooltip.*

``
``
`
`| | Template | **Property:** *render-template*
``

`
Data 1
Data 2
Data 3
`| **Property:** *template*
`@{ var template = "
${text}
"; }`

``| | Animation | **Not Applicable** | **Property:** *animation*
`List animation = new List();`
`animation.Add(new { effect = "SlideLeft", duration = "400", easing = "ease" });`

``| -| Enable | **Not Applicable** |**Property:** *enable*
``| +| Enabled | **Not Applicable** |**Property:** *enable*
``| | Template for grouping | **Not Applicable** | **Property:** *groupTemplate*
`@{ var groupTemplate = "
${text}
"; }`

`` | | Template for header |**Not Applicable** | **Property:** *headerTemplate*
`@{ var headerTemplate = "
${text}
"; }`

``| | HTML attributes |**Not Applicable**| **Property:** *htmlAttributes*
`@{`
`IDictionary htmlAttribute = new Dictionary();`
`htmlAttribute.Add("class", "listViewCustom");`
`}`

``| From 6229e4c74b8671f3ef09a6846a70ef94ee61251e Mon Sep 17 00:00:00 2001 From: saravananj-sf4375 <161449214+saravananj-sf4375@users.noreply.github.com> Date: Wed, 8 Oct 2025 19:17:12 +0530 Subject: [PATCH 3/9] 985363: Renamed the Listview enable property as per API standard --- ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md b/ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md index 1de27e280e..8b116c3c64 100644 --- a/ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md +++ b/ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md @@ -8,7 +8,7 @@ publishingplatform: ##Platform_Name## documentation: ug --- -# Migration from Essential® JS 1 +# Migration from Essential® JS 1 - ##Platform_Name## This article describes the API migration process of ListView control from Essential® JS 1 to Essential® JS 2. From 68e4bbe298d065987660a1db2c7639ca16a9564b Mon Sep 17 00:00:00 2001 From: saravananj-sf4375 <161449214+saravananj-sf4375@users.noreply.github.com> Date: Wed, 8 Oct 2025 19:17:41 +0530 Subject: [PATCH 4/9] 985363: Renamed the Listview enable property as per API standard --- ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md b/ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md index 8b116c3c64..553f0d681d 100644 --- a/ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md +++ b/ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md @@ -8,7 +8,7 @@ publishingplatform: ##Platform_Name## documentation: ug --- -# Migration from Essential® JS 1 - ##Platform_Name## +# Migration from Essential® JS 1 - ASP.NET MVC This article describes the API migration process of ListView control from Essential® JS 1 to Essential® JS 2. From 40bdca5e51eedfc948381a579f08fddf75eec906 Mon Sep 17 00:00:00 2001 From: saravananj-sf4375 <161449214+saravananj-sf4375@users.noreply.github.com> Date: Wed, 8 Oct 2025 19:18:12 +0530 Subject: [PATCH 5/9] 985363: Renamed the Listview enable property as per API standard --- ej2-asp-core-mvc/listview/EJ2_ASP.NETCORE/ej1-api-migration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ej2-asp-core-mvc/listview/EJ2_ASP.NETCORE/ej1-api-migration.md b/ej2-asp-core-mvc/listview/EJ2_ASP.NETCORE/ej1-api-migration.md index 8547d53c08..05305cc97b 100644 --- a/ej2-asp-core-mvc/listview/EJ2_ASP.NETCORE/ej1-api-migration.md +++ b/ej2-asp-core-mvc/listview/EJ2_ASP.NETCORE/ej1-api-migration.md @@ -8,7 +8,7 @@ publishingplatform: ##Platform_Name## documentation: ug --- -# Migration from Essential® JS 1 +# Migration from Essential® JS 1 - ASP.NET Core This article describes the API migration process of ListView control from Essential® JS 1 to Essential® JS 2 From a2c1584c50b7a6ca9edebb4464af7fc9f269df24 Mon Sep 17 00:00:00 2001 From: saravananj-sf4375 <161449214+saravananj-sf4375@users.noreply.github.com> Date: Wed, 8 Oct 2025 19:34:32 +0530 Subject: [PATCH 6/9] 985363: Resolved front error --- ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md b/ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md index 553f0d681d..26ac426520 100644 --- a/ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md +++ b/ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md @@ -8,7 +8,7 @@ publishingplatform: ##Platform_Name## documentation: ug --- -# Migration from Essential® JS 1 - ASP.NET MVC +# EJ1 API migration in ASP.NET MVC ListView component This article describes the API migration process of ListView control from Essential® JS 1 to Essential® JS 2. From 3a6d8aa1023b710caaeac8b4e9b9fd1f00c35369 Mon Sep 17 00:00:00 2001 From: saravananj-sf4375 <161449214+saravananj-sf4375@users.noreply.github.com> Date: Wed, 8 Oct 2025 19:35:24 +0530 Subject: [PATCH 7/9] 985363: Resolved front error --- ej2-asp-core-mvc/listview/EJ2_ASP.NETCORE/ej1-api-migration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ej2-asp-core-mvc/listview/EJ2_ASP.NETCORE/ej1-api-migration.md b/ej2-asp-core-mvc/listview/EJ2_ASP.NETCORE/ej1-api-migration.md index 05305cc97b..e9aa5cc811 100644 --- a/ej2-asp-core-mvc/listview/EJ2_ASP.NETCORE/ej1-api-migration.md +++ b/ej2-asp-core-mvc/listview/EJ2_ASP.NETCORE/ej1-api-migration.md @@ -8,7 +8,7 @@ publishingplatform: ##Platform_Name## documentation: ug --- -# Migration from Essential® JS 1 - ASP.NET Core +# EJ1 API migration in ASP.NET Core ListView component This article describes the API migration process of ListView control from Essential® JS 1 to Essential® JS 2 From 07f1ea88fe37ef235cb26430144d132db05d2f13 Mon Sep 17 00:00:00 2001 From: saravananj-sf4375 <161449214+saravananj-sf4375@users.noreply.github.com> Date: Tue, 14 Oct 2025 10:36:41 +0530 Subject: [PATCH 8/9] 985363: Renamed the Listview enable property as per API standard --- ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md b/ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md index 26ac426520..7748bf6447 100644 --- a/ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md +++ b/ej2-asp-core-mvc/listview/EJ2_ASP.MVC/ej1-api-migration.md @@ -18,7 +18,7 @@ This article describes the API migration process of ListView control from Essent | Fields | **Property:** *FieldSettings*

`@Html.EJ().ListView("list").FieldSettings(e => e.Text("text"))` | **Property:** *Fields*

**Inner properties:** *child, enabled, groupBy htmlAttributes, iconCss, id, isChecked etc.*


`@Html.EJS().ListView("list").DataSource((IEnumerable)`
`ViewBag.dataSource).Fields(new Syncfusion.EJ2.Lists.ListViewFieldSettings { GroupBy="type"}).Render()`| | Template | **Property:** *RenderTemplate*

`@Html.EJ().ListView("list").RenderTemplate(true)`
`.TemplateId("template")`

`
Data 1
Data 2
Data 3
`| **Property:** *Template*

`@{ var template = "
${text}
"; }`

`@Html.EJS().ListView("list").DataSource((IEnumerable)`
`ViewBag.dataSource).Template(template).Render()`| | Animation | **Not Applicable** | **Property:** *Animation*

`List animation = new List();`
`animation.Add(new { effect = "SlideLeft", duration = "400", easing = "ease" });`

`@Html.EJS().ListView("list").DataSource((IEnumerable)`
`ViewBag.dataSource).Animation(ViewBag.animation).Render()`| -| Enabled | **Not Applicable** |**Property:** *Enable*

`@Html.EJS().ListView("list").DataSource((IEnumerable)`
`ViewBag.dataSource).Enabled(true).Render()`| +| Enabled | **Not Applicable** |**Property:** *Enabled*

`@Html.EJS().ListView("list").DataSource((IEnumerable)`
`ViewBag.dataSource).Enabled(true).Render()`| | Template for grouping | **Not Applicable** | **Property:** *GroupTemplate*

`@{ var groupTemplate = "
${text}
"; }`

`@Html.EJS().ListView("list").DataSource((IEnumerable)`
`ViewBag.dataSource).GroupTemplate(groupTemplate).Render()` | | Template for header |**Not Applicable** | **Property:** *HeaderTemplate*

`@{ var headerTemplate = "
${text}
"; }`

`@Html.EJS().ListView("list").DataSource((IEnumerable)`
`ViewBag.dataSource).HeaderTemplate(headerTemplate).Render()`| | HTML attributes |**Not Applicable**| **Property:** *HtmlAttributes*

`@{`
`IDictionary htmlAttribute = new Dictionary();`
`htmlAttribute.Add("class", "listViewCustom");`
`}`

`@Html.EJS().ListView("list").DataSource((IEnumerable)`
`ViewBag.dataSource).HtmlAttributes(htmlAttribute).Render()`| From 0daf5c1a41ec14ec6a45662eacf60848740e7dcc Mon Sep 17 00:00:00 2001 From: saravananj-sf4375 <161449214+saravananj-sf4375@users.noreply.github.com> Date: Tue, 14 Oct 2025 10:36:58 +0530 Subject: [PATCH 9/9] 985363: Renamed the Listview enable property as per API standard --- ej2-asp-core-mvc/listview/EJ2_ASP.NETCORE/ej1-api-migration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ej2-asp-core-mvc/listview/EJ2_ASP.NETCORE/ej1-api-migration.md b/ej2-asp-core-mvc/listview/EJ2_ASP.NETCORE/ej1-api-migration.md index e9aa5cc811..cb17535e6c 100644 --- a/ej2-asp-core-mvc/listview/EJ2_ASP.NETCORE/ej1-api-migration.md +++ b/ej2-asp-core-mvc/listview/EJ2_ASP.NETCORE/ej1-api-migration.md @@ -18,7 +18,7 @@ This article describes the API migration process of ListView control from Essent | Fields | **Property:** *fieldSettings*
``
``
`
` | **Property:** *fields*
**Inner properties:** *child, enabled, groupBy htmlAttributes, iconCss, id, isChecked, isVisible, sortBy, tableName, text, tooltip.*

``
``
`
`| | Template | **Property:** *render-template*
``

`
Data 1
Data 2
Data 3
`| **Property:** *template*
`@{ var template = "
${text}
"; }`

``| | Animation | **Not Applicable** | **Property:** *animation*
`List animation = new List();`
`animation.Add(new { effect = "SlideLeft", duration = "400", easing = "ease" });`

``| -| Enabled | **Not Applicable** |**Property:** *enable*
``| +| Enabled | **Not Applicable** |**Property:** *enabled*
``| | Template for grouping | **Not Applicable** | **Property:** *groupTemplate*
`@{ var groupTemplate = "
${text}
"; }`

`` | | Template for header |**Not Applicable** | **Property:** *headerTemplate*
`@{ var headerTemplate = "
${text}
"; }`

``| | HTML attributes |**Not Applicable**| **Property:** *htmlAttributes*
`@{`
`IDictionary htmlAttribute = new Dictionary();`
`htmlAttribute.Add("class", "listViewCustom");`
`}`

``|