Row change event of repeater

前端 未结 2 663
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-29 08:51

I am using C#, ASP.net 3.5

How to capture the row change event of repeater in javascript?

相关标签:
2条回答
  • 2021-01-29 09:37

    There is no such event exists in Repeater control. Take a look at MSDN article.

    0 讨论(0)
  • 2021-01-29 09:48

    You should bind to the change event of items in your row in javascript. The default on_change event of .net does a postback, so you can handle it server side. You can also capture the mouse hover event on the row in javascript and handle the mouseenter en mouseleave methods to update your data or something. See: how to handle row change event of table using jquery?

    0 讨论(0)
提交回复
热议问题