or
Is it possible to hide the tab header and replace the tab selection with a wizard step approach; by using next and previous navigation within the tab; and show the tab position with images in the form of step 1 - step 2 - Step 3?
Thanks,
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()