Posted 20 January 2018, 7:29 am EST
Hi,
We are sorry for the late reply.
controlTemplate is present in any Wijmo control. The way to customized it (for several controls) is shown up in the following sample:
http://demos.wijmo.com/5/Angular2/Explorer/Explorer/#/infra/templates
Note that the property doesn’t accept an Angular template, it can be a plain HTML only.
The TreeView.controlTemplate is defined as follows:
static controlTemplate = '<div wj-part="root"></div>';
I.e. it’s a single div where the control adds all its content dynamically. So, you may not do so much with it, just add some surrounding HTML elements.
~Manish