Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 6ddfcc0b

Von Cem Aydin vor etwa 5 Jahren hinzugefügt

  • ID 6ddfcc0baeba291f7c6cafbddaa15dc455271b7a
  • Vorgänger 77278fc9
  • Nachfolger 81cb3692

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
252 252
  my $minrows = delete $attributes{min_rows} || 1;
253 253
  my $maxrows = delete $attributes{max_rows};
254 254
  my $rows    = $::form->numtextrows($value, $cols, $maxrows, $minrows);
255
  my $class   = $attributes{class}; # Do not delete attribute/hash element
256 255

  
257 256
  $attributes{id} ||= _tag_id();
258 257
  my $id            = $attributes{id};
259 258

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

  

Auch abrufbar als: Unified diff