Neha Kadam

Results 58 comments of Neha Kadam
trafficstars

This can be achieved commenting code [Line 1449](https://github.com/CuriousSolutions/DateTimePicker/blob/master/src/DateTimePicker.js#L1449) to [Line 1455](https://github.com/CuriousSolutions/DateTimePicker/blob/master/src/DateTimePicker.js#L1455). ``` $(document).on("keydown.DateTimePicker", function(e) { if(! $('.dtpicker-compValue').is(':focus') && parseInt(e.keyCode ? e.keyCode : e.which) !== 9) { oDTP._hidePicker(""); } }); ```...

As per previous issues reported on Github for other libraries, it is exception introduced on iOS version updates. It does not cause any issue in working of application. I could...

CalenStyle is working fine in iOS App on iPhone XR Simulator running iOS 12.1. I will have to download iOS 12.0 simulator to test it on iOS 12.0

This error occurs when your package name in package.json file is same as package you are are installing. Go to package.json of your package and check name property ``` {...

Hello @elecoest, ``` $.getJSON( baseurl, urlparams ) .done(function(json) { }) .fail(function(jqXHR, status, error) { }); ``` is equivalent to ``` $.ajax({ dataType: "json", url: url, data: data, success: success });...

Currently `tagIndex` is not working. To display the events belonging to a particular category, you can filter events based on "Type".

Done 👍 You can install CalenStyle using command `composer require nehakadam/calenstyle`. Thank you for suggestion!

Thank you for reporting issue! The condition on line 469 is added for mobile devices, as click was causing delay in performing action, so it should not be changed before...