将事件绑定到dojo对话框动态内容

时间:2015-11-27 13:43:00

标签: dojo esri

我正在使用Dojo编写Arcgis。严重陷入困境。我有一个dojo对话框,其中包含使用Javascript生成的列表。我无法绑定数据-dojo-attach-event'。该对话框工作正常但单击事件不起作用。 谢谢!

var wireHtml = '<table class="table table-striped"><tbody>';
  for (let i = 0; i < wiresList.length; i++) {
    if(wiresList[i].attributes.conduit_id === Number(conduitId)){
        wireHtml += '<tr><td>' + wiresList[i].attributes.name + ' <span class="badge pull-right" data-dojo-attach-event="click:wireDetail">detail</span></td></tr>';
    }
  }
  wireHtml += '</tbody></table>';
  wiresDialog.containerNode.innerHTML = wireHtml;
  wiresDialog.show();

0 个答案:

没有答案