How Can We Help?
Issue
In XMWorkspace, Browse Page controls may not display their values. The underlying control contains the value but it is not displayed.
This is caused by a styling issue on the underlying Dev Express control due to enforcing a “strict” DOCTYPE on all controls. The styling issue causes the font-size attribute to be set to 0 (zero) on all td elements:
td.dxic
{
font-size: 0;
}
Resolution
To resolve this, override the style in the style.css file in your skin directory by adding the following CSS rule:
td.dxic
{
font-size: inherit !important;
}
This issue has been encountered in v6.5 of XMWorkspace.
For further information see the following ticket in Dev Express Knowledge Base:
Comments are closed.