TabPanel
TabPanel
プログラムによる作成
このビューは、プログラムで TabPanel コントロールにタブを追加する方法を示します。
機能
サンプル
説明
HTML マークアップではなくプログラムを使用して TabPanel コントロールにタブを追加したい場合があります。
それには、TabPanel 内のタブのコレクションへのアクセスを提供する Tabs プロパティを使用します。
この例では、Tabs コレクションにいくつかの Tab オブジェクトを追加しました。各 Tab オブジェクトは、1 つのヘッダーと 1 つのペイン要素で定義されます。
Tabs プロパティを使用して、TabPanel 内のタブの削除、変更、または並べ替えを行うこともできます。
ソース
CreatingProgrammaticallyController.cs
using MvcExplorer.Models; using Microsoft.AspNetCore.Mvc; using System.Linq; using System.Collections.Generic; using Microsoft.AspNetCore.Http; namespace MvcExplorer.Controllers { public partial class TabPanelController : Controller { // GET: CreatingProgrammatically public ActionResult CreatingProgrammatically(IFormCollection collection) { return View(); } } }
CreatingProgrammatically.cshtml
<div> <div> <a id="headerEmployees">EMPLOYEES</a> <div id="paneEmployees"> <c1-flex-grid is-read-only="true" sorting-type="None"> <c1-odata-source service-url="https://services.odata.org/Northwind/Northwind.svc/" table-name="Employees" fields="EmployeeID,LastName,FirstName,Title,TitleOfCourtesy"></c1-odata-source> </c1-flex-grid> </div> </div> <div> <a id="headerCategories">CATEGORIES</a> <div id="paneCategories"> <c1-flex-grid is-read-only="true" sorting-type="None"> <c1-odata-source service-url="https://services.odata.org/Northwind/Northwind.svc/" table-name="Categories" fields="CategoryID,CategoryName,Description"></c1-odata-source> </c1-flex-grid> </div> </div> </div> <c1-tab-panel id="tabInCode"> <c1-tab header="#headerEmployees" pane="#paneEmployees"></c1-tab> <c1-tab header="#headerCategories" pane="#paneCategories"></c1-tab> </c1-tab-panel> <script> c1.documentReady(function () { var tabInCode = wijmo.Control.getControl('#tabInCode'), url = 'https://services.odata.org/Northwind/Northwind.svc/', headers = 'Products,Customers'.split(','); tabInCode.tabs.deferUpdate(function () { // update only when done headers.forEach(function (header) { // create the tab header element var elHeader = document.createElement('a'); elHeader.textContent = header; // create the tab pane element var elPane = document.createElement('div'), elGrid = document.createElement('div'), grid = new wijmo.grid.FlexGrid(elGrid, { isReadOnly: true, itemsSource: new wijmo.odata.ODataCollectionView(url, header) }); elPane.appendChild(elGrid); // add the new Tab to the TabPanel tabInCode.tabs.push(new wijmo.nav.Tab(elHeader, elPane)); }); }); }); </script> @section Summary{ <p>@Html.Raw(TabPanelRes.CreatingProgrammatically_Text0)</p> } @section Description{ <p>@Html.Raw(TabPanelRes.CreatingProgrammatically_Text1)</p> <p>@Html.Raw(TabPanelRes.CreatingProgrammatically_Text2)</p> <p>@Html.Raw(TabPanelRes.CreatingProgrammatically_Text3)</p> <p>@Html.Raw(TabPanelRes.CreatingProgrammatically_Text4)</p> }
マニュアル