HI
I have Entities of 2 levels composition where I have checked multiline-cell both the tables but only first level composition table is scrolling the lines but not the 2nd level composition table as follows:
<groupBox id="annualObjectiveLineBox"
caption="msg://com.inteacc.erp.entity.td/AnnualObjective.annualObjectiveLine">
<table id="annualObjectiveLineTable"
multiLineCells="true"
width="100%">
<actions>
<action id="create"
openType="THIS_TAB"/>
<action id="edit"/>
<action id="remove"/>
</actions>
<columns>
<column id="objectiveNumber"/>
<column id="name"/>
<column id="description"/>
<column id="weight"/>
</columns>
<rows datasource="annualObjectiveLineDs"/>
<buttonsPanel>
<button id="addObjBtn"
action="annualObjectiveLineTable.create"
caption="NEW OBJECTIVE"/>
<button action="annualObjectiveLineTable.edit"/>
<button action="annualObjectiveLineTable.remove"
caption="DELETE"/>
</buttonsPanel>
</table>
<table id="annualObjectiveLineEvaluationTable"
editable="true"
height="200px"
multiLineCells="true"
width="100%">
<actions>
<action id="edit"
openType="DIALOG"/>
</actions>
<columns>
<column id="employeeSelfEvaluation"
editable="true"/>
</columns>
<rows datasource="annualObjectiveLineEvaluationDs"/>
<buttonsPanel>
<button/>
<button action="annualObjectiveLineEvaluationTable.edit"/>
</buttonsPanel>
</table>
</groupBox>
Isn’t supported?