blob: a5578840954362c8aa0a40e2d730e0915f879df5 [file] [log] [blame]
<Shell xmlns="http://www.eclipse.org/xwt/presentation"
xmlns:x="http://www.eclipse.org/xwt"
xmlns:j="clr-namespace:java.lang"
text="Table Test">
<Shell.layout>
<GridLayout numColumns="1"/>
</Shell.layout>
<Table x:style="BORDER|SINGLE|FULL_SELECTION" HeaderVisible="true" LinesVisible="true">
<TableColumn width="150" text="Name">
<TableColumn.editor>
<TableEditor grabHorizontal= "true" dynamic="true">
<CCombo>
<CCombo.items>
<j:String>"Item1"</j:String>
<j:String>"Item2"</j:String>
</CCombo.items>
</CCombo>
</TableEditor>
</TableColumn.editor>
</TableColumn>
<TableColumn width="150" text="Age"/>
<TableItem>
<TableItem.texts>
<x:Array Type="j:String">
<j:String>Line-Name2</j:String>
<j:String>Line-Age2</j:String>
</x:Array>
</TableItem.texts>
</TableItem>
<TableItem>
<TableItem.texts>
<j:String>Line-Name2</j:String>
<j:String>Line-Age2</j:String>
</TableItem.texts>
<TableItem.editors>
<TableEditor grabHorizontal= "true" column = "0" dynamic="true">
<Button x:style="CHECK"/>
</TableEditor>
</TableItem.editors>
</TableItem>
</Table>
</Shell>