Questions tagged [repeater]

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

The ASP.NET Repeater is a basic container control that allows you to create custom lists from any data available to the page. It's a handy control, especially since most ASP.NET pages that display data need to repeat the same kinds of data over and over.

2797 questions
0
votes
2 answers

Binding query results to repeater

I am new to the Entity Data framework and lambda query. What I am trying to do is select a list of "contacts" and bind it to a grid or repeater. However, although my query works in that it is able to retrieve contact records, I am unable to bind it…
PKCS12
  • 407
  • 15
  • 41
0
votes
1 answer

How to manage nested repeater with where condition?

I have nested repeater. First Repeater is showing CityName coming from CityTable. And Second repeater will display CityDetails that will come from another table on the basis of cityName. Output Will Look like…
Pankaj Mishra
  • 20,197
  • 16
  • 66
  • 103
0
votes
2 answers

User controls inside repeater - no changes after postback

I've got my own user control inside repeater. It displays stars according to list element rating. On the first bind everything is ok, number of stars is ok for each item. Then I make a postback in which I filter this list. Then result data bind to…
gruber
  • 28,739
  • 35
  • 124
  • 216
0
votes
1 answer

Show hide repeater item template field when used with user control in item template

Hi I have a user control inside repater item template .I want to hide the user controls column based on certain values coming in the string.Below are my code
sandeep.mishra
  • 825
  • 4
  • 19
  • 40
0
votes
4 answers

How can I access the objects I've assigned to Repeater.DataSource?

I have a Repeater Control which I bind to a list of Products Repeater.DataSource = ProductRepository.GetProducts(); Later (in another module), I need to retrieve the products from the Repeater, but it seems not to work with Repeater.Item.DataItem…
AGuyCalledGerald
  • 7,882
  • 17
  • 73
  • 120
0
votes
1 answer

Missing something nested in FindControl but always get Null

Literally have read and tried all solutions in Stackoverflow to no avail. I am trying to get the value of different Dropdownlists genereated from a Repeater and another one just generated on the go, plain and simple.
Henry B
  • 29
  • 8
0
votes
1 answer

Creating dynamic id for textbox in repeater

So I am getting information from DB and using it in an ASP repeater to get a table.
Henry B
  • 29
  • 8
0
votes
2 answers

Can't get to rebind a Repeater after firing ItemCommand (using asyncpostback via updatepanel)

Here's the scenario: I have a repeater inside an UpdatePanel called updPanel. Inside this repeater I have two Buttons, which fire an ItemCommand. In the page load I have this method: if (!IsPostBack) { Bind(); } Then, on…
Conrad Clark
  • 4,533
  • 5
  • 45
  • 70
0
votes
1 answer

Repeater linked to Dynamic Page in Wix

I am currently working on coding a search results page which is set up using a repeater so that the repeater container is able to redirect users to a Dynamic Page. The datasets used on both the repeater and the dynamic pages are linked by the…
The_Train
  • 319
  • 3
  • 11
0
votes
1 answer

Flex 3: Question about conditional statements for a repeater

I have an xml file that has a start date and length of a project... I use a repeater to load each project. The users' screen only shows 2 weeks at a time. I would like to make it so that if a project doesn't fall within the two weeks on screen,…
Brds
  • 1,035
  • 3
  • 17
  • 37
0
votes
1 answer

COGNOS report poor performance when using repeater

I have a table with 3 columns: CLIENT_ID, STORE_ID and MADE_PURCHASE. Basically I'm trying to get a list of CLIENT_ID and an array of STORE_ID where a customer made a purchase. For the following data, here is the expected…
0
votes
1 answer

Repeater inside Data Pager

I have a Repeater inside a datapager to display some of the page numbers, I'm using a templated pager field because there is other data inside there as well, and since I want to be able to re-use this, I have abstracted it out to a user control…
dsteuernol
  • 141
  • 2
  • 5
0
votes
0 answers

How to repeater field data save as pivot table instead of the JSON format?

Could you please help me with the below requirement? What I have done? I have created the repeater field for adding the dynamic data and save it in the database as the same column with JSON format. But now I want to move these data to the pivot…
AKM
  • 25
  • 5
0
votes
1 answer

ASP.Net DropDownList Sharing a DataSource in a Repeater

I have an ASP.net repeater that contains a DropDownList inside the . I would like to bind all of the DropDownLists to a single data source: List statusList = QuoteRequestLogic.Instance.GetQuoteRequestStatusList(); I know that…
James Hill
  • 60,353
  • 20
  • 145
  • 161
0
votes
2 answers

How to access the function of a Repeater's children in QML?

I am looking to access a function inside a repeater element in qml. Wether i try calling the function directly or connecting signals between rect1 and rect2, it cannot seem to work. What am i missing or is there any other way to do this ? The code…
1 2 3
99
100