Connect with me

Latest Tweets

Category Archives: Info

Chrome issue with ‘specialkey’

ExtJS doesn’t support specialkey event on Google Chrome nor any other key events are supported (keydown,keypress). If you want Google Chrome to support specialkey, keypress, keydown event, then all you have to do is : this.reffield.on(‘keydown’,function(field,evt){ if(evt.getKey() == 17 && … Continue reading

Posted in Featured, Info | Tagged , , , | Leave a comment

Intro to Iphone Application

well 1st of all, get the tools ready … actually da only required tool for iphone application development is xcode …. u can find about xcode how to code in xcode IDE but it’s nt clearly given where to find … Continue reading

Posted in Featured, Info | Leave a comment

iphone Boot Camp

August 11-16, 2009, New York City: The iPhone Boot Camp is offering Master Workshops in iPhone Development with Jeff LaMarche, co-author of the bestseller “Beginning iPhone Development. Exploring the SDK” and Steven Kochan, author of “Programming in Objective C 2.0″ … Continue reading

Posted in Info, Recent Post | Leave a comment

ExtJS, email validation (regex)

ExtJS doesn’t support email validation with all real world email addresses using vtype :’email’….. but ExtJS has given us regex config for any textfield….. so idea is to use that regex for email validation on any textfield used for storing … Continue reading

Posted in Featured, Info | Tagged , , , , | Leave a comment


What is difference between managed and backing beans?

Although general convention is to use one Managed beans per JSF page/fragment, but managed beans can be used with multiple pages.  But Backing Bean can be only used for single page/fragment. Normally, Managed Bean is desired to have Pageflow scope, … Continue reading