Implementována verze DB a převod DB.
Nové DB mají délku nastavenou anotací. ZUL soubory jsou omezeny atributem maxlength. closes #186
This commit is contained in:
@@ -40,6 +40,7 @@
|
||||
value="@bind(vm.filterTemplate.code)"
|
||||
instant="true"
|
||||
onChange="@command('doFilter')"
|
||||
maxlength="@load(vm.lengthText)"
|
||||
sclass="find-grid-textbox" />
|
||||
</div>
|
||||
<div sclass="find-grid-img">
|
||||
@@ -54,6 +55,7 @@
|
||||
value="@bind(vm.filterTemplate.name)"
|
||||
instant="true"
|
||||
onChange="@command('doFilter')"
|
||||
maxlength="@load(vm.lengthText)"
|
||||
sclass="find-grid-textbox" />
|
||||
</div>
|
||||
<div sclass="find-grid-img">
|
||||
@@ -68,6 +70,7 @@
|
||||
value="@bind(vm.filterTemplate.description)"
|
||||
instant="true"
|
||||
onChange="@command('doFilter')"
|
||||
maxlength="@load(vm.lengthDescription)"
|
||||
sclass="find-grid-textbox" />
|
||||
</div>
|
||||
<div sclass="find-grid-img">
|
||||
|
||||
@@ -27,6 +27,7 @@
|
||||
id="code"
|
||||
constraint="@load(vm.constriant)"
|
||||
width="200px"
|
||||
maxlength="@load(vm.lengthText)"
|
||||
value="@bind(vm.dataBean.code)" />
|
||||
</cell>
|
||||
</row>
|
||||
@@ -36,6 +37,7 @@
|
||||
<textbox
|
||||
id="name"
|
||||
width="200px"
|
||||
maxlength="@load(vm.lengthText)"
|
||||
value="@bind(vm.dataBean.name)" />
|
||||
</cell>
|
||||
</row>
|
||||
@@ -45,6 +47,7 @@
|
||||
<textbox
|
||||
id="description"
|
||||
width="300px"
|
||||
maxlength="@load(vm.lengthDescription)"
|
||||
value="@bind(vm.dataBean.description)" />
|
||||
</cell>
|
||||
</row>
|
||||
|
||||
Reference in New Issue
Block a user