Hello,
i'm developing an application one view of which contains a table with sap.m.RatingIndicator almost in each column. it looks nice in SAP Web IDE (see image001.png) but after deployment looks ugly (see image002.png). what could be wrong? our backend system has version 1.28.31 (7.40 SP15). i've selected the same version in Web IDE for Run with Server and it looks fine.
My XML view part is below
<items> <ColumnListItem> <cells> <ObjectIdentifier title="{EmpName}" text="{Company}"/> <RatingIndicator iconSize="1rem" maxValue="3" value="{path: 'Question1', formatter: '.formatter.string2number'}" class="sapUiSmallMarginBottom" enabled="false" tooltip="{Question1txt}"/> <RatingIndicator iconSize="1rem" maxValue="3" value="{path: 'Question2', formatter: '.formatter.string2number'}" class="sapUiSmallMarginBottom" enabled="false" tooltip="{Question2txt}"/> <RatingIndicator iconSize="1rem" maxValue="3" value="{path: 'Question3', formatter: '.formatter.string2number'}" class="sapUiSmallMarginBottom" enabled="false" tooltip="{Question3txt}"/> <RatingIndicator iconSize="1rem" maxValue="3" value="{path: 'Question4', formatter: '.formatter.string2number'}" class="sapUiSmallMarginBottom" enabled="false" tooltip="{Question4txt}"/> <RatingIndicator iconSize="1rem" maxValue="3" value="{path: 'Question5', formatter: '.formatter.string2number'}" class="sapUiSmallMarginBottom" enabled="false" tooltip="{Question5txt}"/> <RatingIndicator iconSize="1rem" maxValue="3" value="{path: 'Question6', formatter: '.formatter.string2number'}" class="sapUiSmallMarginBottom" enabled="false" tooltip="{Question6txt}"/> <RatingIndicator iconSize="1rem" maxValue="3" value="{path: 'Question7', formatter: '.formatter.string2number'}" class="sapUiSmallMarginBottom" enabled="false" tooltip="{Question7txt}"/> <RatingIndicator iconSize="1rem" maxValue="3" value="{path: 'Question8', formatter: '.formatter.string2number'}" class="sapUiSmallMarginBottom" enabled="false" tooltip="{Question8txt}"/> <RatingIndicator iconSize="1rem" maxValue="3" value="{path: 'Question9', formatter: '.formatter.string2number'}" class="sapUiSmallMarginBottom" enabled="false" tooltip="{Question9txt}"/> <RatingIndicator iconSize="1rem" maxValue="3" value="{path: 'Question10', formatter: '.formatter.string2number'}" class="sapUiSmallMarginBottom" enabled="false" tooltip="{Question10txt}"/> <RatingIndicator iconSize="1rem" maxValue="3" value="{path: 'Duration', formatter: '.formatter.string2number'}" class="sapUiSmallMarginBottom" enabled="false" tooltip="{Durationtxt}"/> </cells> </ColumnListItem> </items>
thanks for any suggestions