segmented + multiview html initialization

please provide an example of segmented + multiview html initialization as opposed to js initialization. Could not find any on your website/forum

<div view="layout">
	<div view="segmented" multiview="true" value="1">
		<config name="on" onAfterTabClick="onAfterTabClick()"></config>
		<config stack='options'>
			<config id="1" value="parameters"></config>
			<config id="2" value="configuration"></config>
		</config>
	</div>
	<div view="multiview" id="multiviewId">
		<config stack='cells'>
			<config id="parametersView" view="template" 
template="parameters"></config>
			<config id="configurationView" view="template" 
template="configuration"></config>
		</config>
	</div>
</div>

Here you are: http://webix.com/snippet/1914a86f.

Please, note that ids of segmented options and related views must coincide.