Skip to content

Commit

Permalink
MDL-60114 mod_data: adding db activity lost radio field choose option
Browse files Browse the repository at this point in the history
  • Loading branch information
awagner committed Aug 11, 2018
1 parent 6e44567 commit 288cbbf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mod/data/field/radiobutton/field.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ function display_search_field($value = '') {
}
$return = html_writer::label(get_string('fieldtypelabel', "datafield_" . $this->type),
'menuf_' . $this->field->id, false, array('class' => 'accesshide'));
$return .= html_writer::select($options, 'f_'.$this->field->id, $value, null, array('class' => 'custom-select'));
$return .= html_writer::select($options, 'f_'.$this->field->id, $value,
array('' => 'choosedots'), array('class' => 'custom-select'));
return $return;
}

Expand Down

0 comments on commit 288cbbf

Please sign in to comment.