What should you do?

You are building an ASP.NET control.
The control displays data by using a table element with a class attribute value of Results.
The control should expose a client-side event named onrowselected that fires when a check box in a table row is selected.
You need to implement this client-side event.
What should you do?
A. $(‘.Results input:checked’).onrowselected = function (e, sender) {

};
B. $(‘.Results input:checked’).bind(‘onrowselected’, function (e, sender) {

});
C.

D. $(‘.Results’).onrowselected($.proxy($(this).find(‘input:checked’), function (e, sender) {

}));

microsoft-exams

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.