<script> function DynamicDatePicker(d_id) { DatePicker.pickDate(true,d_id.id,false); } window.onload=function() { // prevent autopup of the date inputfield by the default focus behavoir document.getElementById('focusDistraction').focus(); } </script>
<script> function DynamicDatePicker(d_id) { DatePicker.pickDate(true,d_id.id,false); } window.onload=function() { // prevent autopup of the date inputfield by the default focus behavoir document.getElementById('focusDistraction').focus(); } </script>
Hi this may helpful to you
<script>
function DynamicDatePicker(d_id)
{
DatePicker.pickDate(true,d_id.id,false);
}
window.onload=function() {
// prevent autopup of the date inputfield by the default focus behavoir
document.getElementById('focusDistraction').focus();
}
</script>
<b>Date </b><apex:inputText value="{!sdate}" id="time" onfocus="DynamicDatePicker(this);" size="20" disabled="false" style="width:80px;"/>
All Answers
Hi this may helpful to you
<script>
function DynamicDatePicker(d_id)
{
DatePicker.pickDate(true,d_id.id,false);
}
window.onload=function() {
// prevent autopup of the date inputfield by the default focus behavoir
document.getElementById('focusDistraction').focus();
}
</script>
<b>Date </b><apex:inputText value="{!sdate}" id="time" onfocus="DynamicDatePicker(this);" size="20" disabled="false" style="width:80px;"/>
yes, it helped me. thaks a lot.
oh,sure