HI,
I am working on Enqiry form, Here I need to place a Date field,For that I used this code :
<?php
$attribs['class'] = 'input-medium';
$attribs['placeholder'] = 'Suggested Date';
echo JHtml::calendar("", 'jform[date_of_travel]', 'jform_date_of_travel', '%Y-%m-%d',$attribs);
?>
But once we click the calender button, Calender popup window not coming.
Even though I have import JFormHelper::loadFieldClass('calendar'); and JHTML::_('behavior.modal'); but no result :(
Could you please guide me anything I have missed ?
Thanks in advance.