I want to get a month picker as an input field.
I came to know about jQuery monthpicker.
how can I use that in primefaces?
I want to get a month picker as an input field.
I came to know about jQuery monthpicker.
how can I use that in primefaces?
I have not come across Prime faces but why don't you use Jquery UI it has a built in calendar. You could easily adapt the code to just output the month.
http://jqueryui.com/datepicker/
var date = $('#datepicker').datepicker({ dateFormat: 'mm' }).val();
Thanks