Skip to content

Commit

Permalink
Fixed issue #7726: Value for participant attribute could be "select o…
Browse files Browse the repository at this point in the history
…ne", or so it seems
  • Loading branch information
c-schmitz committed Apr 19, 2013
1 parent 65c5987 commit 680c92e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/admin/displayParticipant.js
Expand Up @@ -729,7 +729,7 @@ $(document).ready(function() {
}
if(att_type=="DD") { //Dropdown
var att_p_values = $("#displayparticipants_"+parid[0]+"_t").getCell(id,'attpvalues');
$("#displayparticipants_"+parid[0]+"_t").setColProp('attvalue',{ edittype:'select',editoptions:{ value:":Select One;"+att_p_values}});
$("#displayparticipants_"+parid[0]+"_t").setColProp('attvalue',{ edittype:'select',editoptions:{ value:":;"+att_p_values}});
}
if(att_type=="TB") { //Textbox
$("#displayparticipants_"+parid[0]+"_t").setColProp('attvalue',{ edittype:'text'});
Expand Down

0 comments on commit 680c92e

Please sign in to comment.