8

我在 jQuery Mobile Foo Table中需要一点帮助。我在表中动态添加数据。

HTML:

    <table id="tblSRNDetails" class="footable">
        <thead>
            <tr>
                <th data-class="expand">SRN</th>
                <th >Failure Date</th>  
                <th >Complaint Report Date</th>                 
                <th>Promised Date</th>  
                <th >Customer Name</th>
                <th >Log Time</th>
                <th >Create FSR</th>    
                <th  data-hide="phone,tablet">Days Open</th>        
                <th  data-hide="phone,tablet">SRN Allocated Time</th>   
                <th  data-hide="phone,tablet"> SRN Status</th>  
                <th  data-hide="phone,tablet"> ESN Number</th>  
                <th  data-hide="phone,tablet"> Request Type</th>    
                <th  data-hide="phone,tablet">Service Request Details</th>                          
            </tr>
        </thead>
        <tbody>
        </tbody>
    </table>

js代码:

$("#page-id").live('pagebeforeshow', function() {
    console.log("Page before show");
    $("#tblSRNDetails > tbody tr").remove();
    for (var indx = 0; indx < 2; indx++ )
    {
        $("#tblSRNDetails > tbody").append("<tr>"+
        "<td>Name</td>"+
        "<td>failureDate</td>"+
        "<td>complaintReportDate</td>"+
        "<td>promisedDate</td>"+
        "<td>custName</td>"+
        "<td><a href='#'><b>Log Time</b></a></td>"+
        "<td><b>Create FSR</b></td>"+
        "<td>daysOpen</td>"+
        "<td>allocatedTime</td>"+
        "<td>srn_status</td>"+
        "<td>ESNNumber</td>"+
        "<td>requestType</td>"+
        "<td>customerComplaint</td>"+
        "</tr>");   
    }
    $('#tblSRNDetails').footable();
});

首次打开时,此 FooTable 将正确应用。如果我单击主页按钮并返回,然后再次进入该页面,则 FooTable 未正确应用。

截屏:

在此处输入图像描述

所以我当时面临的问题包括:

  1. 显示隐藏字段。(意味着未应用 Footable):在设备中更改方向两次后,此问题得到解决。

  2. 第一个字段不再包含“数据展开”按钮(表示未应用Footable):

我认为问题在于我正在删除旧行并添加新行。我试过没有给删除电话。那时,旧行正在正确显示。如屏幕截图所示,新附加的字段存在问题。

有人可以帮我弄这个吗?

PS:我在 android webview 中渲染这个。同样的问题也在浏览器中重现。

4

3 回答 3

4

我在我的 Web 应用程序中遇到了同样的问题,我在 datatables.net 中使用回调时添加了重绘功能,它工作得很好。

$('table').trigger('footable_redraw');
于 2013-09-23T14:55:19.097 回答
4

Foo 表是作为 jQuery 插件创建的,因此从未打算与 jQuery Mobile 一起使用。它只是另一个无法与 jQuery mobile 一起正常工作的插件。Foo 表不知道如何处理 jQuery Mobile 页面切换。

只有在每次访问该页面时动态创建整个表才能使其工作。在任何其他情况下, Foo 表将不起作用,因为页面已经存在增强表标记。这就是为什么每个 jQuery Mobile 小部件都有一个带有刷新属性的函数。

这是一个工作示例:http: //jsfiddle.net/Gajotres/PjmEL/

最后一件事,如果这对您来说不是一个好的解决方案,您应该切换到动态表的 jQuery Mobile 实现。

$(document).on('pageshow', '#index', function(){  
    $("#tblSRNDetails").remove();
    $('<table>').attr({'id':'tblSRNDetails','class':'footable'}).appendTo('[data-role="content"]');
        $("#tblSRNDetails").append(
            "<thead><tr>"+
            "<th data-class='expand'>SRN</th>"+
            "<th >Failure Date</th>"+
            "<th >Complaint Report Date</th>"+
            "<th>Promised Date</th>"+
            "<th >Customer Name</th>"+
            "<th >Log Time</th>"+
            "<th >Create FSR</th>"+
            "<th  data-hide='phone,tablet'>Days Open</th>"+
            "<th  data-hide='phone,tablet'>SRN Allocated Time</th>"+
            "<th  data-hide='phone,tablet'> SRN Status</th>"+
            "<th  data-hide='phone,tablet'> ESN Number</th>"+
            "<th  data-hide='phone,tablet'> Request Type</th>"+
            "<th  data-hide='phone,tablet'>Service Request Details</th>"+
            "</tr></thead>");  
    for (var indx = 0; indx < 2; indx++ )
    {
        $("#tblSRNDetails").append(
            "<tbody><tr>"+
            "<td>Name</td>"+
            "<td>failureDate</td>"+
            "<td>complaintReportDate</td>"+
            "<td>promisedDate</td>"+
            "<td>custName</td>"+
            "<td><a href='#'><b>Log Time</b></a></td>"+
            "<td><b>Create FSR</b></td>"+
            "<td>daysOpen</td>"+
            "<td>allocatedTime</td>"+
            "<td>srn_status</td>"+
            "<td>ESNNumber</td>"+
            "<td>requestType</td>"+
            "<td>customerComplaint</td>"+
            "</tr></tbody>");   
    }
    $('#tblSRNDetails').footable();
});

$(document).on('pagebeforeshow', '#second', function(){       

});
于 2013-04-30T11:05:43.103 回答
2

'Footable' 与 'jQuery Mobile' 配合得很好。我将用我的代码片段解释它的用法。

足部初始化,

function initFootable() {
    $(function () {
        $('.footable').footable({ //.footable is my class for table
            breakpoints: {
                phone: 480, //Breakpoint width for phones
                tablet: 1024 //Breakpoint width for tablets
            }
        });
    });
}

我正在使用 jQuery AJAX 调用来获取新的表数据并使用模板方法将它们添加到表中。我正在使用 handlebars.js 进行模板化。(请记住,这种模板方法不是强制性的。您可以使用自己的方法将新行附加到表中。)

因此,在将新数据更新到表后,您需要触发 footable 进行重新初始化。这是代码片段,

function updateFootable() {
    var paramTable = $('.footable');
    paramTable.footable();
    paramTable.trigger('footable_initialize'); //Reinitialize
    paramTable.trigger('footable_redraw'); //Redraw the table
    paramTable.trigger('footable_resize'); //Resize the table
}

这里的所有触发器都不是必需的。根据您在重新初始化/重绘/调整大小时遇到​​的问题,检查并确认调用哪个触发器对您来说足够了。

就是这样,您现在在 jQuery Mobile 中使用 footable 不会有任何问题。

重要提示:但是在调用 updateFootable() 时必须小心,如果包含表格的 div 或包含表格的页面被隐藏,则表格将不会响应调整大小。您必须确保在调用更新表时该表是可见的。

链接:

这是可脚触发器的文档 - http://fooplugins.com/footable/demos/triggers.htm#docs

确保通过footable docs - http://fooplugins.com/footable-demos/

于 2015-01-26T07:18:12.310 回答