Is there any way to render an ig Control as Calender as in left top pane of outlook's Calender Option.
(attached is the snap shot of expected display.)
Hi pardeepkgupta,
In order to show drop-down calendar, the igDatePicker internally uses the $.datepicker. The architecture of $.datepicker is based on a single calendar shared between all instances of datepickers. That means that is not possible to show 2 or more calendars at the same time. Application potentially can permanently display a calendar for a particalar instance of datepicker. But that also means that it can not have second datepicker or igDatePicker on the same page.
To disable automatic hiding of calendar, you may try to hack into $.datepicker and override/kill its member method which hides calendar.
Below is example for you (that is not a suggestion, and no help for any side effects of misbehavior):
<script type="text/javascript"> $(function () { $('#dp1').igDatePicker({height: '4px'}).igDatePicker('dropDownVisible', true).hide(); $.datepicker._hideDatepicker = function () {}; });</script><span id="dp1"></span>
Hi,
I want to use igDatePicker for one DateTime type column of igGrid.
It should work on Edit cell and Add new row as well.
I don't want to use the editorType - 'datePicker', as I want user to be able to enter or change the time along with the Date selected.
Is there any way?
Please help.
Thanks,
Swati.
Hello pardeepkgupta,
Please let me know if you need further assistance with this issue.