Hi
I have a grid dinamically builded and I don't use template, my column with checkbox are like this example http://demos.kendoui.com/web/grid/editing.html, where appears true/false
Even updating .Net Language Pack keeps true/false
1 => I need change this true/false for yes/no, any idea?
$("#grid tbody tr").each(function ()
{
var row = $(this);
row.contents().each(function ()
{
var cell = $(this);
if (cell.html() == 'true')
cell.html('yes')
else if (cell.html() == 'false')
cell.html('no')
});
}
The code above works well until click the cell and true/false appears again
2 => At each cell on grid there are role="gridcell". Can I change the behavior of this role? Maybe to don't put true/false
Thank you very much
I have a grid dinamically builded and I don't use template, my column with checkbox are like this example http://demos.kendoui.com/web/grid/editing.html, where appears true/false
Even updating .Net Language Pack keeps true/false
1 => I need change this true/false for yes/no, any idea?
$("#grid tbody tr").each(function ()
{
var row = $(this);
row.contents().each(function ()
{
var cell = $(this);
if (cell.html() == 'true')
cell.html('yes')
else if (cell.html() == 'false')
cell.html('no')
});
}
The code above works well until click the cell and true/false appears again
2 => At each cell on grid there are role="gridcell". Can I change the behavior of this role? Maybe to don't put true/false
Thank you very much