Tobias Mesquita

Results 11 comments of Tobias Mesquita

since your improvements are overlaping with the changes what i did, I'll probably reject that PR

what extension/version do u're using? ``` @toby.mosque/qdatetimepicker (compatible with v2) qdatetimepicker (compatible with v1) ```

probably not, but i need to know where to look first.

I'll take a look at this, but there are a lot of conversions from/to ISO ( and the 12 thing is just unnatural - how 12 "pm" comes before 1...

@edgar-koster try this: ```html ``` ```js funcCheckDate (value) { if (new Date(value).getTime() < new Date().getTime()) { this.oAssign.dtStart = null } else { this.oAssign.dtStart = value } }, ``` PS: anyway,...

probably that is happening because of one of this lines: https://github.com/TobyMosque/app-extension-qdatetimepicker/blob/245d778cda4007e489d94623f5b6ea4be8a0adf7/src/component/QDatetimePicker.js#L254 https://github.com/TobyMosque/app-extension-qdatetimepicker/blob/245d778cda4007e489d94623f5b6ea4be8a0adf7/src/component/QDatetimePicker.js#L306 as u can see, some times the value is updated only at the next render cycle. I still...

so, the QDatetimePicker try to ensure the value will be valid, so that would be null or a date in the format `yyyy-MM-ddTHH:mm` or `yyyy/MM/ddTHH:mm`. mostly because of this, the...

do u can share the steps to reproduce that error?

I really don't know what is happening.: the `QPopupProxy` didn't had a value, so i need to call the `show` and `hide` methods manually. but in the above example, the...