-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfoo-screen.xml
23 lines (23 loc) · 924 Bytes
/
foo-screen.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<window xmlns="http://schemas.haulmont.com/cuba/window.xsd"
caption="Custom datasource with paging"
class="com.company.customdatasource.web.screens.FooScreen"
messagesPack="com.company.customdatasource.web.screens">
<dsContext>
<collectionDatasource id="foosDs"
allowCommit="false"
class="com.company.customdatasource.entity.Foo"
datasourceClass="com.company.customdatasource.web.screens.customdatasources.FooCollectionDatasource"/>
</dsContext>
<layout>
<table height="100%"
width="100%">
<columns>
<column id="num"/>
<column id="name"/>
</columns>
<rows datasource="foosDs"/>
<rowsCount/>
</table>
</layout>
</window>