MWF.xDesktop.requireApp("process.Xform", "$Module", null, false); /** @class Table 表格组件。 * @o2cn 表格 * @example * //可以在脚本中获取该组件 * //方法1: * var table = this.form.get("fieldId"); //获取组件 * //方法2 * var table = this.target; //在组件本身的脚本中获取 * @extends MWF.xApplication.process.Xform.$Module * @o2category FormComponents * @o2range {Process|CMS|Portal} * @hideconstructor */ MWF.xApplication.process.Xform.Table = MWF.APPTable = new Class( /** @lends MWF.xApplication.process.Xform.Table# */ { Extends: MWF.APP$Module, _afterLoaded: function(){ /** * @summary table,DOM对象 * @member {Element} table * @memberOf MWF.xApplication.process.Xform.Table# * @example * //可以在脚本中获取该组件 * var table = this.form.get("fieldId").table; //获取组件对象 */ if (!this.table) this.table = this.node.getElement("table"); //var tds = this.node.getElements("td"); var rows = this.table.rows; for (var i=0; i