On enter datePicker widget not working

0
Hi, I have a standard Mendix datePicker with an On Enter event on it. When I click the date field to type the date the On Enter microflow is called. However, when I click the calendar icon to pick a date the On Enter microflow is not called. Anyone any idea what this could be? Is it a bug in the widget? Is there a way I can make it work?   Thanks for your answers!
asked
2 answers
4

Hi Ron,

Not sure if it should be supposed to be fired at the on enter microflow, I would prefer an option to have a on calender click microflow instead. But I got it somehow working by using the HTML snippet from Mendix:

https://github.com/mendix/HTMLSnippet

Add it to the page and configure as follows, place the snippet with content on your page:

Append the snippet itself to the desired calender button control, make sure you set the on click microflow to your oe microflow of the datepicker.

After configuring as above printscreen style the default picker so it's displayed overlayed over the button, herefor put the following code to the Style section of your widget:

  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;

And after this your onclick of the snippet is fired when you click on your calender.

Good luck!

Regards,

Corné

answered
0

I hope I can bring this post under attention again, because more then a year later I have the exact same problem again.

WIth a different modeler, 7.16.0, but it is exactly as I described above.

Is there a solution or is Mendix working on a solution?

answered