网格视图动态列 +弹出扩展器 +复选框列表
我有一个带有 x 动态列的网格视图。每列包含一个 DropDownList 或一个 TextBox、一个 CheckBoxList 和一个 PopUpControlExtender。
问题是,当我进行回发时,我必须重新绘制动态列并重新填充列表。但是,当我重新填充 CheckBoxList 时,其他列的 DropDownBox 会在下一行重新绘制 http://i948.photobucket.com/albums/ad328/TamarChaver/messeduptable3.png
如果我单击 PopUpControlExtender 的 TextBox,该行中的 DropDownList 将被重新绘制,但其余部分仍然混乱
I have a gridview with x dynamic columns. Each column contains either a DropDownList OR a TextBox, a CheckBoxList, and a PopUpControlExtender.
The problem is that when I do postback I have to redraw my dynamic columns and refill my lists. But, when I refill the CheckBoxList, the other columns' DropDownBoxes are redrawn on the next line
http://i948.photobucket.com/albums/ad328/TamarChaver/messeduptable3.png
If I click on the PopUpControlExtender's TextBox, the DropDownLists from that line are redrawn, but the rest are still messed up
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
修复了它(不小心)。我设置 panel1.Style["display"] = "none" 并且问题自行解决。
Fixed it (accidentally). I set panel1.Style["display"] = "none" and the issue resolved itself.