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.

2759 questions
0
votes
1 answer

How to get a list of data-attribute values from the first row of a repeater?

How can data attributes of a control be read in .NET? DESIRED RESULT 1 2 3 ASPX
DreamTeK
  • 26,372
  • 18
  • 94
  • 146
0
votes
2 answers

Reset values inside a repeater

I have a repeater which displays products. Users can select a Size - dropdownlist and an Amount - textbox. Then they press Order or Cancel. When they press Cancel I would like the values of Size and Amount to return to their default…
CustomX
  • 9,418
  • 29
  • 80
  • 110
0
votes
1 answer

Copy and leave out checkboxes on Repeater

I have a repeater which has some controls which are checkboxes. I would like to copy all items in the repeater except the checkboxes, where in their place i will copy the value of teh checkbox. THe purpose is that I would like to export all of the…
Lilz
  • 3,775
  • 12
  • 57
  • 93
0
votes
1 answer

ACF Repeater Fields in table - Within PHP Template

I am using ACF to display a repeater field within a table of my template file in Wordpress. The fields are displaying - however the table seems to create a new "table" for each row, rather than including both rows of sub field data within the same…
0
votes
2 answers

Saving dropdownlist value inside the repeater?

I already retrieved my database(DescriptionCode) on dropdownlist inside on a repeater. Now, I'm trying to save/add/insert on my database the selected value of dropdownlist but i failed. Any assistance gratefully received. Thanks! protected void…
im useless
  • 6,311
  • 5
  • 32
  • 48
0
votes
1 answer

Flex 3: refreshing repeater after adding a child

Within a child, I have an XML element with the following structure: *NUMBER* *NUMBER* *String* *String*
Brds
  • 967
  • 3
  • 15
  • 34
0
votes
2 answers

Display category once in repeater

I have a repeater wanting to display Categories and products. Category should appear once and products would appear the number of products i have. Below is my markup
Computer
  • 1,786
  • 6
  • 28
  • 57
0
votes
3 answers

How to manage Repeater at client end?

I have repeater control in which i have implemented Paging. Now its showing 10 data once. Now i want to manage sorting as well, using jaquery at client end means it will not hit database again for sorting. Example : Suppose repeater showing 10 items…
Pankaj Mishra
  • 19,129
  • 14
  • 63
  • 102
0
votes
1 answer

Getting DropDownList values in a repeater

ASPX PAGE: DxPoc:
Ian Ace
  • 19
  • 1
  • 4
0
votes
1 answer

QML repeater item highlight handling

I have implemented the following section { id: idLeftArrow . . . . } Row { id: idIpEditModeItem anchors.left: idLeftArrow.right visible: true Repeater { id: idIpHighlightRepeater model: 12 …
Vipin
  • 3
  • 1
0
votes
1 answer

get meta_key out from ACF repeater field

Is it possible to loop through wordpress posts by a repeater fields content? I have a event where you can add events through a repeater field (ACF) and I would like to show all dates for each event. How do I do that?
0
votes
1 answer

Repeator in VisualStudio ASP.Net

I am using Repeater Control in ASP.Net. But i get a lot of errors if i try to bind any thing to text field or like that because of double quote ("). its like <%# DataBinder.Eval(Container.DataItem,…
Muhammad Atif Agha
  • 1,509
  • 2
  • 32
  • 68
0
votes
1 answer

Oxygen - Advanced Custom Fields Repeater sub-fields - link fields

WordPress Repeater link fields: For testing purposes I have defined one link as an Array and the second link as URL. When adding the repeater to a template the output of one link is an Array and the other link is displayed as URL instead of the…
Alex
  • 115
  • 1
  • 2
  • 12
0
votes
1 answer

Wordpress ACF Repeater Field on Search Page

I use Advanced Custom Fields for some Posts. On the Category Page all Repeater Fields and Field Group Fields are displayed correct. But on the Search Results Page these type of fields are empty. For Example my Code for Movie Actors //Actors $act1 =…
0
votes
1 answer

Blink a label inside a repeater control

I have a label in a ItemTemplate in a Repeater control. I want the text of the label to blink on certain conditions. How do I do that? I am using ASP.Net 3.5.
subs
  • 2,059
  • 11
  • 31
  • 57
1 2 3
99
100