-
15 Nov 2011 10:53 PM #1
Answered: Placeholder for datepickerfield
Answered: Placeholder for datepickerfield
hi, I would like to show a placeHolder for datepickerfield in a form. I see that in API there is no placeHolder configuration option for datepickerfield. Any workaround would be helpful.
-
Best Answer Posted by mitchellsimoens
This is because Ext.form.DatePicker extends Ext.form.Field but the placeHolder doesn't get picked up until Ext.form.Text. That being said you can still do it like this:
Code:{ xtype : 'datepickerfield', name : 'date', label : 'Date', renderData : { placeHolder : 'Test' }, picker : { slotOrder : ['day', 'month', 'year'] } }
-
17 Nov 2011 12:14 PM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,656
- Vote Rating
- 436
- Answers
- 3108
This is because Ext.form.DatePicker extends Ext.form.Field but the placeHolder doesn't get picked up until Ext.form.Text. That being said you can still do it like this:
Code:{ xtype : 'datepickerfield', name : 'date', label : 'Date', renderData : { placeHolder : 'Test' }, picker : { slotOrder : ['day', 'month', 'year'] } }Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
18 Nov 2011 3:01 AM #3


Reply With Quote