Project

General

Profile

Actions

Defect #16708

closed

Form is submitted when switching tab

Added by Nicolas Rodriguez about 10 years ago. Updated almost 10 years ago.

Status:
Closed
Priority:
Normal
Category:
UI
Target version:
Start date:
Due date:
% Done:

0%

Estimated time:
Resolution:
Fixed
Affected version:

Description

In render_tabs method, when I click on next tab or previous tab button, form is submit instead of switching tab.

I think you should change

  <div class="tabs-buttons" style="display:none;">
    <button class="tab-left" onclick="moveTabLeft(this);"></button>
    <button class="tab-right" onclick="moveTabRight(this);"></button>
  </div>

to

  <div class="tabs-buttons" style="display:none;">
    <button class="tab-left" onclick="moveTabLeft(this); return false;"></button>
    <button class="tab-right" onclick="moveTabRight(this); return false;"></button>
  </div>
Actions

Also available in: Atom PDF