SS
Suresh Sekarean
Syncfusion Team
October 17, 2007 01:52 AM UTC
Hi Richard,
Sorry for this time delay in response.
Toolbar's root table width is rendered as '1px' even setting the ToolBar width to 100%. This makes the Toolbar not to fit with Browser width.
Please include the following code snippet in the 'Page Load' event which resize the Root Table in ClientSide.
[C#]
protected void Page_Load(object sender, EventArgs e)
{
Page.RegisterClientScriptBlock("Onload", @"<script type='text/javascript'>window.onload=OnClientload;function OnClientload(){document.getElementById('"+ToolBar1.ID+"_rootTable').style.width='100%';}</script>");
}
Please try this and let us know if this helps.
Thanks for using Syncfusion controls.
Regards,
Sureshsekaran.