Hi, I’ve a problem with the grid working with firebird database.
It shows an error when you advance to the second page (as shown in the screenshot), for page number 2. But when you advance to page 3 it does it ok, then with page 4 shows the error again.
I’ve seen in the browser inspector but I don’t see any network activity when it shows the error, like it was’nt getting any data.
Can you help me please?
Regards, Emmanuel
https://gist.github.com/oscaremmanuel/363271082dd6a2aeb3dc6b91fd17289b
1 Answers
This kindof error is usually due to non-unicode data.
You can specify charset then it will perform utf8 conversion manually. e.g.
$g->charset = “latin1”;
Your Answer