Uncaught TypeError: Невозможно прочитать свойство 'firstChild' из неопределенного - updateListBox - PullRequest
0 голосов
/ 28 января 2019

Я разработал плагин Jenkins и застрял с ошибкой.Плагин отлично работает в версии Jenkins - 2.7.3, но не на более высоких или последних версиях Jenkins.

stacktrace на консоли chrome:

Uncaught TypeError: Cannot read property 'firstChild' of undefined
at updateListBox (select.js:8)
at select.js:79
at h (hudson-behavior.js:1295)
at refillOnChange (hudson-behavior.js:1310)
at select.js:77
at Array.forEach (<anonymous>)
at behavior.js:111
at Array.forEach (<anonymous>)
at behavior.js:107
at Array.forEach (<anonymous>)

config.jelly будет выглядеть ниже

<f:entry field="configName" title="Choose Configuration Name">
   <table>
     <tr><td><f:select name="config_name" id="config_name" 
  onchange="updateListBox('team_info','descriptorByName/org.jenkinsci.plugins.ctc.TestAutomationBuilder/teamInfo?value='+encode(this.value))"/></td>
     <td><f:textbox disabled="true" name="config_name_name" default="${instance.getConfig_name()}"/></td></tr>
   </table>
  </f:entry>

Любая помощь будет оценена.Спасибо.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...