Feature #39806 » 0001-Fix-toggle-for-column-selection.patch
| app/views/queries/_query_form.html.erb | ||
|---|---|---|
| 82 | 82 |
$(function ($) {
|
| 83 | 83 |
$('input[name=display_type]').change(function (e) {
|
| 84 | 84 |
if ($("#display_type_list").is(':checked')) {
|
| 85 |
$('table#list-definition').show();
|
|
| 85 |
$('#list-definition').show();
|
|
| 86 | 86 |
} else {
|
| 87 |
$('table#list-definition').hide();
|
|
| 87 |
$('#list-definition').hide();
|
|
| 88 | 88 |
} |
| 89 | ||
| 90 | 89 |
}) |
| 91 | 90 |
}); |
| 92 | 91 | |
- « Previous
- 1
- …
- 8
- 9
- 10
- Next »