📄 blurbitem.js
字号:
/*
* Isomorphic SmartClient
* Version 6.5 (2008-04-30)
* Copyright(c) 1998-2007 Isomorphic Software, Inc. All rights reserved.
* "SmartClient" is a trademark of Isomorphic Software, Inc.
*
* licensing@smartclient.com
*
* http://smartclient.com/license
*/
//> @class BlurbItem// FormItem intended for inserting blurbs of instructional HTML into DynamicForms.// <p>// Set the <code>defaultValue</code> of this item to the HTML you want to embed in the form.// @visibility external//<isc.ClassFactory.defineClass("BlurbItem", "FormItem");isc.BlurbItem.addProperties({ // avoid attempting to save this item in the form's values array shouldSaveValue:false, //> @attr blurbItem.height (boolean : false : IRW) // don't specify a height so the table cell will expand // to show the entire contents. Note that this can // mess up dynamic height calculations in forms. // @group appearance //< height:null, //> @attr blurbItem.showTitle (boolean : false : IRW) // Blurb items show no title by default. // @group appearance // @visibility external //< showTitle:false, //> @attr blurbItem.colSpan (number : "*" : IRW) // By default, texts span all remaining columns // @group appearance // @visibility external //< colSpan:"*", //> @attr blurbItem.startRow (boolean : true : IRW) // These items are in a row by themselves by default // @group appearance //< startRow:true, //> @attr blurbItem.endRow (boolean : true : IRW) // These items are in a row by themselves by default // @group appearance //< endRow:true, //> @attr blurbItem.textBoxStyle (CSSStyleName : "staticTextItem" : IRW) // Base css style for this item. // @group appearance // @visibility external //< textBoxStyle:"staticTextItem", // override emptyDisplayValue to show so styling will work properly emptyDisplayValue:" " //> @attr blurbItem.wrap (boolean : null : IRW) // @include FormItem.wrap // @group appearance // @visibility external //< //>@attr blurbItem.clipValue (boolean : false : IRW) // @include FormItem.clipValue // @group appearance // @visibility external //< //clipValue:null, });
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -