Telerik RadToolBar fully supports templates. You can embed any content inside a Telerik RadToolBar template, including HTML markup and ASP.NET server controls, as well as other third-party controls (and actually any control from Telerik RadControls for ASP.NET suite).
The content of the template is defined into the radtoolbartemplatebutton child control of Telerik RadToolBar.
Example
This example demonstrated a combobox defined in html tags.
| |
Copy Code |
|
<rad:radtoolbar runat="server" id="Radtoolbar4" skin="Office2003" UseFadeEffect="True"> <items> <rad:radtoolbarbutton DisplayType="ImageOnly" AccessKey="n" Tooltip="New (Alt+N)" CommandName="New"/> <rad:radtoolbartemplatebutton> <ButtonTemplate> <select> <option>Template</option> </select> </ButtonTemplate> </rad:radtoolbartemplatebutton> </items> </rad:radtoolbar> |
See Also