Stories recently tagged with 'repeater'

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

submitted by crpietschmanncrpietschmann(11.3k) 2 years, 2 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: 293

tags: another

Using the ASP.NET Repeater Control to Group Data and Add Totals(dotnetcurry.com)

submitted by vivekamarvivekamar(5940) 3 years, 4 months ago

Spice Up Your Ad Reports - Using the ASP.NET Repeater Control to Group Data and Add Totals The Repeater control is truly amazing. Being template driven, it gives you a lot of flexibility to manipulate and render the final output. In this article, we will exploit this flexibility of the ASP.NET Repeater and build a sample to demonstrate how to use the templates to group and display data. We will also use a little code to ‘total’/sum up our data and display it on the fly. read more...

add a comment |category: |Views: 1605

tags: another

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

submitted by alleyalley(2840) 3 years, 9 months 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: 259

tags: another

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

submitted by rstrahlrstrahl(7226) 4 years, 5 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: 48

tags: another

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

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

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

3 comments |category: |Views: 160

tags: another

ASP.NET AJAX Repeater(dotnetslackers.com)

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

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

add a comment |category: |Views: 403

tags: another

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

submitted by DrJazzDrJazz(50) 4 years, 7 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, 7 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) 4 years, 9 months ago

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

add a comment |category: |Views: 58

tags: another

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

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

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

2 comments |category: |Views: 23

tags: another