Posts

Showing posts from February, 2015

How to hide Checkbox Label Extjs

hideLabel: true, Example:         {             xtype: 'checkbox',             id: '.............',             fieldLabel: '.....................',             name: '............',             hidden: true,             hideLabel: true,             listeners: {                             }         },

How to load python simple server

Image
Go to docs folder $ python -m SimpleHTTPServer 8003 Run in browser http://127.0.0.1:8003