• nc前端合计行、按钮组


    nc前端合计行、按钮组

    1.无表体和单表体的合计行加法

    只要卡片下
    如果是只有表头要合计行就只留ShowTotalLine;如果是只有表体要合计行就只留ShowTotalLineTabcodes
    在这里插入图片描述

    2.多表体的合计行加法

    表头卡片下和列表下都要
    在这里插入图片描述
    在这里插入图片描述

    3.档案的合计行加法

    重写一下列表模板
    在这里插入图片描述
    在这里插入图片描述

    4.单据报表的合计行加法

    在这里插入图片描述

    5.按钮组

    卡片下列表下都要
    在这里插入图片描述

    	
    	<bean id="commitMenu" class="nc.funcnode.ui.action.MenuAction">
    		<property name="code" value="MaintainMenu" />
    		<property name="name">
    			<bean class="nc.ui.uif2.I18nFB">
    				<property name="resDir" value="提交组" />
    				<property name="resId" value="提交组" />
    				<property name="defaultValue" value="提交组" />
    			bean>
    		property>
    		<property name="actions">
    			<list>
    				<ref bean="commitScriptAction" />
    				<ref bean="unCommitScriptAction" />
    			list>
    		property>
    	bean>
    	
    	
    	<bean id="approveMenu" class="nc.funcnode.ui.action.MenuAction">
    		<property name="code" value="MaintainMenu" />
    		<property name="name">
    			<bean class="nc.ui.uif2.I18nFB">
    				<property name="resDir" value="审批组" />
    				<property name="resId" value="审批组" />
    				<property name="defaultValue" value="审批" />
    			bean>
    		property>
    		<property name="actions">
    			<list>
    				<ref bean="approveScriptAction" />
    				<ref bean="uNApproveScriptAction" />
    				<ref bean="pFApproveStatusInfoAction" />
    			list>
    		property>
    	bean>
    	
    	
    	<bean id="scMenu" class="nc.funcnode.ui.action.MenuAction">
    		<property name="code" value="MaintainMenu" />
    		<property name="name">
    			<bean class="nc.ui.uif2.I18nFB">
    				<property name="resDir" value="输出组" />
    				<property name="resId" value="输出组" />
    				<property name="defaultValue" value="输出" />
    			bean>
    		property>
    		<property name="actions">
    			<list>
    				<ref bean="metaDataBasedPrintAction" />
    				<ref bean="metaDataBasedPrintActiona" />
    				<ref bean="outputAction" />
    			list>
    		property>
    	bean>
    
    • 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
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55

    弹框

    MessageDialog.showErrorDlg((Container)getEditor(), "提示""提示信息");
    
    • 1
  • 相关阅读:
    Java8-新特性
    R语言结构方程模型(SEM)在生态学领域中的实践应用
    Redis教程
    ThinkPad电脑HDMI接口失灵如何解决?
    Hive用户中文使用手册系列(一)
    断网情况下,华为init接口持续调用,导致手机耗电严重
    AndroidStudio怎么查看Kotlion Bytecode,也就是查看kotlion的字节码
    对Spring Bean的一些思考(对Bean的理解及命名问题)
    矩阵分析与应用(22)
    C++静态成员变量必须在类的定义之外进行声明 (error LNK2001: unresolved external symbol)
  • 原文地址:https://blog.csdn.net/weixin_45714641/article/details/132691966