or
Hi,
I've 2 RadDockZones (Left & Right) in my web ASP.Net AJAX web application.
In Leftside zone I've usercontrols like SingleLineText, Dropdown, CheckBox etc.
I can drag these controls from left zone to Right zone. But I want to prevent the moving from Right zone to left zone or any other part in that page.
//Thanks,
<
ajax:RadComboBox
ID
=
"DdlPoCat"
runat
=
"server"
Width
=
"280px"
EnableLoadOnDemand
=
"True"
EnableVirtualScrolling
=
"true"
EnableAutomaticLoadOnDemand
=
"true"
>
<
ItemTemplate
>
<
asp:CheckBox
runat
=
"server"
ID
=
"chkPoCat"
Text='<%#Eval("ParamDesc")%>'/>
</
ItemTemplate
>
</
ajax:RadComboBox
>
dsPOCategory = getAppParam("PO_CAT")
DdlPoCat.DataSource = dsPOCategory
DdlPoCat.DataTextField = "ParamDesc"
DdlPoCat.DataValueField = "ParamId"
DdlPoCat.DataBind()