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

📄 custom-grid.js

📁 一个使用yui-ext库
💻 JS
字号:
/*
 * yui-ext
 * Copyright(c) 2006, Jack Slocum.
 */

var Example = {
    init : function(){
        var propsGrid = new YAHOO.ext.grid.PropsGrid('props-grid');
		// The props grid takes an object as a data source
		propsGrid.setSource({
			"(name)": "Properties Grid",
			"grouping": false,
			"autoFitColumns": true,
			"productionQuality": false,
			"created": new Date(Date.parse('10/15/2006')),
			"tested": false,
			"version": .01,
			"borderWidth": 1
		});
		propsGrid.render();
    }    
}
YAHOO.ext.EventManager.onDocumentReady(Example.init, Example, true);

⌨️ 快捷键说明

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