I created a soy File with a datepicker in it and it works in Chrome but It won't work in any other browsers. I think I am not even able to use the aui-datepicker, Chrome just uses the browser default and all the other browser arent.
So I have added
<dependency>com.atlassian.auiplugin:aui-experimental-date-picker</dependency>
to my plugin.xaml in
<web-resource key="soy" name="AJS Soy">
Hope that the correct place.
<input class="aui-date-picker" id="vValidFrom" name="vValidFrom" type="date" placeholder="DD-MM-YYYY" data-aui-dp-uuid="0">
and i have
{template .javascript}
{literal}
AJS.$(document).ready(function() {
AJS.('#<span>vValidFrom</span>').datePicker({'overrideBrowserDefault': true});
});
{/literal}
{/template}
for the javascript.
FireFox and IE won't display a datepicker from my blueprint. The standart decision blueprint has a working datepicker in it. I guess that there is just a simple solution to this cause I really don't have a clue what I'm doing so if you could provide me with a little sample blueprint that handels a datepicker it would be great.