Stories recently tagged with 'repeater'

Hacking the ASP.NET Parser (weblogs.asp.net)

submitted by crpietschmanncrpietschmann(11.3k) 2 years, 5 months ago

A while ago I blogged about using external templates in an asp.net application. The problem with that was it wasn’t natively supported, so I had to create a derived SpecialRepeater in order to take advantage of the external template system. In this latest parser hack I’ve managed to “trick” the asp.net parser into letting me declaratively set any template property to be a virtual path in order to load a user control into that template at runtime. The ASP.NET compliation system is pretty complex. There are all kinds of extensibility points, including BuildProviders, PageParserFilters, ControlBuilders, ExpressionBuilders and the list goes on. One unknown *feature* of the parser is it’s ability to generate code from something called an InstanceDescriptor. read more...

1 comment |category: |Views: 295

tags: another

Code Based Repeater for ASP.NET MVC(haacked.com)

submitted by alleyalley(2840) 4 years ago

A foreach loop doesn’t help you handle alternating items, for example. My response to this story is, “The foreach loop is not our repeater control. Our repeater control is an iterating extension method with lambdas!”. Because who doesn’t love lambdas? read more...

2 comments |category: |Views: 272

tags: another

Creating a scrollable and grouped Repeater Layout(west-wind.com)

submitted by rstrahlrstrahl(7226) 4 years, 9 months ago

A couple of people asked me today about a layout I put together for an application. The layout is bascially a scrollable and grouped repeater that looks a little like a ListView control in WinForms. This sort of layout can be great for longer lists when paging is not really the right choice - a common scenario in AJAX applications actually. Here's a quick walk through on how this layout is put together. read more...

add a comment |category: |Views: 49

tags: another

ASP.NET Repeater control instead of grid(aspcode.net)

submitted by aspcode.netaspcode.net(1045) 4 years, 10 months ago

Simple example on how to tie event handlers to a specific row in a repeater read more...

3 comments |category: |Views: 165

tags: another

ASP.NET AJAX Repeater(dotnetslackers.com)

submitted by k000derk000der(4765) 4 years, 10 months ago

Data Bound Templated Control with ASP.NET AJAX read more...

add a comment |category: |Views: 407

tags: another

The Easy Way To Alternate Background Colours on a Repeater(thewebjedi.com)

submitted by DrJazzDrJazz(50) 4 years, 11 months ago

If you want to alternate background colours on a Repeater control without having to create an AlternatingItemTemplate, try out this little shortcut. read more...

add a comment |category: |Views: 20

tags: another

The Easy Way To Alternate Background Colours on a Repeater(thewebjedi.com)

submitted by DrJazzDrJazz(50) 4 years, 11 months ago

If you want to alternate background colours on a Repeater control without having to create an AlternatingItemTemplate, try out this little shortcut. read more...

add a comment |category: |Views: 20

tags: another

Add paging to a repeater(aspnetlibrary.com)

submitted by ca8msmca8msm(429) 5 years ago

An example of how we can add paging to a repeater control by using a PagedDataSource. read more...

add a comment |category: |Views: 59

tags: another

Restricting the number of rows in a dataview when binding to a repeate(geekzilla.co.uk)

submitted by phaymanphayman(3550) 5 years, 9 months ago

Using IEnumerable to limit the number of rows in a DataView when binding to a repeater. read more...

2 comments |category: |Views: 24

tags: another