[求助]2005中的点右键隐藏RadGrid 中的某一列
大家好,我用的是2005,现在有个RadGrid,绑定了很多列,我想做个右键菜单,我想点哪列,右键弹出菜单里面有个隐藏项,然后这列就隐藏,改怎么做啊
我上網找了一下:
<table border="1" width="100%" id="table1">
<colgroup id="colGroup1">
<col/>
<col/>
<col/>
</colgroup>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>a</td>
<td>b</td>
<td>c</td>
</tr>
</table>
<p>
<input type="button" value="1" name="B3" onclick="javascript:colGroup1.childNodes[1].style.display='none'"><input type="button" value="2" name="B4" onclick="javascript:colGroup1.childNodes[1].style.display='block'"></p>
不知道這個對你有沒有什麼幫助,這是隱藏表格的某列。