⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 isc_grids.js

📁 javascript 很酷的类库
💻 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
 */
//// This script will load all of the Isomorhic SmartClient Application Framework libraries for you//// The idea is that in your app file you can just load the script "Isomorphic_SmartClient.js" which// in a production situation would be all of the scripts jammed together into a single file.//// However, it's easier to work on the scripts as individual files, this file will load all of the// scripts individually for you (with a speed penalty).//		var libs = 	[		//"language/Array_util",		// utility array methods, not commonly used		"language/List",			    // equivalent functionality to a native Array, as a isc.Class		"language/Tree",				// generic isc.Tree implementation		//"language/Tree_util",			// additional, not commonly used Tree routines		//"language/ObjectTree",		// wrapper so you can treat an arbitrary object as a tree		"language/Selection",			// provides a selection of a list, including selecting based                                        // on mouse events        //>DetailViewer		"widgets/DetailViewer",			// show attributes of one or more objects as a vertical table        //<DetailViewer//		"widgets/Toolbar",				// collection of buttons		"widgets/GridRenderer",			// high speed, flexible, feature-rich table		"widgets/ListGrid",			// multi-column viewer for a list of objects        "widgets/TreeGrid",			// viewer for a tree of objects                        "widgets/RecordEditor",         // specialized listViewer for editing a single record		//"widgets/Finder",				// specialized tree viewer that resembles the Macintosh isc.Finder		//"widgets/Explorer",			// specialized tree viewer that resembles the left part of a Windows Explorer		//"widgets/ExplorerList",		// specialized tree viewer that resembles the right part of a Windows Explorer        //"widgets/ScrollingMenu",        // specialized listViewer with menu type event-handling                                         // behaviour, but scrollable and ready for data-binding        //>Menu        				"widgets/Menu",					// pull-down or context menus        //<Menu        //>MenuButton		"widgets/MenuButton",			// button that shows a menu on click        //<MenuButton        //>TreeMenuButton        "widgets/TreeMenuButton",        // Button/Menu with hierachichal, selectable data        //<TreeMenuButton        //>DOMGrids        "language/DOMTree",             // Tree model that understands DOMs (XML and HTML)        "widgets/DOMGrid",              // TreeGrid subclass specialized to show DOMs        //<DOMGrids            //>Menubar		"widgets/Menubar",				// set of menus shown as a menubar        //<Menubar		"language/CellSelection"		// provides a selection of a grid, including selecting based                                         // on mouse events	];//<STOP PARSING // The following code only executes if the script is being dynamically loaded.// the following statement allows a page that is not in the standard location to take advantage of// dynamically loaded scripts by explicitly setting the window.isomorphiDir variable itself.if (! window.isomorphicDir) window.isomorphicDir = "../isomorphic/";// dynamic loadingfunction iscLoadLibs() {	for(var i=0,l=libs.length;i<l;i++) {		if (!libs[i]) continue;		if (window.UNSUPPORTED_BROWSER_DETECTED == true) break;		document.write("<"+"SCRIPT SRC=" + window.isomorphicDir + "system/" + libs[i]+".js><"+"/SCRIPT>");	}	window.defaultStatus = "";}iscLoadLibs();

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -