Hi Everyone,
I'm new to telerik and I recently started to explore with it and love it. I build a page with it and I want to have 3 separate collapsible Dock within one page. I created it like this:
My problem is that I have some textbox/combobox in Dock1 and need to create a SqlDataSource in dock2 but use the textbox/combobox as variable in the SqlDataSource. When I try to run it, I get a "Cannot find the Control" for SqlDataSource. Is there any way I can work around this or a simple way of creating such page?
I'm new to telerik and I recently started to explore with it and love it. I build a page with it and I want to have 3 separate collapsible Dock within one page. I created it like this:
<
telerik:RadDockLayout
ID
=
"RadDockLayout2"
runat
=
"server"
>
<
telerik:RadDockZone
ID
=
"RadDockZone3"
runat
=
"server"
Height
=
"300px"
Width
=
"300px"
>
<
telerik:RadDock
ID
=
"RadDock3"
runat
=
"server"
Width
=
"300px"
Title
=
"Dock1"
Text
=
"Dock1"
>
<
Commands
>
<
telerik:DockExpandCollapseCommand
/>
</
Commands
>
<
ContentTemplate
>
--Contents here---
</
ContentTemplate
>
</
telerik:RadDock
>
</
telerik:RadDockZone
>
<
telerik:RadDockZone
ID
=
"RadDockZone4"
runat
=
"server"
Height
=
"300px"
Width
=
"300px"
>
<
telerik:RadDock
ID
=
"RadDock4"
runat
=
"server"
Width
=
"300px"
Title
=
"Dock2"
Text
=
"Dock2"
>
<
Commands
>
<
telerik:DockExpandCollapseCommand
/>
</
Commands
>
<
ContentTemplate
>
--Contents here---
</
ContentTemplate
>
</
telerik:RadDock
>
</
telerik:RadDockZone
>
<
telerik:RadDockZone
ID
=
"RadDockZone5"
runat
=
"server"
Height
=
"300px"
Width
=
"300px"
>
<
telerik:RadDock
ID
=
"RadDock5"
runat
=
"server"
Width
=
"300px"
Title
=
"Dock2"
Text
=
"Dock2"
>
<
Commands
>
<
telerik:DockExpandCollapseCommand
/>
</
Commands
>
<
ContentTemplate
>
--Contents here---
</
ContentTemplate
>
</
telerik:RadDock
>
</
telerik:RadDockZone
>
</
telerik:RadDockLayout
>
My problem is that I have some textbox/combobox in Dock1 and need to create a SqlDataSource in dock2 but use the textbox/combobox as variable in the SqlDataSource. When I try to run it, I get a "Cannot find the Control" for SqlDataSource. Is there any way I can work around this or a simple way of creating such page?