Rafael (lrdev)

Results 23 comments of Rafael (lrdev)

#2 This is a good request, Any updates?

Will we see this feature only in 2020? 2021...? ;)

> I am wondering about how old is this issue. > > > Use at your own risk! Enabling this option can cause layout thrashing by measuring the drawers on...

Exact. I consider the lack of communication between the team to be a very requested resource

There are several open questions related to the case. Would it be so hard to make the library add .00 when the value is integer (3000)?

> What I want to see is 1000.10 on when I patch my form control with a number value 1000.1 > thanks. if separator.2 is assigned this would be the...

Yes. Just like in PHP and ``` number_format(10.1, 2) // 10.10 number_format(10.1, 2, ',') // 10,10 number_format(1000.1, 2, ',', '.') // 1.000,10 ```