Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In rich:calendar i want to display the date format, like by default before the user make any selection i want to display the format 'mm/dd/yyyy' in the textbox

share|improve this question
did you mean default input text? – sergionni Mar 4 '11 at 8:42

1 Answer

up vote 1 down vote accepted

try this:

<rich:calendar...datePattern="mm/dd/yyyy"></rich:calendar>

EDITED:

if you want some default text to be in your input, you may try to use javascript(jQuery is here) as I used:

   jQuery('.search-criterion').val("mm/dd/yyyy");    

    jQuery('.search-criterion').blur(function(){
      jQuery(this).css('color','gray').css('font-style','italic');
        if((jQuery(this).val()!="")){
       jQuery(this).css('color','black').css('font-style','normal');
       }else{
      jQuery(this).attr("value","mm/dd/yyyy");
          }
        })jQuery('.search-criterion').focus(function(){
          jQuery(this).css('color','black').css('font-style','normal');
      if((jQuery(this).val()=="mm/dd/yyyy")){
       jQuery(this).attr("value","");
         }else {}
  })
 })
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.