Categories | Question details Back To List | ||
dhtmlgrid how do you handle french accent (é,à,etc) in a cell ? example : in the xml file <cell>Édouard-Montpetit</cell> it give the result ?douard-Montpetit in the grid Answer posted on Nov 01, 2007 02:56 The component is encoding agnostic, while you set correct encoding of XML any type of chars can be used, in your case it probably iso-8859-1 <?xml version="1.0" encoding="iso-8859-1"?> <rows> <row... <cell>Édouard-Montpetit</cell> |