Skip to content

Instantly share code, notes, and snippets.

@cfsilence
Created July 16, 2012 17:52
Show Gist options
  • Save cfsilence/3124014 to your computer and use it in GitHub Desktop.
Save cfsilence/3124014 to your computer and use it in GitHub Desktop.
laf-extjs-ui-demo
<script>
Ext.create('Ext.window.Window', {
title: 'Hello',
height: 200,
width: 400,
layout: 'fit',
items: {
xtype: 'grid',
border: false,
columns: [{header: 'World'}],
store: Ext.create('Ext.data.ArrayStore', {})
}
}).show();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment