- 선언적 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) = inner__eterte 및 경고 (index) = undefined에 대한 –
. dojo version = 1.7 – Rachel