0

我使用这个精彩的脚本来使我的表格可排序并添加一些过滤器。我的问题是我需要始终查看标题中的第二行(带有复选框)。我避免在单击时对行进行排序(通过将其设置为 td 而不是 th 虽然它在 thead 中)。

所以主要问题是我需要查看复选框(thead/td,当单击以将表格排序为上面的行时它不应该处于活动状态)并且还总是看到 tfoot - 添加过滤器时它也被隐藏。 ..

这是我的设置

var Props =  {
          popup_filters: true,
          mark_active_columns: true,
          sort: true,
          sort_config: {  
            sort_types:['EU','EU','EU','EU','EU','EU','EU','EU','EU','EU','EU','EU','EU','EU']  
          },  
          loader: true,  
          loader_html: '<img src="/images/load.gif" style="vertical-align:middle; margin:0 5px 0 5px"><span>Зареждане...</span>',
          mark_active_columns: true,
          col_0: "select",  
            col_1: "multiple",  
            col_2: "select",  
            col_3: "select",
            cEUtom_slc_options: {  
        cols:[1],  
        texts: [['0- 50','60 - 80','80 - 100']],  
        values: [  
                    ['<=50','>60 && <=80','>80 && <=100']  
                ],  
        sorts: [false],
        sort_config: {  
            sort_types:['EU','EU','EU','EU','EU','EU','EU','EU','EU','EU','EU','EU','EU','EU']  
        }, 
    },   
    themes: {   
    name:['MyTheme'],   
    src:['TableFilter/TF_Themes/MyTheme/MyTheme.css'],   
    description:['My stylesheet'],   
    initialize:[null]  
} 
        };
          setFilterGrid("advancedtable1",Props );

在此处输入图像描述

4

1 回答 1

0

我发现我首先需要的是获取页脚的行号: var totRowIndex = tf_Tag(tf_Id('advancedtable1'),"tr").length; //advancedtable1 is the table id 然后我将其添加 rows_always_visible:[2,totRowIndex]到表格道具中,其中 2 是我希望始终看到的行,而 totRowIndex 是页脚行。

于 2012-07-17T07:32:13.463 回答