I'd like to see the Editable.Window Configuration in TreeLists like in Grids, one would actually expect this configuration to be available on all controls that have an Editable configuration.
On a grid I use this code to set AutoFocus, but it is only available through JQuery on a TreeList.
.Editable(editable => editable.DisplayDeleteConfirmation(false)
.Mode(GridEditMode.PopUp)
.TemplateName("AccountEditor")
.Window(w => w
.Scrollable(false).AutoFocus(false)
))
Thanks
M