3 Answers, 1 is accepted

$find('RadDockZone1').get_element().style.float = "left";
Keep in mind that $find('RadDockZone_ClientID') returns the dockZone client-side object
Hope this helps!

'null' is null or not an object
Dim
zone As New RadDockZone()
updatepanel2 =
New UpdatePanel()
updatepanel2.ID =
"UpdatePanelDoc" + cnt.ToString()
zone.ID =
"zone" + cnt.ToString()
zone.Orientation = Orientation.Horizontal
zone.FitDocks =
False
Dim strScript1 As String
strScript1 = "<script language=javascript>"
strScript1 +=
"$find('zone').get_element().style.float = left;"
strScript1 +=
"<"
strScript1 +=
"/script>"
Page.RegisterStartupScript(
"MSGE", strScript1)
i also tried with
strScript1 += "$find('zone.ClientID').get_element().style.float = left;"
But its also not workg n gav me d same error
Thanks

I got the solution.
I simply gave
zone.Style(
"float") = "left"
without any javascript and is working fine
ie,
Dim
zone As New RadDockZone()
updatepanel2 =
New UpdatePanel()
updatepanel2.ID =
"UpdatePanelDoc" + cnt.ToString()
zone.ID =
"zone" + cnt.ToString()
zone.Orientation = Orientation.Vertical
zone.BorderWidth = 2
zone.FitDocks =
False
zone.Style(
"float") = "left"
Thanks....