Unwanted text near a "Checkbox" template cell
I'have this grid:
The grid showed a text near the checkboxes corresponding to the "cellData" of checkboxes' cell.
I removed that creating a new format for those cells
There is any cleaner way to do this?
griglia_richieste.setTag("span");
griglia_richieste.setId("griglia_richieste");
griglia_richieste.setToolbar(true,"Richieste");
griglia_richieste.setExportFunction('ToExcelRic()');
griglia_richieste.setStyle("position", "relative");
griglia_richieste.setCellTemplate(new AW.Templates.CheckBox,"chiusa");
griglia_richieste.getCellTemplate("chiusa").setEvent("onclick", function() {});
griglia_richieste.setCellTemplate(new AW.Templates.CheckBox,"modificabile");
griglia_richieste.getCellTemplate("modificabile").setEvent("onclick", function() {});
var date = new AW.Formats.Date;
date.setDataFormat("ISO8601");
date.setTextFormat("dd/mm/yyyy");
date.setErrorText("");
date.setErrorValue("");
var number = new AW.Formats.Number;
var string = new AW.Formats.String;
griglia_richieste.setCellFormat({
progressivo:string,
blocco:string,
reparto:string,
data:date,
descrrichiesta:string,
note:string,
bloccato:string,
numrichiesta:string,
chiusa:string,
modificabile:string
});
griglia_richieste.onRowClicked = function(event, row){
esegui('ricercaArticoli');
};
griglia_richieste.refresh();
.
The grid showed a text near the checkboxes corresponding to the "cellData" of checkboxes' cell.
I removed that creating a new format for those cells
var stringCheckbox = new AW.Formats.String;
stringCheckbox.dataToText = function(parData) {
return "";
}
and setting it to the cell with the checkboxes griglia_richieste.setCellFormat({
progressivo:string,
blocco:string,
reparto:string,
data:date,
descrrichiesta:string,
note:string,
bloccato:string,
numrichiesta:string,
chiusa:stringCheckbox,
modificabile:stringCheckbox
});
.
There is any cleaner way to do this?
Fily84
August 18,