Important:
This support area is for Kalium 3 users only.
Support for Kalium 4 has moved to our new platform at support.laborator.co.
If you’re using Kalium 4, please create a new account there using your email and license key. A password will be sent to you automatically.
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):
$(".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.