<data xmlns:x="http://webix.com/xml">
	<x:ui>
		<x:datatable autoheight="true" width="400">
			<x:column width="150" id="firstname">
				First Name
			</x:column>
			<x:column width="150" id="lastname">
				Last Name
			</x:column>
			<x:column fillspace="true" template="{obj.value}">
				Age
			</x:column>

		    <x:data>
		        <li firstname="Alex" lastname="Wolski"> 55</li>
		        <li firstname="Rassel" lastname="Brown">42</li>
		    </x:data>
		</x:datatable>
	</x:ui>
</data>