forked from syncfusion/ej2-aspnetmvc-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRtl.cshtml
37 lines (31 loc) · 1.2 KB
/
Rtl.cshtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@using Syncfusion.EJ2
@section ControlsSection{
<div class="col-lg-12 control-section">
<div class="e-sample-resize-container">
@Html.EJS().Tab("rtlTab").EnableRtl(true).Items(ViewBag.rtlItems).Render()
</div>
</div>
}
@section ActionDescription{
<p>
This sample demonstrates the RTL mode of the <code>Tab</code>. Click on the <code>header</code> element for activate the corresponding tab, and displays its <code>content</code> with right-to-left direction.
</p>
}
@section Description{
<p>
The RTL sample illustrates the direction of the <code>Tab</code> from right to left.
</p>
<p>
More information about Tab can be found in this <a target="_blank" href="https://ej2.syncfusion.com/aspnetmvc/documentation/tab/getting-started-asp-mvc/"> documentation </a> section.
</p>
}
@section Meta{
<meta name="description" content="The sample demonstrates how to align the tab items with its icon from right to left direction (RTL) in the Tab component in ASP.NET MVC platform (For example, Arabic language)." />
}
<style>
.e-content .e-item {
font-size: 12px;
padding: 10px;
text-align: justify;
}
</style>