ExtJS formBind button on form’s item config
ExtJS' monitorValid config is a cool way to enable/disable a button depending whether the form is valid.
However, the formBind button can only work when the button is placed in a 'button' configuration of the form.
What if we want to put it in the item config together with the rest of the field instead?
GNU / Linux : The Codebreakers
Watch this documentary of how the adoption of FOSS presents opportunities for industry and capacity development, software piracy reduction, and localization and customization for diverse cultural and development needs.
Free hosting from webhost
I just found out yesterday that my hosting provider webhost is giving free hosting with PHP & mySQL and more... I think it's a great news for those who want to have own website without worrying the hosting cost.
I have tested yesterday their hosting account and its great!
Here's what I found out:
1500 MB Disk Space
100,000 MB Bandwidth
Free Subdomain or Your Own Domain
Automated Scripts Installer (20 Popular Scripts)
FTP Access and Web Based File Manager
Easy to use Website Builder
5 MySQL Databases with Full PHP Support
Zend & Curl Enabled
for the developers it also comes with Ruby! and the best thing is no Ads at all!
I'll be going to transfer my blog to this free hosting this weekend.
For you guys want to get the free hosting you can sign up here
Let me test this
testing my blog to twitter....
Blog test via blackberry
Testing this from my blackberry bold
enabling keypress in fields
in extjs API docs at http://www.extjs.com/deploy/dev/docs it's mentioned you can attach key events, however in config it never list the enableKeyEvents parameters (forgot about it??). So basically what you need to do is add the parameter then attach the events as such:
var field = new Ext.form.TextField({ enableKeyEvents: true }); field.on('keypress', function() { //set code });
thats all... if your keypress still not working, just ensure you are working on ext 2.1
