Chris
Chris

Reputation:

Loop through a repeater client side

how to loop through a repeater client side when page has a masterpage?

Thanks

Upvotes: 0

Views: 1035

Answers (1)

Guffa
Guffa

Reputation: 700352

You can't. The repeater only exists server side, it doesn't render any HTML code for itself. It only render it's contents, so there is nothing that you can target on the client side.

If you have an element in the template that has a specific name or class, you can target those elements in the client script.

Upvotes: 2

Related Questions