マネージド Bean から jquery を実行したいのですが、セレクターに次の問題があります。
Uncaught Error: Syntax error, unrecognized expression: unsupported pseudo: lesarticles
マネージド Bean コードは次のとおりです。
RequestContext.getCurrentInstance().execute("$('#tabView\\:lesarticles').children().find('table tbody tr td div').css('display', 'none');");
これがコンポーネントのツリーです
<p:tabView id="tabView">
<p:tab>
<p:datatable id="lesarticles">......
そして私が実行すると:
RequestContext.getCurrentInstance().execute("$('#tabView:lesarticles').children().find('table tbody tr td div').css('display', 'none');");
エラーもあります
どうすればそれを解決できますか
ありがとうございました