|
Article relates to
|
RadFormDecorator
|
|
Created by
|
Martin Ivanov
|
|
Last modified
|
Martin Ivanov
|
|
Last modified by
|
Martin Ivanov
|
Abstract:
This article is related to the workaround of the problem with skinned form buttons
(<input type="button" /> or
<button type="button">...</button>) in hidden RadTabStrip pages and RadSplitter panes.
Problem:
Skinned buttons appear distorted and not skinned when added to hidden multipages and splitter panes, because the initial state of the real inputs inherits the display: none of their parent (and thus their with and height is null).
Workaround:
Add the following skin-independent CSS into the
<head>...</head> section or into the stylesheets of your website:
<style type="text/css">
.radfdSkinnedFormButton
{
width: auto !important;
}
</style>
Please
Sign In
to rate this article.