Connect with me

Latest Tweets

Category Archives: Featured

Subdomain issue (wp3/wpmu)

I came across a situation, Everything was fine … wordpress 3.0  was installed properly but i was unable to create sub domain for wordpress for example : wordpress.mavendeveloper.com or jobs.mavendeveloper.com or extjs.mavendeveloper.com or iphone.mavendeveloper.com or any other such sub domain … Continue reading

Posted in Featured, Wordpress | 2 Comments

Converting WP To WPMU

Converting WordPress To WordPress MU is Simple What i think about converting from WP to WordPress MUsimply requires fews steps: 1) backup your WP DB . 2) fresh Install MU and let MU create Tables for You… the tables it … Continue reading

Posted in Featured, Wordpress | Tagged , , , , | 2 Comments

HTML5, Video, and ExtJS

HTML5 is coming. All of us at Ext are excited to embrace the new standard as it gains acceptance. This post will examine two notable HTML5 developments – Video and Canvas. The video tag allows for native video rendering, removing … Continue reading

Posted in Featured, Hottest Post, Info | Leave a comment

ExtJS Phone Number Validation

Validate Phone Number With regex Extjs has give us vtype for phone number validation but with this all the requirements are not full-filled …. we may need different type of phone number validation then the default vtype provided by Extjs … Continue reading

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

Ext Grid to Grid DNG

hello, I was searching for the Grid to Grid Drag and Drop on particular row of the grid so that i can change the information on drag node on respect of dropped row of another Grid.. i was left helpless … Continue reading

Posted in Featured, Info | 2 Comments

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

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