Let's say I have made a SQLFORM.grid. There is a cell containing "--------------ÄÖÜ" and everything looks fine:
--------------ÄÖÜ If I add one hyphen the string will be too long. But it is not the whole character 'Ü' which will be cropped, it's only the second byte. The utf-8 coding of 'Ü' is 0xC39C and the grid tries to display ÄÖ and 0xC3: ---------------ÄÖ�... Any solutions? Martin

