I'm using treegrid.
The error is:
col-md-3 >> other jobs
coli-md-9 >> TreeGrid
I've reserved for her area is overflow. I wonder what the problem?
code:
@(Html.EJ().TreeGrid("TreeGridContainer")
.SizeSettings(ss => ss.Width("100%").Height("450px"))
.EnableAltRow(true)
.TreeColumnIndex(1)
.IsResponsive(true)
.AllowColumnResize(true)
.ClientSideEvents(p => p.RowDataBound("RowDataBound"))
.IdMapping("MarkaModelTurID")
.ParentIdMapping("USTID")
.Columns(co =>
{
co.Field("MarkaModelTurID").HeaderText("MarkaModelTurID").Width(100).Add();
co.Field("MarkaModelAdi").HeaderText("Task Name").Width(100).Add();
co.Field("MarkaModelKayitTarih").HeaderText("Start Date").Width(100).Add();
co.Field("KayitEden").HeaderText("Duration").Width(100).Add();
co.Field("USTID").HeaderText("Progress").Width(100).Add();
}
)
.Datasource(Model)
)
image