123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- XFormsTable.prototype = new XFormsGroup;
- function XFormsTable (strParentId, strAlert, strHelp, strHint, strAccesskey, strBind, nCellspacing, strClass, bDisabled, strId, nNavindex,
- strOverflow, bPopup, strRef, strScroll, strShowEffect, strStyle, strTag, strVisibility, strUserDefineAttrib)
- {
- if (!strId)
- {
- return;
- }
-
- XFormsGroup.call(this, strParentId, strAlert, strHelp, strHint, strAccesskey, strBind, strClass, bDisabled, strId, nNavindex,
- strOverflow, bPopup, strRef, strScroll, strShowEffect, strStyle, strTag, strVisibility, strUserDefineAttrib);
-
- /**
- * Attribute
- */
- this.attribute["cellspacing"] = nCellspacing;
- }
- XFormsTR.prototype = new XFormsControl;
- function XFormsTR (strParentId, strAlert, strHelp, strHint, strAccesskey, strClass,
- bDisabled, strId, nNavindex, strStyle, strTag, strVisibility, strUserDefineAttrib)
- {
- if (!strId)
- {
- return;
- }
-
- XFormsControl.call(this, strParentId, strAlert, strHelp, strHint, strAccesskey, strClass,
- bDisabled, strId, nNavindex, strStyle, strTag, strVisibility, strUserDefineAttrib);
- }
- XFormsTR.prototype.refresh = function ()
- {
- var arKeyset = this.children.keys();
- for (var i=0; i<arKeyset.length; i++)
- {
- var strId = arKeyset[i];
- var objChild = this.children.item(strId);
-
- if (null != objChild && objChild instanceof XFormsElement && objChild.refresh)
- {
- objChild.refresh();
- }
- }
- };
- XFormsTD.prototype = new XFormsGroup;
- function XFormsTD (strParentId, strAlert, strHelp, strHint, strAccesskey, strBind, strClass, bDisabled, strId, nNavindex,
- strOverflow, bPopup, strRef, strScroll, strShowEffect, strStyle, strTag, strVisibility, strUserDefineAttrib)
- {
- if (!strId)
- {
- return;
- }
-
- XFormsGroup.call(this, strParentId, strAlert, strHelp, strHint, strAccesskey, strBind, strClass, bDisabled, strId, nNavindex,
- strOverflow, bPopup, strRef, strScroll, strShowEffect, strStyle, strTag, strVisibility, strUserDefineAttrib);
- }
|