- Replaced color picker form control with a more robust version.
This commit is contained in:
parent
6fe068e42d
commit
6e0470771e
1193 changed files with 342 additions and 223 deletions
56
www/extras/extjs/examples/grid/custom-grid.html
vendored
Normal file
56
www/extras/extjs/examples/grid/custom-grid.html
vendored
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||
<title>Customizing the Grid</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
|
||||
|
||||
<!-- GC --> <!-- LIBS --> <script type="text/javascript" src="../../adapter/yui/yui-utilities.js"></script> <script type="text/javascript" src="../../adapter/yui/ext-yui-adapter.js"></script> <!-- ENDLIBS -->
|
||||
<script type="text/javascript" src="../../ext-all.js"></script>
|
||||
|
||||
<!--
|
||||
<script type="text/javascript" src="custom-grid.js"></script>
|
||||
-->
|
||||
<script type="text/javascript" >
|
||||
// create the property grid application (single instance)
|
||||
var CustGrid = function(){
|
||||
return {
|
||||
init : function(){
|
||||
var propsGrid;
|
||||
propsGrid = new Ext.grid.PropertyGrid('props-grid', {
|
||||
nameText: 'Properties Grid',
|
||||
enableCtxMenu: false,
|
||||
enableColumnResize: true
|
||||
});
|
||||
|
||||
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();
|
||||
}/*init*/
|
||||
};
|
||||
}();
|
||||
|
||||
Ext.onReady(CustGrid.init, CustGrid, true);
|
||||
|
||||
</script>
|
||||
|
||||
<!-- Common Styles for the examples -->
|
||||
<link rel="stylesheet" type="text/css" href="../examples.css" />
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript" src="../examples.js"></script><!-- EXAMPLES -->
|
||||
<h1>Property Grid</h1>
|
||||
|
||||
<!-- 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;border:1px solid #c3daf9;"></div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue