Manki Kim
Manki Kim
The datetime type should be added. It would be nice if someone added it. Or I have to do it myself, but I don't have much time.
@AL-YAFEA-KHALED It seems that `PlutoGridExports` plugin should add image and behavior for Arabic. Is there anything I need to know to test the behavior for Arabic fonts?
@soft24 It currently does not offer infinite scrolling. You can implement it yourself, but I'll consider adding a feature. thank you.
You can listen for an event when the end of the grid is reached as shown below. ```dart stateManager.eventManager!.listener((PlutoGridEvent plutoEvent) { if (plutoEvent is PlutoGridCannotMoveCurrentCellEvent && plutoEvent.direction.isDown) { // do...
Released PlutoGrid 5.3.0 Refer to below link. https://github.com/bosskmk/pluto_grid/issues/601
When does configuration.cellTextStyle.color have no value? cellTextStyle must be the default or set. Can you give me the code where the error occurs?
What version of PlutoGrid are you using? Currently PlutoGrid is 2.3.0 and rxdart 0.27.0. The next version, PlutoGrid 2.4.0, specifies rxdart 0.27.1 (the latest version).
Yes, I'll check.
I am testing the behavior of numpad. My guess is that the code below should return true when any key is pressed with numlock on, but it doesn't. ```dart //...
Resolved da251255.