File RadSplitter.cs
In function AddAttributesToRender :
writer.AddAttribute(HtmlTextWriterAttribute.Style, String.Format("width:1px;height:1px;{2}{3}visibility:{4};{5}", widthAttr, heightAttr, backColorAttr, absolutePositioning, visibleAttr, borderAttr));
Correct syntax is :
writer.AddAttribute(HtmlTextWriterAttribute.Style, String.Format("width:{0};height:{1};{2}{3}visibility:{4};border-width:{5};", widthAttr, heightAttr, backColorAttr, absolutePositioning, visibleAttr, borderAttr));
this error modifies the behavior of control vertical splitter.
In function AddAttributesToRender :
writer.AddAttribute(HtmlTextWriterAttribute.Style, String.Format("width:1px;height:1px;{2}{3}visibility:{4};{5}", widthAttr, heightAttr, backColorAttr, absolutePositioning, visibleAttr, borderAttr));
Correct syntax is :
writer.AddAttribute(HtmlTextWriterAttribute.Style, String.Format("width:{0};height:{1};{2}{3}visibility:{4};border-width:{5};", widthAttr, heightAttr, backColorAttr, absolutePositioning, visibleAttr, borderAttr));
this error modifies the behavior of control vertical splitter.