VitaliiBlagodir / cordova-plugin-datepicker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cancel button handler issue

lokibyte opened this issue · comments

Hi,

Can anybody please help me how to use cancel button handler?

Any news on this?

commented

Since you were clicking button cancel, you are invoking success callback.
To handle exception on iOS devices i suggest - add this to success callback:

if (date === undefined) { return; }

i am getting date in success even if i click on cancel button.

Thx, it helped !!