- В декларативном dojox.grid.datagrid я использую onresizecolumn в теге таблицы.
onresizecolumn = "columnResize (this.id, this.cellIdx)"Получить индекс столбца в onresizecolumn декларативного dojox.grid.datagrid
onresizecolumn вызывает функцию. при изменении размера столбца я хочу получить cellIdx.
<div class="claro" id="eterte" name="dataGrid" onclick="getConnect('inner__eterte');setWidgetproperty(this.id,'xy','inner__eterte');" ondblclick="editCustomGrid(this.id)" onmouseup="setDocStyle(this.id)" style="height:200px; left:39px; position:absolute; top:251px; width:950px;">
<table class="claro" dojotype="dojox.grid.DataGrid" id="inner__eterte" onresizecolumn="columnResize(this.id,this.cellIdx)" rowselector="10px" style="height: 180px; width: 400px;">
<thead>
<tr>
<th field="Column1" id="Column1_6" width="159px">
Column1
</th>
</tr>
</thead>
</table>
<input id="hidden__eterte" name="dataGrid" style="display:none;" type="hidden">
</div>
function columnResize(id,index){
alert();
alert(id);
alert(index);
}
Каковы ошибки? Что выдают оповещения? Какая версия Dojo? –
для предупреждения (id) = internal__eterte и для предупреждения (index) = undefined. dojo version = 1.7 – Rachel