evt_event_notify_lov.lview 2 KB
Newer Older
Spencer Chang's avatar
Spencer Chang committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
<?xml version="1.0" encoding="UTF-8"?>
<a:screen xmlns:a="http://www.leaf-framework.org/application">
    <a:view>
        <script type="text/javascript"><![CDATA[
		function checkDS(){
			$('sys_notify_lov_ds').query();
		}
	
		function rowClick(grid,row,record){
				$('${/parameter/@lovid}').commit(record);
			}
		
	]]></script>
        <a:dataSets>
            <a:dataSet id="sys_notify_lov_query_ds" model="sys.EVT2010.sys_notify_eventnotify_lov">
                <a:fields>
                    <a:field name="notify_code" prompt="SYS_NOTIFY.NOTIFY_CODE"/>
                    <a:field name="description" prompt="SYS_NOTIFY.DESCRIPTION"/>
                </a:fields>
            </a:dataSet>
            <a:dataSet id="sys_notify_lov_ds" model="sys.EVT2010.sys_notify_eventnotify_lov" queryDataSet="sys_notify_lov_query_ds">
                <a:fields>
                    <a:field name="notify_code" prompt="SYS_NOTIFY.NOTIFY_CODE"/>
                    <a:field name="description" prompt="SYS_NOTIFY.DESCRIPTION"/>
                </a:fields>
            </a:dataSet>
        </a:dataSets>
        <a:screenBody>
            <a:form labelWidth="140" title="HAP_QUERY_TITLE" width="530">
                <a:box column="2" labelWidth="130">
                    <a:textField name="notify_code" bindTarget="sys_notify_lov_query_ds"/>
                    <a:textField name="description" bindTarget="sys_notify_lov_query_ds"/>
                </a:box>
            </a:form>
            <a:vBox>
                <a:button click="checkDS" text="HAP_QUERY"/>
            </a:vBox>
            <a:grid bindTarget="sys_notify_lov_ds" height="335" navBar="true" width="530">
                <a:columns>
                    <a:column name="notify_code" width="240"/>
                    <a:column name="description" width="285"/>
                </a:columns>
                <a:events>
                    <a:event name="rowclick" handler="rowClick"/>
                </a:events>
            </a:grid>
        </a:screenBody>
    </a:view>
</a:screen>