gpt4 book ai didi

jquery - MVC3 从数据表中编辑的行获取值

转载 作者:行者123 更新时间:2023-12-01 04:20:08 28 4
gpt4 key购买 nike

我正在使用 MVC3 创建一个 Web 应用程序。在我的 Web 应用程序中,我有一个数据表,显示对象值,每行都有一个复选框,用户可以选中/取消选中。我想做的是修复一个设置,以便用户可以根据需要选中/取消选中尽可能多的框,而不会发生任何事情。然后,当用户完成后,他/她按下 table 旁边的“完成”按钮。现在我希望奇迹发生。我希望 View 将所有行收集到一个数组中,以便我可以将整个表发送到 Controller 方法。我在数据表 API 中发现我可以使用代码

var table = $.fn.dataTable.fnTables(true);
if (table.length > 0) {
$(table).dataTable().fnAdjustColumnSizing();
}

为了将所有数据表数据保存到变量中。现在我该如何使用它?

除此之外,我希望当用户按下我的 Ajax.ActionLink(目前仅返回另一个 View )时发生所有这一切。是否也可以让我的 ActionLink 将变量设置为返回数据表行数组的 javascript 函数的返回值?

如果我有点不清楚,我会尝试显示我想说的内容(我目前不是最好的网络开发人员,所以请对我温柔点:))请参阅代码中的评论。

    @Ajax.ActionLink("Done",
"_DoneView",
new { value1 = Model.Item1.value1, value2 =
Model.Item1.value2, value3 = Model.Item1.value3,

//Would it be possible to here say something like
DatatableArray = javascriptFunction() //Javascript function
//that returns an array containing all rows from the table },

new AjaxOptions { HttpMethod = "GET",
UpdateTargetId = "DataTable",
InsertionMode = InsertionMode.Replace},
new {
@class = "linkButton blue"

感谢您的所有帮助,如果有遗漏/不清楚的内容,请随时询问更多信息。

最佳答案

这将是您的新链接:

<div id="divId">create a nice button with the div</div>

创建一个返回 JsonResult 的 Controller 。像这样的事情:

public JsonResult GetAllReservations()
{
var jsonlist = listOfYourReservations;
return Json(jsonlist, JsonRequestBehavior.AllowGet);
}

之后你可以在你的 jQuery 中这样做:

$("#divId").on("click", function(){
$.post('/ControllerName/GetAllReservations', function (data) {
$.each(data, function(){

});
});
}

关于jquery - MVC3 从数据表中编辑的行获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11447735/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com