steve
steve

Reputation:

How do I add blank rows to a repeater bound to a List<T>?

Is this possible? Using VB.NET.

Can I do it in the footer maybe? Would that be the best way? Bind the footer to a datatable and throw some blank rows in there?

Upvotes: 1

Views: 1002

Answers (2)

Rick Rat
Rick Rat

Reputation: 1732

You could do that or.... You could look through and set specific ones to have "margin-bottom: 25px;".

Upvotes: 0

steve
steve

Reputation:

I did this by dynaically adding HTML below the repeater, I subtracted by 15 - repeater.items.count then iterated through and added rows.

Upvotes: 1

Related Questions