Hi,
i have a ejTreeGrid setting like below : $("#ProcedureTree").ejTreeGrid({
locale: "id-ID",
dataSource: e.result,
allowColumnResize: false,
allowSelection: false,
idMapping: "Id",
parentIdMapping: "ParentId",
treeColumnIndex: 1,
columns: [
{ field: "Id", headerText: "ID", visible: false },
{ field: "Name", headerText: "Service" },
{ field: "ControlTemplate1", headerText: "#", textAlign: "right" }
]
})
when it load data the scroll wont look up to the end of data, but when i collapse all and show it again it can scroll to the end of data. is there any way that scroll can look up to the end of data without collapse all data and showing again ?
Thanks.