From ee312992838f405b08303de30ae8407db43f5206 Mon Sep 17 00:00:00 2001 From: vermeul <swen@ethz.ch> Date: Thu, 27 Jun 2019 23:03:14 +0200 Subject: [PATCH] choosing connection made easier, no need to hit radio button directly. --- .../static/connectionDialog.js | 29 ++++++++++++++++--- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/jupyter-openbis-extension/static/connectionDialog.js b/jupyter-openbis-extension/static/connectionDialog.js index 40c8822..177372e 100644 --- a/jupyter-openbis-extension/static/connectionDialog.js +++ b/jupyter-openbis-extension/static/connectionDialog.js @@ -48,8 +48,22 @@ define( var row = tbody.insertRow() row.insertCell().appendChild(conn) - row.insertCell().textContent = connection.name - row.insertCell().textContent = connection.url + var nameCell = row.insertCell() + nameCell.textContent = connection.name + nameCell.onclick = function () { + var radio = this.parentElement.firstElementChild.firstElementChild + radio.checked = 1 + state.connection.candidateName = radio.value + state.connection.candidateDTO = getConnectionByName(state.connection.candidateName); + } + var urlCell = row.insertCell() + urlCell.textContent = connection.url + urlCell.onclick = function () { + var radio = this.parentElement.firstElementChild.firstElementChild + radio.checked = 1 + state.connection.candidateName = radio.value + state.connection.candidateDTO = getConnectionByName(state.connection.candidateName); + } var status_cell = row.insertCell() @@ -122,8 +136,15 @@ define( pwform.appendChild(password) pwform.appendChild(connect_button) - var cell = row.insertCell() - cell.appendChild(pwform) + var pwCell = row.insertCell() + pwCell.appendChild(pwform) + + pwCell.onclick = function () { + var radio = this.parentElement.firstElementChild.firstElementChild + radio.checked = 1 + state.connection.candidateName = radio.value + state.connection.candidateDTO = getConnectionByName(state.connection.candidateName); + } } // add row for new connection -- GitLab