Hi,
Inside Window, how can I put components that are in a panel align to left? Inside window, always they are in center position.
The result is:
___________________
| Test |
| |
|__________________|
I would like:
___________________
|Test |
| |
|__________________|
Inside Window, how can I put components that are in a panel align to left? Inside window, always they are in center position.
<
telerik:RadWindowManager
ID
=
"RadWindowManager1"
runat
=
"server"
>
<
Windows
>
<
telerik:RadWindow
ID
=
"RadWindow1"
runat
=
"server"
Modal
=
"true"
"
>
<
ContentTemplate
>
<
asp:Panel
ID
=
"panTest"
runat
=
"server"
>
<
p
>Test</
p
>
</
asp:Panel
>
</
ContentTemplate
>
</
telerik:RadWindow
>
</
Windows
>
</
telerik:RadWindowManager
>
The result is:
___________________
| Test |
| |
|__________________|
I would like:
___________________
|Test |
| |
|__________________|