I have several editors on a page, some are dynamically added and removed from the page. I noticed that the new 615 version offers a new property called ToolProviderID for multiple editors to share the same toolbar. My page is getting really heavy with all these editors and would like to take advantage of this, but don't know how. I found this explanation of the property: http://www.telerik.com/help/aspnet-ajax/telerik.web.ui-telerik.web.ui.radeditor-toolproviderid.html. What I want to know though is what kind of control should I point this property to? I can't count on all my editors to be on the page all the time, so I can't use one for the master toolbar since it might not be there after a postback. Should I add an invisible editor to my page and point the ToolProviderID to it, or can I point it to something like <div runat=server id="shared_toolbar"></div>?