First, I apologize that's not good at English.
I've made using renderer html selectbox in Ext.grid.Panel.Column.
its work in chrome. but its not work in firefox.
show all list in selectbox when i click selectbox.
and i click one of list. I expect change values??. but Nothing happened.
this is my code.
....
columns: [
{
text: 'requestDate',
width: 100,
dataIndex: 'reqDt',
renderer : cellRnd
},
....
function cellRnd (val, meta, record, rowIndex, colIndex, store) {
if( val == "chk"){
returnHtml = '<select id="select'+ rowIndex + colIndex +'" name="select'+ rowIndex + colIndex +'">';
returnHtml += "<option value="01" selected>true</option>";
returnHtml += "<option value="01" selected>false</option>";
returnHtml += "</select>";
}else{
returnHtml = val;
}
return returnHtml;
}
Does anybody know?