Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当 RadTextBox 文本更改时,我需要调用 ItemDataBound 事件。如何实现这一点,请帮助。
您应该将RadGrid.DataBind();方法分配给RadTextBox.TextChanged偶数。所以你会得到你的ItemDataBound事件触发。
RadGrid.DataBind();
RadTextBox.TextChanged
ItemDataBound
itemdatabound 事件仅在绑定 radgrid 时触发..不能直接在文本框更改事件上调用它..
或者你在 textchanged 事件上绑定你的网格然后它会调用那个事件