Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
diddipoeler committed Mar 24, 2024
1 parent 937ac59 commit 9dc830f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion admin/views/fieldsets/tmpl/default_playgroundnotiz.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,16 @@ function addRows()
input.attr('name', 'max_visitors[]');
input.attr('size', '10');
column6.append(input);
row.append(column6);
row.append(column6);

var column7 = jQuery('<td>');
var input = jQuery('<input>');
input.attr('type', 'text');
input.attr('id', 'max_visitors_int');
input.attr('name', 'max_visitors_int[]');
input.attr('size', '10');
column7.append(input);
row.append(column7);


// Append the row to the table body
Expand Down

0 comments on commit 9dc830f

Please sign in to comment.