31 lines
1.6 KiB
HTML
31 lines
1.6 KiB
HTML
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
<title>Customizing the Grid</title>
|
|
<!-- YAHOO UI Utilities Lib, you will need to replace this with the path to your YUI lib file -->
|
|
<script type="text/javascript" src="http://us.js2.yimg.com/us.js.yimg.com/lib/common/utils/2/utilities_2.1.0.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="../../resources/css/reset-min.css" />
|
|
<link rel="stylesheet" type="text/css" href="../../resources/css/grid.css" />
|
|
|
|
<script type="text/javascript" src="../../yui-ext.js"></script>
|
|
<script type="text/javascript" src="PropsGrid.js"></script>
|
|
<script type="text/javascript" src="custom-grid.js"></script>
|
|
|
|
<!-- Common Styles for the examples -->
|
|
<link rel="stylesheet" type="text/css" href="../examples.css" />
|
|
</head>
|
|
<body>
|
|
<div class="example-info">
|
|
To view the source of this page, right click (Mac users control+click) in this frame and select "View Source" or "This Frame"->"View Source".
|
|
</div>
|
|
<h1>Customizing the Grid</h1>
|
|
<p>This example shows how to extend the grid to create a customized grid. The customized grid is an implementation of a Visual Studio Properties Editor.</p>
|
|
<p>Note that the js is not minified so it is readable. See <a href="custom-grid.js">custom-grid.js</a> for the grid creation code
|
|
and <a href="PropsGrid.js">PropsGrid.js</a> for the extended grid code.</p>
|
|
|
|
<!-- a place holder for the grid. requires the unique id to be passed in the javascript function, and width and height ! -->
|
|
<div id="props-grid" style="overflow: hidden; width: 275px;"></div>
|
|
|
|
</body>
|
|
</html>
|