How to add YUI calender to combobox dropdown panel?
I mean,
like this.
Is there any way to add calendar to option[1] panel of combobox? Above one its just an example. Can I get the right method to add calendar?
Thanks.
I mean,
Code:
<select id="calCombo" onclick="showCal()"></select>
function showCal()
{
var op = new Option(Calendar object);
calCombo.options[1]=op;
}
Is there any way to add calendar to option[1] panel of combobox? Above one its just an example. Can I get the right method to add calendar?
Thanks.
Comment