Tapestry:如何使用Jquery

时间:2013-08-05 02:04:43

标签: jquery datatable tapestry

我正在使用jquery / datatable。我想突出显示数据表中的选定行。有一个实现它的示例jQuery代码。这是代码

var oTable;
var giRedraw = false;

$(document).ready(function() {
/* Add a click handler to the rows - this could be used as a callback */
$("#example tbody").click(function(event) {
    $(oTable.fnSettings().aoData).each(function (){
        $(this.nTr).removeClass('row_selected');
    });
    $(event.target.parentNode).addClass('row_selected');
});

/* Init the table */
oTable = $('#example').dataTable( );

我所做的是将代码复制到test.js文件中并导入它。但是,它不起作用。我甚至尝试将$更改为jQuery,但它仍然无效。我已经设置了configuration.add(JQuerySymbolConstants.SUPPRESS_PROTOTYPE,“false”);在我的AppModule中。如何在Tapestry中使用Jquery?
任何帮助将非常感激。感谢。

1 个答案:

答案 0 :(得分:0)

来自http://tapestry5-jquery.com/#block2

  

tapestry5-jquery项目有一个允许您自定义的选项   这个别名:在你的AppModule中,使用contribApplicationDefaults方法,   您可以添加configuration.add(JQuerySymbolConstants.JQUERY_ALIAS, "yourOwnAlias");