only one selected Checkbox in Grid
Hi all,
i have a problem with unchecking other checkboxes in a Grid when i check another.
Here is the Code:
any suggestion how to do this?
greetz
i have a problem with unchecking other checkboxes in a Grid when i check another.
Here is the Code:
var CellData = var CellData = [
[0,"99917180","Nokia 6303i classic matt black","9,99"],
[0,"99916954","Nokia 6700 slide petrol MyCommunity","4,95"]
];
var myHeaders = ["Wahl","Artikelnummer","Beschreibung","Preis"];
var obj = new AW.UI.Grid;
obj.setHeaderText(myHeaders);
// setting cell text
obj.setCellText(function(c,r){return CellData[r][c]} );
//Grid definitions
obj.setSize(500, 200);
obj.setColumnCount(4);
obj.setRowCount(2);
obj.setColumnWidth(50, 0);
obj.setColumnWidth(100, 1);
obj.setColumnWidth(290, 2);
obj.setColumnWidth(50, 3);
//Setting the ceckbox as template in column 0
obj.setCellTemplate(new AW.Templates.Checkbox, 0);
//setting cell values and text
obj.setCellValue(function(col, row){return CellData[row][0]==1 ? true : false}, 0);
obj.setCellText(function(col, row){return this.getCellValue(col, row) ? "1" : "0"}, 0);
//call this when changing the value of the checkbox
obj.onCellValueChanged = function(value, col, row){
//translate the boolean values to 0 or 1
if (value) {
value=1;
}else{
value=0;
};
for (x=0;x<2;x=x+1)
{
if (x != row) {
// HERE I WANT TO CHANGE THE CELL VALUE IN ROW x AND Column 0
alert(x);
}
}
if(col == 0)
//alert with the values i need...
alert("SuplierAid:"+CellData[row][1]+ " Status:"+value);
//... in this function
//update_memdata(CellData[row][1], value);
}
//writing Object
document.write(obj);
any suggestion how to do this?
greetz
skatanic
October 7,