我是 grails 和 jquery 的新手。
我创建了一个像这个例子一样的 jquery 对话框:http: //jqueryui.com/dialog/#modal-form
打开一个对话框,输入数据,然后在主页面的表格中显示数据。
表是动态的,将所有条目添加到表中后我想创建一个保存按钮,它将所有数据保存到数据库中,我的问题是如何将表中的所有数据传递到控制器中,以便控制器可以持久化数据?
这是我的gsp:
<fieldset class="form">
<h2>ReportInstance</h2>
<table id="reportInstances" class="ui-widget ui-widget-content">
<thead>
<tr>
<th>Name</th>
<th>Template</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<button id="create_new_reportInstance">Create new Report
Instance</button>
</fieldset>
<fieldset class="buttons">
<g:submitToRemote controller="NewReport" action="saveReport"
update="page-body" value="save" />
</fieldset>
</g:form>
javascript:
$("#dialog-form").dialog(
{
autoOpen : false,
height : 300,
width : 350,
modal : true,
buttons : {
"Create an account" : function() {
var bValid = true;
allFields.removeClass("ui-state-error");
if (bValid) {
$("#reportInstances tbody").append(
"<tr>" + "/<td>" + name.val() + "/</td>"
+ "/<td>" + template.val()
+ "/</td>" + "/<td>" + "/</tr>");
$(this).dialog("close");
}
},
Cancel : function() {
$(this).dialog("close");
}
},
close : function() {
allFields.val("").removeClass("ui-state-error");
}
});
$("#create_new_reportInstance").button().click(function() {
$("#dialog-form").dialog("open");
});
我只想将 name.val() 和 template.val() 传递给控制器