HOW-TO Wrapping the text in the titlebar of a DockableObject in RadDock v1.x DESCRIPTION When you have long text in the dockable object's titlebar, the text is not wrapped automatically. This is caused by the inner TD tag of the titlebar which has nowrap enabled. We are going to implement titlebar templates in version 2 of RadDock so it will be much easier to manage the titlebar content in the next version. SOLUTION The workaround for now, is to create a table inside the Text property like this: <raddk:RadDockableObject id=RadDockableObject1 Text=" <table style='border:1px solid red;width:100%;'> <tr> <td class='RadDockableObjectTitle' unselectable='on'> This is the very very very VERY long text which has to be wrapped </td> </tr> </table> "> </raddk:RadDockableObject>
Resources Buy Try