From aaf700aa54ec967281c7b93735eeb4841a8fbcd5 Mon Sep 17 00:00:00 2001 From: VigneshwaranGovindharajan <111413464+VigneshwaranGovindharajan@users.noreply.github.com> Date: Fri, 19 Jan 2024 15:46:17 +0530 Subject: [PATCH 1/4] 866126: Added show/hide layout switcher topic for ribbon. --- .../hideLayoutSwitcher/hideLayoutSwitcher.cs | 4 ++ .../ribbon/layouts/hideLayoutSwitcher/razor | 65 +++++++++++++++++ .../layouts/hideLayoutSwitcher/tagHelper | 67 ++++++++++++++++++ .../ribbon/EJ2_ASP.MVC/layouts.md | 14 +++- .../ribbon/EJ2_ASP.NETCORE/layouts.md | 12 ++++ .../ribbon/images/ribbon-layout-switcher.png | Bin 0 -> 9605 bytes 6 files changed, 161 insertions(+), 1 deletion(-) create mode 100644 ej2-asp-core-mvc/code-snippet/ribbon/layouts/hideLayoutSwitcher/hideLayoutSwitcher.cs create mode 100644 ej2-asp-core-mvc/code-snippet/ribbon/layouts/hideLayoutSwitcher/razor create mode 100644 ej2-asp-core-mvc/code-snippet/ribbon/layouts/hideLayoutSwitcher/tagHelper create mode 100644 ej2-asp-core-mvc/ribbon/images/ribbon-layout-switcher.png diff --git a/ej2-asp-core-mvc/code-snippet/ribbon/layouts/hideLayoutSwitcher/hideLayoutSwitcher.cs b/ej2-asp-core-mvc/code-snippet/ribbon/layouts/hideLayoutSwitcher/hideLayoutSwitcher.cs new file mode 100644 index 0000000000..1314613a3a --- /dev/null +++ b/ej2-asp-core-mvc/code-snippet/ribbon/layouts/hideLayoutSwitcher/hideLayoutSwitcher.cs @@ -0,0 +1,4 @@ +public ActionResult HideLayoutSwitcher() +{ + return View(); +} \ No newline at end of file diff --git a/ej2-asp-core-mvc/code-snippet/ribbon/layouts/hideLayoutSwitcher/razor b/ej2-asp-core-mvc/code-snippet/ribbon/layouts/hideLayoutSwitcher/razor new file mode 100644 index 0000000000..8c856b5e80 --- /dev/null +++ b/ej2-asp-core-mvc/code-snippet/ribbon/layouts/hideLayoutSwitcher/razor @@ -0,0 +1,65 @@ +@{ + ViewBag.Title = "Home Page"; +} +@using Syncfusion.EJ2 +@using Syncfusion.EJ2.Ribbon +@using Syncfusion.EJ2.Navigations +@using Syncfusion.EJ2.Buttons + +@{ + List tableOptions = new List() { new MenuItem { Text = "Insert Table" }, new MenuItem { Text = "This device" }, new MenuItem { Text = "Convert Table" }, new MenuItem { Text = "Excel SpreadSheet" } }; +} +@Html.EJS().CheckBox("checked").Label("Show/Hide Layout Switcher").Checked(true).Change("OnChange").Render() +@Html.EJS().Ribbon("ribbon").HideLayoutSwitcher(false).Tabs(tab => +{ + tab.Header("Home").Groups(group => + { + group.Header("Clipboard").Collections(collection => + { + collection.Items(items => + { + items.Type(RibbonItemType.Button).ButtonSettings(button => + { + button.IconCss("e-icons e-paste").Content("Paste"); + }).Add(); + }).Add(); + collection.Items(items => + { + items.Type(RibbonItemType.Button).ButtonSettings(button => + { + button.IconCss("e-icons e-cut").Content("Cut"); + }).Add(); + items.Type(RibbonItemType.Button).ButtonSettings(button => + { + button.IconCss("e-icons e-copy").Content("Copy"); + }).Add(); + }).Add(); + }).Add(); + }).Add(); + tab.Header("Insert").Groups(groups => + { + groups.Header("Tables").Collections(collections => + { + collections.Items(items => + { + items.Type(RibbonItemType.DropDown).DropDownSettings(dropDown => + { + dropDown.IconCss("e-icons e-table").Content("Table").Items(tableOptions); + }).Add(); + }).Add(); + }).Add(); + }).Add(); +}).Render() + + + + \ No newline at end of file diff --git a/ej2-asp-core-mvc/code-snippet/ribbon/layouts/hideLayoutSwitcher/tagHelper b/ej2-asp-core-mvc/code-snippet/ribbon/layouts/hideLayoutSwitcher/tagHelper new file mode 100644 index 0000000000..96990e9235 --- /dev/null +++ b/ej2-asp-core-mvc/code-snippet/ribbon/layouts/hideLayoutSwitcher/tagHelper @@ -0,0 +1,67 @@ +@using Syncfusion.EJ2 +@using Syncfusion.EJ2.Ribbon +@using Syncfusion.EJ2.Navigations +@using Syncfusion.EJ2.Buttons + +@{ + List tableOptions = new List() { new MenuItem { Text = "Insert Table" }, new MenuItem { Text = "This device" }, new MenuItem { Text = "Convert Table" }, new MenuItem { Text = "Excel SpreadSheet" } }; +} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ej2-asp-core-mvc/ribbon/EJ2_ASP.MVC/layouts.md b/ej2-asp-core-mvc/ribbon/EJ2_ASP.MVC/layouts.md index d98e18bfef..df30307c2c 100644 --- a/ej2-asp-core-mvc/ribbon/EJ2_ASP.MVC/layouts.md +++ b/ej2-asp-core-mvc/ribbon/EJ2_ASP.MVC/layouts.md @@ -158,4 +158,16 @@ You can use the [IsMinimized](https://help.syncfusion.com/cr/aspnetMVC-js2/Syncf {% endhighlight %} {% endtabs %} -![ASP.NET MVC Ribbon Control in Minimized state](images/ribbon-minimize.png) \ No newline at end of file +![ASP.NET MVC Ribbon Control in Minimized state](images/ribbon-minimize.png) + +## Show hide the layout switcher + +You can use the [hideLayoutSwitcher](https://help.syncfusion.com/cr/aspnetMVC-js2/Syncfusion.EJ2.Ribbon.Ribbon.html#Syncfusion_EJ2_Ribbon_Ribbon_HideLayoutSwitcher) property to show/hide the Ribbon layout switcher button. By default, the value is `false`. + +{% tabs %} +{% highlight razor tabtitle="CSHTML" %} +{% include code-snippet/ribbon/layouts/hideLayoutSwitcher/razor %} +{% endhighlight %} +{% endtabs %} + +![ASP.NET MVC Ribbon Control layout switcher](./images/ribbon-layout-switcher.png) \ No newline at end of file diff --git a/ej2-asp-core-mvc/ribbon/EJ2_ASP.NETCORE/layouts.md b/ej2-asp-core-mvc/ribbon/EJ2_ASP.NETCORE/layouts.md index af2d774bcc..5f6e7541f2 100644 --- a/ej2-asp-core-mvc/ribbon/EJ2_ASP.NETCORE/layouts.md +++ b/ej2-asp-core-mvc/ribbon/EJ2_ASP.NETCORE/layouts.md @@ -160,3 +160,15 @@ You can use the [isMinimized](https://help.syncfusion.com/cr/aspnetcore-js2/Sync {% endtabs %} ![ASP.NET Core Ribbon Control in Minimized state](./images/ribbon-minimize.png) + +## Show hide the layout switcher + +You can use the [hideLayoutSwitcher](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Ribbon.Ribbon.html#Syncfusion_EJ2_Ribbon_Ribbon_HideLayoutSwitcher) property to show/hide the Ribbon layout switcher button. By default, the value is `false`. + +{% tabs %} +{% highlight cshtml tabtitle="CSHTML" %} +{% include code-snippet/ribbon/layouts/hideLayoutSwitcher/tagHelper %} +{% endhighlight %} +{% endtabs %} + +![ASP.NET Core Ribbon Control layout switcher](./images/ribbon-layout-switcher.png) diff --git a/ej2-asp-core-mvc/ribbon/images/ribbon-layout-switcher.png b/ej2-asp-core-mvc/ribbon/images/ribbon-layout-switcher.png new file mode 100644 index 0000000000000000000000000000000000000000..e8ecd944fac9107b2f439f8a120c609a079e5308 GIT binary patch literal 9605 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 literal 0 HcmV?d00001 From a20d3928c58aecb66a7f72fd5dbeb36d32506333 Mon Sep 17 00:00:00 2001 From: VigneshwaranGovindharajan <111413464+VigneshwaranGovindharajan@users.noreply.github.com> Date: Fri, 12 Apr 2024 09:39:56 +0530 Subject: [PATCH 2/4] 866126: Updated review concerns --- ej2-asp-core-mvc/ribbon/EJ2_ASP.NETCORE/layouts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ej2-asp-core-mvc/ribbon/EJ2_ASP.NETCORE/layouts.md b/ej2-asp-core-mvc/ribbon/EJ2_ASP.NETCORE/layouts.md index 5f6e7541f2..783ba0f1f7 100644 --- a/ej2-asp-core-mvc/ribbon/EJ2_ASP.NETCORE/layouts.md +++ b/ej2-asp-core-mvc/ribbon/EJ2_ASP.NETCORE/layouts.md @@ -161,7 +161,7 @@ You can use the [isMinimized](https://help.syncfusion.com/cr/aspnetcore-js2/Sync ![ASP.NET Core Ribbon Control in Minimized state](./images/ribbon-minimize.png) -## Show hide the layout switcher +## Show or hide the layout switcher You can use the [hideLayoutSwitcher](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Ribbon.Ribbon.html#Syncfusion_EJ2_Ribbon_Ribbon_HideLayoutSwitcher) property to show/hide the Ribbon layout switcher button. By default, the value is `false`. From 12eb5496939c99e702126868f7d3cc5e1481bd66 Mon Sep 17 00:00:00 2001 From: VigneshwaranGovindharajan <111413464+VigneshwaranGovindharajan@users.noreply.github.com> Date: Mon, 15 Apr 2024 11:21:24 +0530 Subject: [PATCH 3/4] 866126: Fixed front matter errors. --- ej2-asp-core-mvc/ribbon/EJ2_ASP.MVC/layouts.md | 4 ++-- ej2-asp-core-mvc/ribbon/EJ2_ASP.NETCORE/layouts.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ej2-asp-core-mvc/ribbon/EJ2_ASP.MVC/layouts.md b/ej2-asp-core-mvc/ribbon/EJ2_ASP.MVC/layouts.md index df30307c2c..6353c5251e 100644 --- a/ej2-asp-core-mvc/ribbon/EJ2_ASP.MVC/layouts.md +++ b/ej2-asp-core-mvc/ribbon/EJ2_ASP.MVC/layouts.md @@ -8,7 +8,7 @@ publishingplatform: ##Platform_Name## documentation: ug --- -# Ribbon Layouts +# Layouts in ASP.NET MVC Ribbon Control The Ribbon allows to customize the layout by using the [ActiveLayout](https://help.syncfusion.com/cr/aspnetMVC-js2/Syncfusion.EJ2.Ribbon.Ribbon.html#Syncfusion_EJ2_Ribbon_Ribbon_ActiveLayout) property. The Ribbon control supports the following layouts: @@ -26,7 +26,7 @@ In classic layout, the Ribbon control organizes the items and groups in a tradit ### Defining items size -You can use the [AllowedSizes](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Ribbon.RibbonItem.html#Syncfusion_EJ2_Ribbon_RibbonItem_AllowedSizes) property to set the allowed size for an item. The Ribbon items can be appeared in three different sizes: Large(large icon with text), Medium(small icon with text) and Small(small icon only). On resizing, the items size can be changed based on the available width of the tab content from the order of Large-> Medium-> Small and viceversa. +You can use the [AllowedSizes](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Ribbon.RibbonItem.html#Syncfusion_EJ2_Ribbon_RibbonItem_AllowedSizes) property to set the allowed size for an item. The Ribbon items can be appeared in three different sizes: Large(large icon with text), Medium(small icon with text) and Small(small icon only). On resizing, the items size can be changed based on the available width of the tab content from the order of Large-> Medium-> Small and vice versa. {% tabs %} {% highlight cshtml tabtitle="CSHTML" %} diff --git a/ej2-asp-core-mvc/ribbon/EJ2_ASP.NETCORE/layouts.md b/ej2-asp-core-mvc/ribbon/EJ2_ASP.NETCORE/layouts.md index 783ba0f1f7..0d530b8a65 100644 --- a/ej2-asp-core-mvc/ribbon/EJ2_ASP.NETCORE/layouts.md +++ b/ej2-asp-core-mvc/ribbon/EJ2_ASP.NETCORE/layouts.md @@ -8,7 +8,7 @@ publishingplatform: ##Platform_Name## documentation: ug --- -# Ribbon Layouts +# Layouts in ASP.NET Core Ribbon Control The Ribbon allows to customize the layout by using the [activeLayout](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Ribbon.Ribbon.html#Syncfusion_EJ2_Ribbon_Ribbon_ActiveLayout) property. The Ribbon control supports the following layouts: @@ -26,7 +26,7 @@ In classic layout, the Ribbon control organizes the items and groups in a tradit ### Defining items size -You can use the [allowedSizes](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Ribbon.RibbonItem.html#Syncfusion_EJ2_Ribbon_RibbonItem_AllowedSizes) property to set the allowed size for an item. The Ribbon items can be appeared in three different sizes: Large(large icon with text), Medium(small icon with text) and Small(small icon only). On resizing, the items size can be changed based on the available width of the tab content from the order of Large-> Medium-> Small and viceversa. +You can use the [allowedSizes](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Ribbon.RibbonItem.html#Syncfusion_EJ2_Ribbon_RibbonItem_AllowedSizes) property to set the allowed size for an item. The Ribbon items can be appeared in three different sizes: Large(large icon with text), Medium(small icon with text) and Small(small icon only). On resizing, the items size can be changed based on the available width of the tab content from the order of Large-> Medium-> Small and vice versa. {% tabs %} {% highlight cshtml tabtitle="CSHTML" %} From 8c45fe89f0358ae19dccf9dbfc3a90dec0fa878b Mon Sep 17 00:00:00 2001 From: Indrajith <93306904+IndrajithSrinivasan@users.noreply.github.com> Date: Tue, 30 Apr 2024 18:24:23 +0530 Subject: [PATCH 4/4] 866126: Fixed casing changes --- ej2-asp-core-mvc/ribbon/EJ2_ASP.MVC/layouts.md | 2 +- ej2-asp-core-mvc/ribbon/EJ2_ASP.NETCORE/layouts.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ej2-asp-core-mvc/ribbon/EJ2_ASP.MVC/layouts.md b/ej2-asp-core-mvc/ribbon/EJ2_ASP.MVC/layouts.md index 6353c5251e..3269cd492a 100644 --- a/ej2-asp-core-mvc/ribbon/EJ2_ASP.MVC/layouts.md +++ b/ej2-asp-core-mvc/ribbon/EJ2_ASP.MVC/layouts.md @@ -8,7 +8,7 @@ publishingplatform: ##Platform_Name## documentation: ug --- -# Layouts in ASP.NET MVC Ribbon Control +# Layouts in ASP.NET MVC Ribbon control The Ribbon allows to customize the layout by using the [ActiveLayout](https://help.syncfusion.com/cr/aspnetMVC-js2/Syncfusion.EJ2.Ribbon.Ribbon.html#Syncfusion_EJ2_Ribbon_Ribbon_ActiveLayout) property. The Ribbon control supports the following layouts: diff --git a/ej2-asp-core-mvc/ribbon/EJ2_ASP.NETCORE/layouts.md b/ej2-asp-core-mvc/ribbon/EJ2_ASP.NETCORE/layouts.md index 0d530b8a65..ab56a3bf57 100644 --- a/ej2-asp-core-mvc/ribbon/EJ2_ASP.NETCORE/layouts.md +++ b/ej2-asp-core-mvc/ribbon/EJ2_ASP.NETCORE/layouts.md @@ -8,7 +8,7 @@ publishingplatform: ##Platform_Name## documentation: ug --- -# Layouts in ASP.NET Core Ribbon Control +# Layouts in ASP.NET Core Ribbon control The Ribbon allows to customize the layout by using the [activeLayout](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Ribbon.Ribbon.html#Syncfusion_EJ2_Ribbon_Ribbon_ActiveLayout) property. The Ribbon control supports the following layouts: