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
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
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
