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

Required field validator not working for dropdownlist in repeater control

I have a drop down list in a repeater. I am trying to add a required field validator to it. The aspx code is:
0
votes
1 answer

Changing the model does not redraw objects in QML sometimes

Repeater { model: myModel.buttonParameters delegate: Button { width: 47 height: 47 contentItem: Text { …
Narina
  • 23
  • 3
0
votes
0 answers
0
votes
1 answer

Nested asp repeaters using complex object

I have a complex object with nested collection of objects that need to be binded to a repeater/shown in a table. Object shows 14 items: I would like to display data as such: Objects looks like: I need to show "FieldName" in table/column header…
obautista
  • 3,517
  • 13
  • 48
  • 83
0
votes
2 answers

I am trying to find the index value with item- attached with it `item-0, item-1, item-2, item-3`

I am trying to find the index value with item- attached within item-0, item-1, item-2, item-3, if anyone can help with a solution for this. json: "ingredients": { "item-0": { "amount": "30", "measurement": "g", "item":…
0
votes
1 answer

How to disable the clicked button on a repeat list using React

I have a code that disables a button when clicking on it, this works, but it's disabling all the buttons I have on the screen. This is the part of code, I'm using class components: constructor(props) { super(props); this.state = {…
CodeG
  • 417
  • 2
  • 6
  • 15
0
votes
1 answer

problem getting the immediate few rows of a particular row in a HTML table using jquery

I am using nested repeaters in my asp.net website.Using these repeaters I am displaying a list of products in tablular form(table is placed in the outer repeater). In the outer(top level) repeater I have the main products and in the inner repeater I…
kranthi
  • 1,519
  • 6
  • 29
  • 52
0
votes
2 answers

Getting value of anchor tag from repeater?

I have a regular html anchor link that is bound to an Id column. I want to loop through the repeater and get the value of the Id column, but can't figure out how. I have some code below my repeater markup. I can't figure out how to do it with…
Xaisoft
  • 45,655
  • 87
  • 279
  • 432
0
votes
1 answer

How to fetch column from table and make it a link in repeater?

I develop a table in sql server 2008 Table is as follow Table name: tbqst(tablequestion) Columns: qstcod(question code) qstdsp(question description) qstsubby(question submitted by) qstdat(question date) qstans(question…
VISHAL
  • 1
0
votes
1 answer

Asp.net data listing

I want to list data with repeater from database on a server. There are nearly 5000 data in the database. When listing this data with repeater, the page loads a bit late. How can I quickly list data? Thanks..
0
votes
1 answer

QML Repeater with 'populate' transition

I am trying to replicate the ListView.populate: Transition {..} with a repeater. Unfortunately due to hideous performance issues I cannot simply use a ListView, so am restrained to the Repeater. The transition I am looking for is simple, in fact…
Ldweller
  • 327
  • 2
  • 16
0
votes
1 answer

Pulling data from repeater without page postback

When I click the button in the repeater, I want to get the data about the relevant row. But without the page postback. I want to use UpdatePanel but I couldn't figure out how to do it. Can you help me? Here are sample codes:
0
votes
0 answers

QML Transition not working inside Repeater

I am trying to move an item in my QML off-screen using a transition with AnchorChanges, like so: Item { id: view Repeater { id: repeater model: 1 Rectangle { id: card property int index color:…
user826955
  • 3,137
  • 2
  • 30
  • 71
0
votes
2 answers

How do I make a repeater with no datasource function until it gets one from a postback?

I have a repeater on my page which I use to display a list of search results. My issue is that the page keeps throwing me a Parser Error Message: The server tag is not well formed. error because the repeater has no…
user557419
0
votes
1 answer

How to mark the checkbox in repeater in Xamarin.Forms?

I am using checkbox control under repeater to do a radio button functionality, everything seems to be fine but now stuck on how to bind the checkbox when the page loads. I have saved the radio button text whichever was selected and once user come…
Zeeshan shaikh
  • 341
  • 1
  • 5
  • 24