Template and Components allowed

Hello,


I am trying to work with the templates. If I understand well the way we should working is to link a Visual component to the element ID inside the Html code.
so My questions are .  
- do we have some documentation about  how ro use correctly the templates ?
- What s the use of the ElementClassname Property  ?
- Why some components do not have the property "ElementID" such as the dashboard  or Graph components.


Thx to clarify

Eric

1)
The demo under Basics\HTML shows how Delphi component instances can be mapped on HTML elements via the ElementID. So, there is not much more to it than knowing the HTML element ID and setting this to the control.ElementID property. Of course, the control type must match the HTML element type. A TWebEdit maps to a HTML INPUT element for example. A SELECT to a listbox or combobox, etc...
2)
The  ElementClassName is used to set the main CSS classname for a control. See the demo under Basics\Bootstrap for the use of Bootstrap CSS with web controls.
3)
There is no direct HTML equivalent element to a dashboard control, so it is normal that such complex control cannot be mapped to a (simple) HTML element.

But how to insert a dashboard component inside an html page.



Thx



Eric

I'm not sure I understand your question. If you drop the component on the form at design-time, it will be automatically displayed in the form HTML page.

What else specifically do you want to do?