📄 headeritem.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 HeaderItem// FormItem for showing a header within a DynamicForm.// <p>// Set the <code>defaultValue</code> of this item to the HTML you want to embed in the form.// @visibility external//<isc.ClassFactory.defineClass("HeaderItem", "FormItem");isc.HeaderItem.addProperties({ // avoid attempting to save this item's value in the form's values array shouldSaveValue:false, //> @attr headerItem.defaultValue (String : "Header" : IRW) // Header text // @group appearance // @visibility external //< defaultValue:"Header", //> @attr headerItem.height (number : 20 : IRW) // Default height of this item // @group appearance //< height:20, //> @attr headerItem.showTitle (boolean : false : IRW) // Don't show a separate title cell for headers // @group appearance // @visibility external //< showTitle:false, //> @attr headerItem.textBoxStyle (FormItemBaseStyle : "headerItem" : IRW) // Base CSS class for this item // @group appearance // @visibility external //< textBoxStyle:"headerItem", //> @attr headerItem.colSpan (measure : "*" : IRW) // by default, headers span all remaining columns // @group appearance // @visibility external //< colSpan:"*", //> @attr headerItem.startRow (boolean : true : IRW) // these items are in a row by themselves by default // @group appearance // @visibility external //< startRow:true, //> @attr headerItem.endRow (boolean : true : IRW) // these items are in a row by themselves by default // @group appearance // @visibility external //< endRow:true, // Override emptyDisplayValue to write out " " so styling will work properly emptyDisplayValue:" ", // Indicate that the developer can't interact directly with the header item content isEditable : function () { return false; } });
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -