Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 525f4f88

Von Sven Schöling vor 1 Tag hinzugefügt

  • ID 525f4f882d4e37c8003ed97b0845a27f94d1682a
  • Vorgänger de08e910
  • Nachfolger 07458256

Artikeleingabe unten: alternatives Scrollverhalten wenn Positionsliste ohne Scrollbereich

Wenn die Artikeleingabe unten gerendert wird, und die Positionsliste
nicht begrenzt ist, gilt jetzt folgendes Verhalten:

Wenn nach dem Einfügen der neuen Zeile die Seite scrollbar ist, und
durch scrollen die Eingabeleite auf konstanter Höhe gehalten werden
kann, dann wird so gescrollt.

Unterschiede anzeigen:

js/kivi.Order.js
549 549
    $('#row_table_scroll_id').scrollTop($('#row_table_scroll_id')[0].scrollHeight);
550 550
  };
551 551

  
552
  ns.scroll_page_after_row_insert = function(id) {
553
    // find row height and border spacing
554
    const $id_input = $('input[name="orderitem_ids[+]"][value="'+id+'"]');
555
    const $row = $id_input.closest('tbody');
556
    const table = $row.closest('table')[0];
557
    const style = getComputedStyle(table);
558

  
559
    const height = $row[0].offsetHeight + parseFloat(style.borderSpacing) || 0;
560

  
561
    // if site is scrollable and scrolling can put it where it was before: do scroll
562
    const max_scroll = document.documentElement.scrollHeight - window.innerHeight;
563

  
564
    if (window.scrollY + height <= max_scroll) {
565
      window.scrollBy(0, height)
566
    }
567
  }
568

  
552 569
  ns.show_longdescription_dialog = function(clicked) {
553 570
    var row                 = $(clicked).parents("tbody").first();
554 571
    var position            = $(row).find('[name="position"]').html();

Auch abrufbar als: Unified diff