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

Repeater and public array as NOT datasource.

I want to using two dataSources with repeater. One is binded to dataSource property so my question is is that possible to f.ex. to also repeat some array of string as public property?
kosnkov
  • 5,609
  • 13
  • 66
  • 107
0
votes
1 answer

how to use repeater inside repeater ASP.NET

I have two tables in the database (customer and orders), and each customer has a list of orders. I made the HTML JavaScript and CSS code in ASP.NET to display them like the figure appears here, I use repeater inside another repeater to display…
0
votes
1 answer

ASP.NET - how to write a repeater inside a repeater

I have two tables in the database (teachers and students), and each teacher has a group of students. I made the HTML JavaScript and CSS code in ASP.NET so that the figure appears here, but I don't know how to put a repeater to extract teachers'…
0
votes
1 answer

What are the pros and cons of having a repeater control in a 3-tier application?

In terms of data accessing, or any other opinions. If possible, state a better alternative if any.
Joyce
  • 437
  • 1
  • 8
  • 20
0
votes
1 answer

How to create an array of spark Checkboxes with dynamic IDs in Flex?

This is the code that does not work. The code required that I have the ID hard-coded in the checkbox tag.
Shailen
  • 7,909
  • 3
  • 29
  • 37
0
votes
1 answer

ListModel in repeater

When using a ListModel for a repeater, if a property is not set in the first element of the model, then it is not considered in the following elements. Why? import QtQuick 2.7 import QtQuick.Controls 2.3 Item{ id: root property var labels:…
developer
  • 9
  • 1
0
votes
2 answers

How to send an array of Flex checkboxes to a mysql server?

I am using FB for PHP 4.5, ZendAMF, and I read that I do not need to use HTTPService for what I want to do. Table structure: people: {pID, pName} departments: {deptID, deptName} people_departments: {pID, deptName} I have a slightly complex flex…
Shailen
  • 7,909
  • 3
  • 29
  • 37
0
votes
3 answers

I want to show a column once and then again if it changes, is it possible?

In a repeater is it possible to have a field only show once and then again if it changes? What I want it to look like Audio - Thing - Thing - Thing Video - thing - thing Picture - thing They are going to be ordered by Type either audio video…
pixeldev
  • 1,493
  • 5
  • 23
  • 31
0
votes
1 answer

RepeaterCommandEventArgs is incorrect after changing repeater items onpostback

I am struggling to word this correctly as I am not really sure what the issue is but I will give it a try. I have a list of events in a repeater. I have a checkbox above this list which does a postback and displays expired events. When it posts…
0
votes
2 answers

Retrieve the value of td in repeater

I have a Repeater that contains a Table. I want to hide the some tablecells of the table in repeater item template Here is the ASPX source code:
Hitendra
0
votes
1 answer

Button click inside repeater UpdatePanel problem

I have button inside of repeater in a contentpage. How can I use update panel with that? I want to make that, Button click inside a repeater triggers itemcommand function and after that not posstback refresh. Best regards
0
votes
3 answers

asp.net repeater control

what i am trying to do is display an image in a repeater. I am getting the image name from the database but i am trying to reference the image name from a image folder, at the moment this is what i have:
johnnie
  • 1,837
  • 5
  • 23
  • 36
0
votes
1 answer

Export Repeater to MS Word and SAVE the Word file on Server or Database C#, ASP.NET

I have a situation where I have to generate a MS Word report by exporting the Repeater to Word Document. I am doing it but my requirement is to Save the MS Word file either on Server / Database. How can I save that file on Server/Database after…
msbyuva
  • 3,467
  • 13
  • 63
  • 87
0
votes
1 answer

Get all nodes from an xml using xpath and a asp.net repeater

I have a repeater with an xmlDataSource. What I need is very simple, but i can't make it happen. Using this xml file I want to display all the nodes from the project "ProjectOne".
gpergo
  • 155
  • 1
  • 1
  • 5
0
votes
1 answer

Reference a repeater within a gridview on item databound

I've got an asp:DataGrid which has an asp:Gridview within it and this has many nested asp:Repeater's within that and i'm trying to reference the nested repeater from within my OnItemDataBound function My code is similar to this
Jamie Taylor
  • 3,500
  • 21
  • 65
  • 99