kylex

Results 3 comments of kylex

I've added this code to line `1957` in order to default to the current date when a non date object is submitted: ``` if (Object.prototype.toString.call(oDTP.oData.dCurrentDate) === '[object Date]' && isFinite(oDTP.oData.dCurrentDate))...

Made a pull request with this change, and another to set off a "TAB" button identifier for callbacks. Basically, since Tab can Set the date, there are cases in callbacks...

Shouldn't the following be outside of the `if(bFromTab)`? ``` if(oDTP.settings.buttonClicked) oDTP.settings.buttonClicked.call(oDTP, "TAB", oDTP.oData.oInputElement); ``` Otherwise it only fires if you shift+tab and not when you tab forward. Tabbing forward makes...