Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision a93dc8e8

Von Cem Aydin vor fast 4 Jahren hinzugefügt

  • ID a93dc8e828cff65faaff62990458c00407228d95
  • Vorgänger 31c2693e
  • Nachfolger 327c584f

Neues Design bugfix: in sub areainput_tag button durch span ersetzt

button Element in Eingabemasken (Angebot, Auftrag etc.)
führt zu redirect auf Startseite wenn Enter gedrückt in Textfeldern

Nicht mehr benötigte Kommentare aus sub areainput_tag entfernt

Unterschiede anzeigen:

SL/Template/Plugin/L.pm
248 248
  my $minrows = delete $attributes{min_rows} || 1;
249 249
  my $maxrows = delete $attributes{max_rows};
250 250
  my $rows    = $::form->numtextrows($value, $cols, $maxrows, $minrows);
251
  my $class   = $attributes{class}; # Do not delete attribute/hash element
252 251

  
253 252
  $attributes{id} ||= _tag_id();
254 253
  my $id            = $attributes{id};
255 254

  
256 255
  return $self->textarea_tag($name, $value, %attributes, rows => $rows, cols => $cols) if $rows > 1;
257
  # PENDENT: Hier sollte noch eine Klasse an kivi.switch_areainput_to_textarea uebergeben werden
258
  # PENDENT: ID gugusli aus button entfernen, wird nicht angezeigt im browser (war nur Test)
259 256
  return '<span class="switch-form-element">'
260 257
    . $self->input_tag($name, $value, %attributes, size => $cols)
261
    . "<button class=\"wi-tiny icon\"><img src=\"image/pencil.png\" onclick=\"kivi.switch_areainput_to_textarea('${id}','".$class."')\"></button>"
258
    . "<span class=\"wi-tiny icon\"><img src=\"image/pencil.png\" onclick=\"kivi.switch_areainput_to_textarea('${id}','".$attributes{class}."')\"></span>"
262 259
    . '</span>';
263 260
}
264 261

  

Auch abrufbar als: Unified diff