We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
In my case, these calls produce different output:
$grid->addColumnNumber('XId', 'X ID'); $grid->addColumnNumber('XIdFixed', 'X ID Fixed') ->setRenderer(fn (Entity $entity) => $entity->getXId() ? (string) $entity->getXId() : ''); // getting the same columnn as the call above
In DataGrid, first one shows this: 1 234 567 891 234 567 936
While second one correctly shows this number (which is the same as postgres DB value): 1234567891234567891
I don't care about extra spacing. The problem are the last 3 digits: *936 vs. *891.
I use:
The text was updated successfully, but these errors were encountered:
Hi @stepanhampl , could you prepare a pull request, please?
Sorry, something went wrong.
No branches or pull requests
In my case, these calls produce different output:
In DataGrid, first one shows this:
1 234 567 891 234 567 936
While second one correctly shows this number (which is the same as postgres DB value):
1234567891234567891
I don't care about extra spacing. The problem are the last 3 digits: *936 vs. *891.
I use:
The text was updated successfully, but these errors were encountered: