首页 > 解决方案 > 如何将动态生成的表格数据加载到模态内部的表单中?

问题描述

我有一个动态生成的表。该表看起来像: -

    <table id="datatables" class="table table-striped table-no-bordered table-hover" 
    cellspacing="0" width="100%" style="width:100%">
    <thead>
    <tr>
        <th>S.N</th>
        <th>Branch Name</th>
        <th>Branch Location</th>
        <th>Status</th>
        <th class="disabled-sorting text-right">Actions</th>
    </tr>
    </thead>
    <tfoot>
    <tr>
        <th>S.N</th>
        <th>Branch Name</th>
        <th>Branch Location</th>
        <th>Status</th>
        <th class="disabled-sorting text-right">Actions</th>
    </tr>
    </tfoot>
    <tbody>
    <tr th:Each="b,iter : ${branches}">
        <td th:text="${iter.index}+1"></td>
        <td th:text="${b.branchName}"></td>
        <td th:text="${b.branchLocation}"></td>
        <td th:text="${b.status}"></td>
        <td style="text-align: right;">
            <button  class="btn btn-warning" data-toggle="modal" data-target="#branchModal">Edit</button>
            <button class="btn btn-warning">Deactivate</button>
        </td>
    </tr>
    </tbody>
</table>

我有引导模式。现在,当我单击表格的编辑按钮时,我想在模态表单中加载单击的表格行数据。

<div class="modal fade" id="branchModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
            <div class="modal-dialog" role="document">
                <div class="modal-content">
                    <div class="modal-header">
                        <h5 class="modal-title" id="exampleModalLabel">New message</h5>
                        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                            <span aria-hidden="true">&times;</span>
                        </button>
                    </div>
                    <div class="modal-body">
                        <form>
                            <div class="form-group">
                                <label for="branch-name" class="col-form-label">Branch Name:</label>
                                <input type="text" class="form-control" id="recipient-name">
                            </div>
                            <div class="form-group">
                                <label for="branch-location" class="col-form-label">Branch Location:</label>
                                <textarea class="form-control" id="branch-location"></textarea>
                            </div>
                        </form>
                    </div>
                    <div class="modal-footer">
                        <button style="margin-right:10px;" type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
                        <button type="button" class="btn btn-primary">Update</button>
                    </div>
                </div>
            </div>
        </div>

我怎样才能实现它?

注意:- 我没有使用 jquery,因此使用纯 javascript 的解决方案将不胜感激。

标签: javascriptbootstrap-4thymeleaf

解决方案


如果您有loadDataOnModal处理显示模式的功能,请将其添加到您的编辑按钮:

th:onclick="| loadDataOnModal('${b.branchName}', '${b.branchLocation}')|"

我看到您只需要模态正文中的分支名称和位置。


推荐阅读