It seems that after a PB the LayoutColumn loses its span if i have a CSS set.
Ex:
3 Columns, span=3, span=6, span=3. middle layoutcolumn is centered. after a PB, all 3 columns are displaying like a span=12
This only happens on a CSS to the CompositeLayoutColumn and when i use telerik postback controls - panel or manager. the asp UpdatePanel does not wipe out the Column spans. If the CSS is removed on the CompositeLayoutColumn it doesnt have any issues and stays where it should according to the spanning, 3, 6, and 3
<
telerik:RadPageLayout
runat
=
"server"
GridType
=
"Fluid"
ShowGrid
=
"false"
>
<
telerik:LayoutRow
>
<
Columns
>
<
telerik:LayoutColumn
Span
=
"4"
HiddenXs
=
"true"
SpanSm
=
"1"
SpanMd
=
"2"
SpanLg
=
"3"
/>
<
telerik:CompositeLayoutColumn
CssClass
=
"fieldsetOpt0"
Span
=
"4"
SpanXs
=
"12"
SpanSm
=
"10"
SpanMd
=
"8"
SpanLg
=
"6"
>
</
telerik:CompositeLayoutColumn
>
<
telerik:LayoutColumn
Span
=
"4"
HiddenXs
=
"true"
SpanSm
=
"1"
SpanMd
=
"2"
SpanLg
=
"3"
/>
</
Columns
>
</
telerik:LayoutRow
>
</
telerik:RadPageLayout
>
.fieldsetOpt0 {
-webkit-box-shadow: 5px 5px 2.5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 5px 5px 2.5px 0px rgba(0,0,0,0.75);
box-shadow: 5px 5px 2.5px 0px rgba(0,0,0,0.75);
box-shadow: 5px 5px 2.5px #101010;
border-radius: 10px;
border-color: black;
border-style: solid;
border-width: 1px;
padding: 2.5px;
width: 100%;
}