Questions tagged [datarepeater]

The Repeater control is used to display a repeated list of items that are bound to the control.

The Repeater control may be bound to a database table, an XML file, or another list of items.

Available for trough Visual Basic Power Packs (since version 3.0).


Also see for version of repeater.

127 questions
1
vote
0 answers

How can I modify shapes on each item in a DataRepeater?

I have a DataRepeater with some shapes on the ItemTemplate that I want to toggle on and off based on data in each Item. With every other control, I have done similar things using e.DataRepeaterItem.Controls["whatever"] in the DrawItem event, however…
chkimes
  • 1,127
  • 13
  • 20
1
vote
2 answers

Binding List to a repeater

I have a complicated class which is something like: public class Person { public int Pid; IList
Addressess; public Name Name; public Name PartnerName; Person(int id) { …
LocustHorde
  • 6,361
  • 16
  • 65
  • 94
1
vote
3 answers

ASP.NET Repeater and Outputting Hierarchical Data

I am currently using this http://blogs.sitepoint.com/hierarchical-data-database-2/ method of storing my data. My current database rows look like this: Name | nodeLeft | nodeRight | nodeLevel Home | 1 | 6 | 1 ContentA | …
balexander
  • 23,131
  • 14
  • 45
  • 68
1
vote
0 answers

Need Help filtering with DataRepeater

My form allows the user to search a collection of customers. When I click on the Search button I want it to display only the specific result that was found and hide the rest of the customers. For example, if I put customer id as 133 it should only…
Rick Cresci
  • 81
  • 1
  • 1
  • 6
1
vote
1 answer

VB.net troubleshooting Data repeater when scrolling

I use a Data Repeater (name DR_listMembers) with virtual mode = true on the item template of Data Repeater are two controls TextBox1 and PictureBox1 I add five items and fill the controls with some text and picture But when i scroll the data…
Sebastien
  • 11
  • 1
1
vote
0 answers

data on repeater takes too long to load

I have a page that runs reports on sales for a time period. When I run it for a month with around 88 transactions, its take a while but I can live with it for now. Problem is when I try run the page for a year or over 3 months, its takes around…
KevinC
  • 71
  • 12
1
vote
1 answer

DataRepeater displaying new items unexpectedly

I have a DataRepeater (Microsoft.VisualBasic.PowerPacks) which has 100+ records consisting of about 5 TextBoxes and corresponding labels in each item so that it becomes scrollable. In case it matters, its DataSource is set via this line: …
Broots Waymb
  • 4,713
  • 3
  • 28
  • 51
1
vote
1 answer

Data Repeater items Does Not Displayed on another machine

I have set the data source of Data Repeater in C# Windows Application to a collection of Images ,every thing is good on my machine and the Images Displayed successfully ,but when I try to Run my Windows Application on another machine - The Images…
Fawzy Mokhtar
  • 539
  • 5
  • 12
1
vote
0 answers

Adding 'Show More' functionality to a ASP Repeater

To put it as simple as I can. I have a website and the homepage is populated with an ASP Repeater control. This shows details of people you follows activities on the site within the last 30 days. My problem being I dont want my homepage to be too…
Paul Kirkason
  • 227
  • 2
  • 4
  • 20
1
vote
0 answers

Remove/hide the separator in DataRepeater control in Windows Forms

I have a DataRepeater Control in Windows Forms application. The items are separated by a horizontal line, which I want to hide or remove if possible. Can anyone suggest how to do this? Thanks.
user3007740
  • 91
  • 1
  • 2
  • 9
1
vote
1 answer

Disable controls on certain items in DataRepeater control

I'm using the DataRepeater control from the Visual Basic Power Pack in my C# Winforms application. The control is unbound, operating in VirtualMode. I'm displaying multiple items in this control. Depending on certain criteria, I want to disable a…
Aaron
  • 367
  • 1
  • 7
  • 16
1
vote
3 answers

Repeatable data content in umbraco

I am just wondering is there any plugin to create dynamic content for a page i.e something similar to a data repeaters in .net. To make it simple it should be a section that should contains 5 to 6 fields/property like heading heading 2 image content…
Aneesh
  • 187
  • 1
  • 3
  • 18
1
vote
0 answers

Win Forms: How to Bind Property of UserControl In DataRepeater to Collection Item itself

I am using a data repeater from Visual Basic Power Packs (Microsoft.VisualBasic.PowerPacks.DataRepeater) in .Net 4.0 (c#) winforms project. I am binding it (setting the DataSource property) to a generic List. T is just one of my business…
toddmo
  • 20,682
  • 14
  • 97
  • 107
1
vote
2 answers

vb.net Datarepeater, Dataadapter, Dataset, SQL How to break up line by line and insert into repeater

Edited Code : the code from before works great but cannot change the textbox.text properties or display them fro each of the controlls added by this loop any help is appreciated some sub Dim EqLst As String = "" Try Dim con As New…
Pakk
  • 1,299
  • 2
  • 18
  • 36
1
vote
3 answers

Use data in repeater when Checkbox is check in ASP.net

I have a repeater for showing my data . this repeater showing 2 field that one of feild is checkBox Control and other is a lable. NOW , how can I understand text of lable when the checkBox is Checked? I want to see text of lable in evry row that the…
mohammad reza
  • 3,292
  • 6
  • 29
  • 39
1 2
3
8 9