All Products
Demos
Pricing
Services
Blogs
Docs & Support
Search
Shopping cart
Login
Contact Us
Get A Free Trial
close mobile menu
Telerik Forums
/
UI for ASP.NET AJAX Forum
/
Dock
/
Inline style Min Width and Height
Cancel
Telerik UI for ASP.NET AJAX
Resources
Buy
Try
Feed for this thread
2 posts, 0 answers
David Edwards
6 posts
Member since:
Aug 2009
Posted 25 Nov 2009
Link to this post
The zone renders in rendering with an inline style and a min height of 10 and min width of 100 %.
How do I remove this or make the min height 100 %?
Obi-Wan Kenobi
460 posts
Member since:
Aug 2007
Posted 01 Dec 2009
Link to this post
By default min-width and min-height are 10px.
If a zone with such a definition is created on the server:
<
telerik:RadDockZone
ID
=
"RadDockZone1"
runat
=
"server"
>
</
telerik:RadDockZone
>
The rendered html will be:
<
div
>
<
div
id
=
"RadDockZone1"
class
=
"RadDockZone RadDockZone_Default rdVertical "
style
=
"min-width:10px;min-height:10px;"
>
<!-- 2009.3.1104.0 -->
<
div
class
=
"RadDock RadDock_Default rdPlaceHolder"
id
=
"RadDockZone1_D"
style
=
"display:none;"
>
<!-- -->
</
div
>
<
input
id
=
"RadDockZone1_ClientState"
name
=
"RadDockZone1_ClientState"
type
=
"hidden"
/>
</
div
>
</
div
>
Could you please paste your RadDockZone's definition
Back to Top
Close