Comments 2Zulfy started the conversationAugust 20, 2016 at 10:49amHiCurrently I am developing an application using xenon with angularjs. I have problem to show date picker on modal. Do you have an example for it ?Yours sincerelyZulfy Adi Haryanto 2Rodolfo repliedAugust 22, 2016 at 6:33pmUp.Have solution?[deleted] repliedAugust 24, 2016 at 2:05pmHi Rodolfo,Please execute this code when you open modal (callback): $(".datepicker").each(function(i, el){ var $this = $(el), opts = { format : attrDefault($this, 'format', 'mm/dd/yyyy'), startDate : attrDefault($this, 'startDate', ''), endDate : attrDefault($this, 'endDate', ''), daysOfWeekDisabled : attrDefault($this, 'disabledDays', ''), startView : attrDefault($this, 'startView', 0), }, $n = $this.next(), $p = $this.prev(); $this.datepicker(opts);});This should work for you. Sign in to reply ...
Hi
Currently I am developing an application using xenon with angularjs. I have problem to show date picker on modal. Do you have an example for it ?
Yours sincerely
Zulfy Adi Haryanto
Up.
Have solution?
Hi Rodolfo,
Please execute this code when you open modal (callback):
This should work for you.