I have create a function that returns an HTML object <select></select> inside one cell of every row. The problem is that this was working well with all the versions until version jQWidgets v3.0.2 Release, Aug-26-2013. But I recently downloaded version jQWidgets v3.2.1 Release, Feb-05-2014 and the HTML dropdown list is not working. It displays well in the datagrid but when you click, it does not open, it opens and closes immediately.
Please can you have any idea ?
here is what my function looks like
cellsrendererDropList = function (row, columnfield, value, defaulthtml, columnproperties) {
var dropDownList='<select id="ordonnerEtapes" style="width:60px;" class="ordonnerEtapes">';
for(i=1; i<=10; i++) {
if(i==5){
dropDownList=dropDownList+'<option selected="selected">'+i+'</option>';
}
else {
dropDownList=dropDownList+'<option>'+i+'</option>';
}
}
dropDownList=dropDownList+'</select>';
return '<span >'+dropDownList+'</span>';
}