0
- 是否可以在dojox.grid.datagrid的標題中進行onclick。
我試着在標題的onclick中調用函數..但它不起作用。聲明式dojox.grid.datagrid的標題有onclick事件嗎?
<div class="claro" id="cvsd" name="dataGrid" onclick="getConnect('inner__cvsd');setWidgetproperty(this.id,'xy','inner__cvsd');" ondblclick="editCustomGrid(this.id)" onmouseup="setDocStyle(this.id)" style="height: 200px; left: 44px; position: absolute; top: 114px; width: 950px;"> <table class="claro" dojotype="dojox.grid.DataGrid" id="inner__cvsd" rowselector="10px" style="height: 180px; width: 400px;"> <thead> <tr> <th field="Column1" id="Column1_2" width="100px" onclick="getConnect();"> Column1 </th> </tr> </thead> </table> <input id="hidden__cvsd" name="dataGrid" style="display:none;" type="hidden">
其工作..任何可能性以聲明方式實現這一點?我的意思是
我假設你使用的是dojo 1.6,所以你可以通過在你的'
所以要說清楚,這不是onclick事件,而是onHeaderCellClick事件;) – g00glen00b 2013-04-09 12:15:07
相關問題