I had an inquiry about sorting in different languages - For example I have the following data. In Turkish, ç comes after c - if you sort by name in the listgrid, ç comes BEFORE c, but sorting with the text column, ç comes after c. What is the proper way to make the sorting work for a particular language? I've tried to just switch the browser language to turkish but it does not make a difference.
Code:
testData = [
{
name: "aa",
text: "aa"
},
{
name: "bb",
text:"bb"
},
{
name: "cc",
text:"cc"
},
{
name: "ç",
text:"çç"
}
]
isc.ListGrid.create({
ID: "countryList",
width:500, height:224, alternateRecordStyles:true,
data: testData,fields:[{name:"name"},{name:"text"}]
})
Comment