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
0
votes
1 answer

Binding VB.net DataRepeater to dataview items at runtime with aggregation using linq

Hoping someone can help me out with what is probably a dumb question. I'm trying to use a datarepeater to display data generated via LINQ from a datatable I've managed to do this fine with a filtered existing datasource…
David
  • 235
  • 1
  • 6
  • 19
0
votes
1 answer

DataRepeater newly added row disappear when i clik on other row inserted earlier for copy data

I have small WinForms application with one TabControl (two TabPages). Each TabPage contains one DataRepeater control. Functionality both DR controls is the same - one databese table binded to one DR control (via DataSet object which is a DataSource…
0
votes
2 answers

VB.Net using databindings with a picture box

A row, in a data table, iscalled FirstImage contains a url to an image file on a web server. I am trying to bind the data of this row to the image source of the picture box. My current code: For Each row As DataRow In ListData.Rows Dim…
Blease
  • 1,380
  • 4
  • 38
  • 64
0
votes
2 answers

DataRepeater doesnt update when changing bound data

I have a DataRepeater1 with Label1 and Button1 on the ItemTemplate. These three controls are bound to a BindingList(Of T) where T is, atm, a very simple class that has a single string property When a user clicks one of the DataRepeater Item's button…
Toby
  • 9,696
  • 16
  • 68
  • 132
0
votes
1 answer

Tab out of DataRepeater instead of stepping through items

When a DataRepeater has focus I'd like the tab key to move focus to the next control on the form rather than tabbing through each of the items listed in the DataRepeater. How can I do this? Is there some property I can set? So far I have tried…
Toby
  • 9,696
  • 16
  • 68
  • 132
0
votes
1 answer

Make DataRepeater bound to List(Of Object) update?

What is the correct way to bind a List(Of Object) to a DataRepeater? Can you provide example code for this? I have been racking my brains on this and while I can get an already filled list to show in the repeater, subsequent changes to the list have…
Toby
  • 9,696
  • 16
  • 68
  • 132
0
votes
5 answers

How can i find a control in the footer template of a data repeater

ASPX : Code What i am looking for is source code…
sia
  • 2,185
  • 4
  • 20
  • 17
0
votes
2 answers

Binding data to a Data Repeater - VB.NET?

I'm looking for a line or two of code that will bind a DataSet.Datatable column to a textbox on a Datarepeater?
Alex
  • 2,081
  • 14
  • 49
  • 76
0
votes
2 answers

Formatting a data bound control according to bound data

I am displaing some data in a repeater using the following - BindingSource bindingSource5 = new BindingSource(); bindingSource5.DataSource = BookingManager.GetBookingDaysForDayWithBookingFields(DateTime.Now.AddDays(+4)); …
dynamicuser
  • 1,522
  • 3
  • 24
  • 52
0
votes
1 answer

VB Datarepeater control in Visual Studio 2010 - currentItemIndex updated before textbox leave event when using mouse

I'm using a datarepeater control, version 10.0 in visual studio 2010. The CurrentItemIndex seems to update before the textbox leave event when I use the mouse to move to the next row. So, when I retrieve the value from the textbox, I don't now what…
0
votes
1 answer

How to make Microsoft.VisualBasic.PowerPacks.DataRepeater instantly update bound data?

Here I'm talking about Windows Forms Application written in C#. Consider a simple model class Labelled { private string label; public string Label { get { return label; } set { if (label != value) …
Marcin Kaczmarek
  • 1,063
  • 2
  • 9
  • 20
0
votes
4 answers

How Use Item in Header Of Repeater in ASP.net with C#2008

I Use a CheckBox in Header of Column and that coulmn is Container Cehckboxes too . I want to Use a chechBox in header in Repeater , and when This Control is Checked ,checkboxes of rows is checked . How do I do This?
mohammad reza
  • 3,292
  • 6
  • 29
  • 39
0
votes
2 answers

Combining Formatting and Databinding from the database

I have a set of labels in a DataRepeater. The labels get their values from a table in a SQL database (Let say GetSQLResults gets the data from SQL database and returns a DataTable). Dim salesDataTable As DataTable = GetSQLResults() And for the…
Dogahe
  • 1,380
  • 2
  • 20
  • 50
0
votes
3 answers

delete row's in RepeaterControl in ASP.net

I write this code for delete from repeater,but I have a problem. when I run my page ad delete one of rows , this row is deleted and when I refresh that page , another one rows deleted that I don't want delete that.in fact I want to delete one row…
mohammad reza
  • 3,292
  • 6
  • 29
  • 39
0
votes
1 answer

Dynamically bind a DataRepeater (Microsoft.VisualBasic.PowerPacks)

I am using a DataRepeater to show data from a business objects on the screen. I am using windows forms in C# to accomplish this. The datasource is not available at compile time so I want to bind the datasource at runtime. Here is the simplified…
nicojs
  • 1,879
  • 2
  • 18
  • 34
1 2 3
8
9