Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
diddipoeler committed Mar 12, 2024
1 parent 314188c commit 4cb9997
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions admin/views/fieldsets/tmpl/default_playgroundnotiz.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,11 @@ function addRows()
// Create a new column element
var column = jQuery('<td>');
// Create a new image element
var image = jQuery('<img>');
image.attr('src', 'img.png');
image.text('Image cell');
var image = jQuery('<input>');
image.attr('type', 'text');
image.attr('id', 'id');
image.attr('type', 'text');
image.attr('disabled', 'disabled');

// Append the image to the column element
column.append(image);
Expand All @@ -45,6 +47,7 @@ function addRows()
input.attr('type', 'text');
input.attr('id', 'playground_id');
input.attr('name', 'playground_id');
input.attr('disabled', 'disabled');
input.attr('value', '<?php echo $this->item->id; ?>');
column1.append(input);
row.append(column1);
Expand Down Expand Up @@ -88,6 +91,7 @@ function addRows()
input.attr('type', 'text');
input.attr('id', 'max_visitors');
input.attr('name', 'max_visitors');
input.attr('size', '10');
column6.append(input);
row.append(column6);

Expand Down

0 comments on commit 4cb9997

Please sign in to comment.