nerdexam
Microsoft

70-515 · Question #67

70-515 Question #67: Real Exam Question with Answer & Explanation

The correct answer is C. $('.Results').bind('onrowselected', function (e, sender) {. See the full explanation below for the reasoning.

Question

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?

Options

  • A$('.Results input:checked').onrowselected = function (e, sender)
  • B$('.Results input:checked').bind('onrowselected', function
  • C$('.Results').bind('onrowselected', function (e, sender) {
  • D$('.Results').onrowselected($.proxy($(this).find('input:checked'),

Community Discussion

No community discussion yet for this question.

Full 70-515 Practice