Reference: View Elements
View Structure Overview
Web Central views are written in XML. In the most basic view, the top-most
<view>
element contains a
<dataSource>
followed by
<panel>
elements. The
<panel> type
attribute can be set to
form
,
grid
,
columnReport
,
console
,
tree
, or custom
html
content. A simple view AXVW file with two panels is given below:
<view version="2.0">
<js file="my-script.js"/>
<layout file="2panels.axvw"/>
<dataSource>
...tables
and fields and restrictions...
</dataSource>
<panel type="grid" layout="mainLayout" region="west">
...user
interface options...
</panel>
<panel type="form" columns="1" layout="mainLayout" region="center">
...user
interface options...
</panel>
</view>