Я пытаюсь добавить несколько html-кодов на aui-modal, я не уверен, что это правильный путь, текст появляется на модальном, но кнопки не работают.
Следуйте моему коду contentBox:
<div id="contentBox" >
<h3>Title...</h3> </br>
<p> My text... </p> </br>
<p>
<div id="myRadiogroup">
<input id="1" input type="button" value="1" class="nota1" >
<input id="2" type="button" value="2" class="nota2">
<input id="3" type="button" value="3" class="nota3">
<input id="4" type="button" value="4" class="nota4">
<input id="5" type="button" value="5" class="nota5">
<input id="6" type="button" value="6" class="nota6">
<input id="7" type="button" value="7" class="nota7">
<input id="8" type="button" value="8" class="nota8">
<input id="9" type="button" value="9" class="nota9">
<input id="10" type="button" value="10" class="nota10">
</div>
</p>
<div class="form-group">
<label for="comment">Commentário (opcional)</label>
<textarea rows="3" cols="50" id="comment"></textarea>
</div>
здесь aui-модальный код:
YUI().use(
'aui-modal',
function(Y) {
var modal = new Y.Modal(
{
contentBox: '#contentBox',
centered: true,
destroyOnHide: false,
headerContent: '<h3>Pesquisa de satistação</h3>',
modal: true,
render: '#modal',
resizable: {
handles: 'b, r'
},
visible: true,
width: 450
}
).render();
modal.addToolbar(
[
{
label: 'Cancel',
on: {
click: function() {
modal.hide();
}
}
},
{
label: 'Finish',
on: {
click: function() {
alert('Information sent.');
}
}
}
]
);
Y.one('#showModal').on(
'click',
function() {
modal.show();
}
);
});
Когда я добавляю contentBox, модальный вид, какэто: Изображение
Кнопки на модальном, кажется, отключены, я нажимаю, и ничего не происходит.
Я использую эту ссылку: ссылка
Кто-нибудь может мне помочь?