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

set tooltip for a control inside dataRepeater

I have a pictureBox inside a Winforms DataRepeater for which I want to set the tooltip, I tried ToolTip tt = new ToolTip(); tt.SetToolTip(dataRepeater1.ItemTemplate.Controls["picDeleteEntry"] …
techBeginner
  • 3,792
  • 11
  • 43
  • 59
0
votes
2 answers

Customizing output of datasource in repeater?

I have a Data Repeater hooked up to a datasource (datatable object). I need to change the output on the frontend for certain columns under certain conditions. What would be the most efficient way to do this? I am currently trying to create the…
chobo
  • 31,561
  • 38
  • 123
  • 191
0
votes
1 answer

How to compare 2 datasets and assign that value to repeater

I have 2 datasets. 1 is assigned to dropdown and the other is assigned to repeater. If we select value from drop down, then values in repeater should be populated according to that value. Initially I have assigned dataview to dropdown: DataView dw…
venkat
  • 13
  • 2
0
votes
1 answer

binding xml to data repeater control

i am having a xml file like this Pod A North a1 a2 a3 a4 a5 Pod…
sansknwoledge
  • 4,209
  • 9
  • 38
  • 61
0
votes
1 answer

ASP.NET repeater how to get two columns (header and items) to vertical

Can you help me? I have a table in my database like this: January February 100.000 200.000 and I want to show that data like this using a repeater: January 100.000 February 200.000 Please help me, so that the display in my…
0
votes
1 answer

How to display data repeater control in win-form?

i am using windows applications. in that form i am using DataRepeater control. i display numbers in that control. (vs 2010) My code DataTable dt = new DataTable(); dt.Columns.Add("c1"); dt.Rows.Add("1"); …
Sagotharan
  • 2,586
  • 16
  • 73
  • 117
0
votes
0 answers

Visual Basic DataRepeater Controls Disappear

When I make any attribute changes to any control on my form, all of the controls within all DataRepeaters disappear within Visual Studio and when running the app. The DataRepeaters are the blocks with the header "Region A B W" and the area starting…
Tracy Z.
  • 31
  • 2
0
votes
3 answers

Iterate thru DataRepeater (VB.Net PowerPack)

I am using the winform datarepeater control from vb.net power pack. All of the items on the repeater are readonly except for a checkbox column. I want to iterate over the items and find out which checkboxes are checked. I can't find a collection…
B Z
  • 9,363
  • 16
  • 67
  • 91
0
votes
1 answer

Datarepeater delete only deleting top record

I have a datarepeater and the following code ONLY deletes the FIRST record regardless of which one is selected. I am not entirely convinced this is the correct way to do it with a datarepeater but I could not find a better solution. I need to be…
korrowan
  • 563
  • 2
  • 15
  • 37
0
votes
1 answer

Retrieving .Text of Textbox located on Panel during DataRepeater_DrawItem event

I'm using the DrawItem event of a DataRepeater to change the .BackColor and .ForeColor of a textbox based on the .Text contents. This works just fine UNLESS the textbox is located on a panel. If the textbox is on a panel, then I am returning this…
GeekInOhio
  • 202
  • 1
  • 6
0
votes
1 answer

Change behavior of buttons in datarepeater

So I have this application where I'm trying to create a notification panel which will display some data (which will be handled by a datasource based on an object) in a datarepeater. However some of these notifications need to behave different than…
0
votes
4 answers

ASP.NET Repeater control: How not to show the header template if the datasoure has zero elements?

I want my header and footer HTML not to bem written in the case that the datasource has no items. How do I do that?
Fabio Milheiro
  • 8,100
  • 17
  • 57
  • 96
0
votes
0 answers

Backgroundworker with datarepeater

I have a code which populates data in a datarepeater control, but that takes about 10 secs to load and freezes the UI so i though of using a backgroundworker. But when I use the code in the backgroundworker it gives me saying 'Additional…
0
votes
1 answer

Data Repeater, make linklabel open link in browser?

I have a datarepeater set up, i have a linklabel showing a link to a webpage. How do i go about making this open in a browser? I know i should be using Shell("c:/program files/internet explorer/iexplore.exe URLHERE") Or similar. But i dont see how…
0
votes
0 answers

How to associate mysql data to DataRepeater controls

I have a DataRepeater template control with 2 textboxes which I want to associate data from a mysql table When I run this program I get the representation on my DataRepeater the number of rows existing in my mysql table RESULT my question is how to…
meddy03
  • 1
  • 3
1 2 3
8 9