0
1
Fork 0
hedera-web-mindshore/forms/news/new/ui.xml

78 lines
1.7 KiB
XML
Raw Normal View History

2015-03-06 23:33:54 +00:00
<vn>
<vn-group>
2015-12-10 13:48:43 +00:00
<vn-param id="new-id"/>
<vn-hash-param key="new" param="new-id"/>
2022-05-24 21:11:12 +00:00
<db-form id="iter" on-status-changed="this.onStatusChange()">
<db-model
id="model"
property="model"
updatable="true"
2022-05-24 21:11:12 +00:00
on-operations-done="this.onOperationsDone()">
<custom>
2022-05-28 00:37:24 +00:00
SELECT id, title, text, tag, priority, image
FROM news WHERE id = #new
</custom>
2015-03-06 23:33:54 +00:00
<sql-batch property="batch">
<custom>
<item name="new" param="new-id"/>
</custom>
2015-03-06 23:33:54 +00:00
</sql-batch>
</db-model>
</db-form>
2022-05-24 21:11:12 +00:00
<db-param form="iter" column="text" on-changed="this.onBodyChange()"/>
2015-03-06 23:33:54 +00:00
</vn-group>
<div id="title">
<h1><t>AddEditNew</t></h1>
</div>
2015-09-16 16:11:15 +00:00
<div id="actions">
2016-09-19 06:40:18 +00:00
<htk-bar-button
icon="close"
tip="_Return"
2022-05-24 21:11:12 +00:00
on-click="this.onReturnClick()"/>
2022-05-21 21:31:56 +00:00
<htk-bar-button
icon="check"
tip="_Accept"
2022-05-24 21:11:12 +00:00
on-click="this.onAcceptClick()"/>
</div>
2015-03-06 23:33:54 +00:00
<div id="form" class="new">
2022-05-28 00:37:24 +00:00
<div class="box form vn-w-sm">
<htk-image
form="iter"
column="image"
class="photo"
directory="news"
subdir="full"
full-dir="full"
editable="true"
conn="conn"/>
<div class="vn-pa-lg">
<div class="form-group">
<label><t>Title</t></label>
<htk-entry form="iter" column="title"/>
</div>
<div class="form-group tag-priority">
<div>
<label><t>Tag</t></label>
<htk-combo form="iter" column="tag">
<db-model property="model">
<custom>
SELECT name, description FROM newsTag
ORDER BY description
</custom>
</db-model>
</htk-combo>
</div>
<div>
<label><t>Priority</t></label>
<htk-entry form="iter" column="priority"/>
</div>
</div>
<div class="form-group">
<label><t>NewBody</t></label>
<textarea id="html-editor"/>
</div>
2015-03-06 23:33:54 +00:00
</div>
</div>
</div>
</vn>