I am using C#, ASP.net 3.5
How to capture the row change event of repeater in javascript?
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?