CONTROL.html.ftl 731 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<#--  content  -->
<#assign content>
    :showBusyIndicator="${ctrl.isShowBusyIndicator()?c}"
    <#if ctrl.getPSControlActions()??>
    <#list ctrl.getPSControlActions() as action>
    <#if action.getPSAppDEMethod?? && action.getPSAppDEMethod()??>
    ${action.name?lower_case}Action='${action.getPSAppDEMethod().getCodeName()}' 
    </#if>
    </#list>
    </#if>
  <#if view.getViewType() == 'DETREEEXPVIEW'>
    :isSelectFirstDefault="true"
    :isBranchAvailable="true"
  </#if>
  <#if view.getViewType() == 'DEPICKUPTREEVIEW'>
    :isSingleSelect="isSingleSelect"
    :selectedData="selectedData"
tony001's avatar
tony001 committed
18
    @nodedblclick="tree_nodedblclick($event)"
19 20 21 22 23
  </#if>
</#assign>
<#ibizinclude>
../@MACRO/HTML/DEFAULT.html.ftl
</#ibizinclude>