Right to Left Align in EJ 1 ASP.NET MVC TreeView
18 Feb 2016 / 1 minute to read
TreeView supports right to left align and it can be applied by specifying EnableRTL as true.
@(Html.EJ().TreeView("treeViewDrag")
.TreeViewFields(field =>
field.Datasource((IEnumerable<LoadData>)ViewBag.datasource)
.Id("Id")
.ParentId("Parent")
.Text("Text")
)
.EnableRTL(true)
)
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page