import { IPSAppDEMultiDataView } from './ipsapp-demulti-data-view'; import { IPSAppDEWFView } from './ipsapp-dewfview'; /** * * 继承父接口类型值[DEGRIDVIEW,DEGRIDVIEW2,DEGRIDVIEW4] * @export * @interface IPSAppDEGridView */ export interface IPSAppDEGridView extends IPSAppDEMultiDataView, IPSAppDEWFView { /** * 表格行激活模式 * @description 值模式 [应用表格数据激活模式] {0:无、 1:单击、 2:双击 } * @type {( number | 0 | 1 | 2)} */ gridRowActiveMode: number | 0 | 1 | 2; /** * 支持行编辑 * @type {boolean} */ enableRowEdit: boolean; /** * 视图默认进入行编辑 * @type {boolean} */ rowEditDefault: boolean; }