如何在 jqxDatatable 中单击按钮时查找行索引?

How to find row index on button click in jqxDatatable?

请查看我需要使用的示例JqxDatatable example

我在每一行中设置了 "Edit" 按钮来编辑数据。但我找不到行索引。如果我找到行索引,我就可以获取行数据并更新并保存它。请查看以下代码:

<html lang="en">
<head>
    <title id="Description">Column Header Template in jqxDataTable</title>
    <meta name="description" content="This sample demonstrates how we can customize the rendering of the Column Headers in the jQWidgets DataTable widget.">
    <link rel="stylesheet" href="jqx.base.css" type="text/css" />
    <script type="text/javascript" src="jquery-1.11.1.min.js"></script>
    <script type="text/javascript" src="jqxcore.js"></script>
    <script type="text/javascript" src="jqxdata.js"></script>
    <script type="text/javascript" src="jqxbuttons.js"></script>
    <script type="text/javascript" src="jqxscrollbar.js"></script>
    <script type="text/javascript" src="jqxmenu.js"></script>
    <script type="text/javascript" src="jqxdatatable.js"></script>
    <script type="text/javascript" src="jqxcheckbox.js"></script>
    <script type="text/javascript" src="demos.js"></script>
    <script type="text/javascript">
        $(document).ready(function () {
            // prepare the data
            var data = new Array();

            var firstNames = ["Nancy", "Andrew", "Janet", "Margaret", "Steven", "Michael", "Robert", "Laura", "Anne"];
            var lastNames = ["Davolio", "Fuller", "Leverling", "Peacock", "Buchanan", "Suyama", "King", "Callahan", "Dodsworth"];
            var titles = ["Sales Representative", "Vice President, Sales", "Sales Representative", "Sales Representative", "Sales Manager", "Sales Representative", "Sales Representative", "Inside Sales Coordinator", "Sales Representative"];
            var titleofcourtesy = ["Ms.", "Dr.", "Ms.", "Mrs.", "Mr.", "Mr.", "Mr.", "Ms.", "Ms."];
            var birthdate = ["08-Dec-48", "19-Feb-52", "30-Aug-63", "19-Sep-37", "04-Mar-55", "02-Jul-63", "29-May-60", "09-Jan-58", "27-Jan-66"];
            var hiredate = ["01-May-92", "14-Aug-92", "01-Apr-92", "03-May-93", "17-Oct-93", "17-Oct-93", "02-Jan-94", "05-Mar-94", "15-Nov-94"];
            var address = ["507 - 20th Ave. E. Apt. 2A", "908 W. Capital Way", "722 Moss Bay Blvd.", "4110 Old Redmond Rd.", "14 Garrett Hill", "Coventry House", "Miner Rd.", "Edgeham Hollow", "Winchester Way", "4726 - 11th Ave. N.E.", "7 Houndstooth Rd."];
            var city = ["Seattle", "Tacoma", "Kirkland", "Redmond", "London", "London", "London", "Seattle", "London"];
            var postalcode = ["98122", "98401", "98033", "98052", "SW1 8JR", "EC2 7JR", "RG1 9SP", "98105", "WG2 7LT"];
            var country = ["USA", "USA", "USA", "USA", "UK", "UK", "UK", "USA", "UK"];
            var homephone = ["(206) 555-9857", "(206) 555-9482", "(206) 555-3412", "(206) 555-8122", "(71) 555-4848", "(71) 555-7773", "(71) 555-5598", "(206) 555-1189", "(71) 555-4444"];
            var notes = ["Education includes a BA in psychology from Colorado State University in 1970.  She also completed 'The Art of the Cold Call.'  Nancy is a member of Toastmasters International.",
                "Andrew received his BTS commercial in 1974 and a Ph.D. in international marketing from the University of Dallas in 1981.  He is fluent in French and Italian and reads German.  He joined the company as a sales representative, was promoted to sales manager in January 1992 and to vice president of sales in March 1993.  Andrew is a member of the Sales Management Roundtable, the Seattle Chamber of Commerce, and the Pacific Rim Importers Association.",
                "Janet has a BS degree in chemistry from Boston College (1984).  She has also completed a certificate program in food retailing management.  Janet was hired as a sales associate in 1991 and promoted to sales representative in February 1992.",
                "Margaret holds a BA in English literature from Concordia College (1958) and an MA from the American Institute of Culinary Arts (1966).  She was assigned to the London office temporarily from July through November 1992.",
                "Steven Buchanan graduated from St. Andrews University, Scotland, with a BSC degree in 1976.  Upon joining the company as a sales representative in 1992, he spent 6 months in an orientation program at the Seattle office and then returned to his permanent post in London.  He was promoted to sales manager in March 1993.  Mr. Buchanan has completed the courses 'Successful Telemarketing' and 'International Sales Management.'  He is fluent in French.",
                "Michael is a graduate of Sussex University (MA, economics, 1983) and the University of California at Los Angeles (MBA, marketing, 1986).  He has also taken the courses 'Multi-Cultural Selling' and 'Time Management for the Sales Professional.'  He is fluent in Japanese and can read and write French, Portuguese, and Spanish.",
                "Robert King served in the Peace Corps and traveled extensively before completing his degree in English at the University of Michigan in 1992, the year he joined the company.  After completing a course entitled 'Selling in Europe,' he was transferred to the London office in March 1993.",
                "Laura received a BA in psychology from the University of Washington.  She has also completed a course in business French.  She reads and writes French.",
                "Anne has a BA degree in English from St. Lawrence College.  She is fluent in French and German."];

            var k = 0;
            for (var i = 0; i < 5; i++) {
                var row = {};
                row["firstname"] = firstNames[k];
                row["lastname"] = lastNames[k];
                row["title"] = titles[k];
                row["titleofcourtesy"] = titleofcourtesy[k];
                row["birthdate"] = birthdate[k];
                row["hiredate"] = hiredate[k];
                row["address"] = address[k];
                row["city"] = city[k];
                row["postalcode"] = postalcode[k];
                row["country"] = country[k];
                row["homephone"] = homephone[k];
                row["notes"] = notes[k];
                data[i] = row;
                k++;
            }

            var source =
            {
                localData: data,
                dataType: "array"
            };


            var dataAdapter = new $.jqx.dataAdapter(source);

            var allRowsSelected = function () {
                var selection = $("#dataTable").jqxDataTable('getSelection');
                var rows = $("#dataTable").jqxDataTable('getRows');

                if (selection.length == 0) {
                    return false;
                }

                if (rows.length != selection.length) {
                    return null;
                }

                return true;
            }

            var updatingSelection = false;
            var updatingSelectionFromDataTable = false;

            $("#dataTable").jqxDataTable(
            {
                width: 850,
                source: dataAdapter,
                columns: [
                      {
                          text: 'Photo', align: 'center', dataField: 'firstname', width: 80,
                          renderer: function (text, align, height) {
                              var checkBox = "<div id='checkbox' style='z-index: 999; margin: 5px; margin-left: 30px; margin-top: 8px; margin-bottom: 3px;'>";
                              checkBox += "</div>";
                              return checkBox;
                          },
                          rendered: function (element, align, height) {
                              element.jqxCheckBox();
                              element.on('change', function (event) {
                                  if (!updatingSelectionFromDataTable) {
                                      var args = event.args;
                                      var rows = $("#dataTable").jqxDataTable('getRows');
                                      updatingSelection = true;
                                      if (args.checked) {
                                          for (var i = 0; i < rows.length; i++) {
                                              $("#dataTable").jqxDataTable('selectRow', i);
                                          }

                                      }
                                      else {
                                          $("#dataTable").jqxDataTable('clearSelection');
                                      }
                                      updatingSelection = false;
                                  }
                              });
                              return true;
                          },
                          // row - row's index.
                          // column - column's data field.
                          // value - cell's value.
                          // rowData - rendered row's object.
                          cellsRenderer: function (row, column, value, rowData) {
                              var image = "<div style='margin: 5px; margin-bottom: 3px;'>";
                              var imgurl = 'images/' + rowData.firstname.toLowerCase() + '.png';
                              var img = '<img width="60" height="60" style="display: block;" src="' + imgurl + '"/>';
                              image += img;
                              image += "</div>";
                              return image;
                          }
                      },
                      {
                          text: 'Details', align: 'center', dataField: 'lastname',
                          // row - row's index.
                          // column - column's data field.
                          // value - cell's value.
                          // rowData - rendered row's object.
                          cellsRenderer: function (row, column, value, rowData) {
                              var container = '<div style="width: 100%; height: 100%;">'
                              var leftcolumn = '<div style="float: left; width: 50%;">';
                              var rightcolumn = '<div style="float: left; width: 50%;">';

                              var firstname = "<div style='margin: 10px;'><b>First Name:</b> " + rowData.firstname + "</div>";
                              var lastname = "<div style='margin: 10px;'><b>Last Name:</b> " + rowData.lastname + "</div>";
                              var title = "<div style='margin: 10px;'><b>Title:</b> " + rowData.title + "</div>";
                              var address = "<div style='margin: 10px;'><b>Address:</b> " + rowData.address + "</div>";

                              leftcolumn += firstname;
                              leftcolumn += lastname;
                              leftcolumn += title;
                              leftcolumn += address;
                              leftcolumn += "</div>";

                              var postalcode = "<div style='margin: 10px;'><b>Postal Code:</b> " + rowData.postalcode + "</div>";
                              var city = "<div style='margin: 10px;'><b>City:</b> " + rowData.city + "</div>";
                              var phone = "<div style='margin: 10px;'><b>Phone:</b> " + rowData.homephone + "</div>";
                              var hiredate = "<div style='margin: 10px;'><b>Hire Date:</b> " + rowData.hiredate + "</div>";
                              var EditButon = '<input type="button" class="editButtons"  id="button' + row + '" value= "Edit" />';
                              rightcolumn += postalcode;
                              rightcolumn += city;
                              rightcolumn += phone;
                              rightcolumn += hiredate;
                              rightcolumn += EditButon;
                              rightcolumn += "</div>";
                              container += leftcolumn;
                              container += rightcolumn;
                              container += "</div>";
                              return container;
                          }
                      }
                ]
            });
            $("#dataTable").on('rowSelect', function (event) {
                updatingSelectionFromDataTable = true;
                if (!updatingSelection && $("#checkbox").length > 0) {
                    $("#checkbox").jqxCheckBox({ checked: allRowsSelected() });
                }
                updatingSelectionFromDataTable = false;
            });

            $("#dataTable").on('rowUnselect', function (event) {
                updatingSelectionFromDataTable = true;
                if (!updatingSelection && $("#checkbox").length > 0) {
                    $("#checkbox").jqxCheckBox({ checked: allRowsSelected() });
                }
                updatingSelectionFromDataTable = false;
            });

        });
    </script>
</head>
<body class='default'>
    <div id="dataTable"></div>

</body>
</html>

下载源代码click here

请查看填充数据表的图像,如下所示:

尝试将行值作为数据行属性分配给按钮

'<input type="button" class="editButtons" data-row="' + row + '" id="button' + row + '" value="Edit"/>'

然后

$(".editButtons").click(function(event) {
    var index = event.target.getAttribute('data-row');
    // that should get you the row index
});