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

learn more… | top users | synonyms

0
votes
0answers
11 views

Repeater.Items only populates in Button click event when I DataBind in that event, but all textbox inputs are empty

I have a repeater that is databound to a SqlDataSource <asp:Repeater runat="server" ID="Repeater" DataSourceID="SqlDataSource"> <ItemTemplate> <asp:HiddenField ...
1
vote
1answer
32 views

ASP.NET: Using Eval in an if statement

I have a repeater. In the past, each item in the repeater had an associated text box. But, now I added an attribute to the repeated item that needs to specify if a text box, larger text box, or check ...
1
vote
3answers
21 views

ASP.net repeater to display properly formatted images and text

This is sort of a general web development question that I need some experts' advice on. This is probably quite a no brainer for some of you, but I am having trouble getting this to display properly. ...
2
votes
1answer
17 views

imagebutton image url not changed dynamic on repeater

I am using repeater to bind data & on header template i am using imagebutton for sorting column. My Client Side Code: <asp:Repeater runat="server" ID="RptClientDetails" ...
0
votes
2answers
17 views

Looping through repeater items

I have a repeater which is built like the following: <asp:Repeater runat="server" ID="rptItems" OnItemDataBound="rptItems_ItemDataBound"> <ItemTemplate> <div ...
1
vote
2answers
32 views

Calling server side method with parameter on click on a div inside a repeater

I have a page where I show the characters of a user. Using a repeater, I create a div for each character with different informations on the characters taken from my DB. I want to be able to call a ...
0
votes
1answer
17 views

How to get or parse parameter from onitemdatabound method

I have method: protected void DormatItemDataBound(object sender, RepeaterItemEventArgs e) sender object have DataSource which is type of - object {Sitecore.Collections.ChildList} Now I want get ...
-1
votes
3answers
31 views

Adding paging to asp repeater function ASP.Net

I'm new to this site and asp.net (I'm coming from a classic asp background). I'm hoping someone could help me add a paging function to a repeater? I've tried following some other tutorials I've found ...
0
votes
0answers
14 views

wordpress Trigger Lightbox with button outside if statement advanced custom fields

Hi I am trying to have a button that triggers a lightbox with a repeater field. It is currently working but the images are starting from the last image instead of the first. any ideas? <?php ...
1
vote
1answer
39 views

Calling a javascript function with parameter bound to repeater

I'm trying to call a javascript function. function callSubClass(SubClassName) { ... } But I am trying to call it inside a repeater where the parameter "SubClassName" is a string bound to my ...
0
votes
1answer
57 views

Using a repeater in C# from VB.net example

I use repeaters in vb.net all the time and have no problems with them, however i'm working on some c# and can't work out the conversion (and an online conversion jobby didn't seem to work) I have my ...
0
votes
2answers
32 views

Javascript auto-calculate inside an ASP.NET repeater

I have two textboxes inside a repeater (in the same item). When I enter a value into one, then leave, I want to do some processing on that value, then fill the other with the result of the processing. ...
0
votes
1answer
72 views

XPages enable button if all checkbox in repeat control is checked?

I'm not using checkboxgroup because in my real application there are still other controls inside the repeat control. Below is my sample source: <?xml version="1.0" encoding="UTF-8"?> ...
0
votes
1answer
38 views

Correct way to use Mustache.js?

I am using Mustache.js templating engine. On page load, I create a list of items which I send back to the Ajax request: private static List<Items> items; protected void Page_Load(object ...
0
votes
2answers
35 views

run a method on a Databinder.Eval object and convert to a string

I have a repeater that outputs an image path. I am trying to check if the file exists. I am having issues with the method in the cs public string doesImageExist(object sysid) { string mySysid = ...
1
vote
4answers
45 views

javascript function in ASP.NET Repeater

I have a repeater in an ASP.NET UpdatePanel as follows; <asp:UpdatePanel ID="rptGalleries" runat="server"> <ContentTemplate> <asp:Repeater ID="rptAddPhotoGalleries" ...
0
votes
1answer
16 views

datarow item in repeater does't exist

I'm going through a repeater databound sub. The data in the repeater can depend on what is selected in a dropdown, but some of my sql that is being used to display the data doesn't have a column ...
2
votes
3answers
49 views

ASP.NET Repeater - HiddenField working without being declared

Using ASP.NET 4.0 Bit of a strange one here, my code works but I don't know why! So I have some HTML like so: <asp:Repeater runat="server" ID="uxMyRepeater" ClientIDMode="Predictable"> ...
1
vote
2answers
37 views

How to arrange a special table format of List of DateTime

For example, I have list of DateTime like this; List<DateTime> timeList; I use repeater to creat a table like below; YEAR MONTH DATES 2012 SEPTEMBER 08 15 22 29 2012 ...
0
votes
0answers
20 views

updating a panel by ImageButton in a repater via update panel

i want to update my popup panel by a imageButton whick is placed in a repater. without post back whole page, i just want to change the information displayed in modal popupextender. code is as ...
0
votes
1answer
55 views

Updating subtotal of items in repeater

I have repeater that used to display item name, price, input textbox used to enter amount and label used to show the price * amount for each item. I can calculate the price * amount with JavaScript. ...
0
votes
0answers
45 views

updatepanel does not trigger repeater itemcommand

I just want to trigger the LinkButton in a repeater which has a OnItemCommand. But the page do post back. Here is my code: <asp:UpdatePanel ID="recommendedAdvertsUpPnl" runat="server"> ...
-1
votes
0answers
35 views

Fancybox issues when trying to use with asp.net Repeater control

I'm trying to implement a photo gallery in the web page for which i'm using Fancybox V2.1.4. My issue is that if i have images explicitly specified in my html, fancybox works fine. However when used ...
1
vote
0answers
41 views

How to call slider control inside repeater control?

I have a Slider class, which will create a slider with default values, and I want to call it inside a repeater, I was trying with following code. <asp:Repeater ID="Repeater2" runat="server"> ...
0
votes
1answer
54 views

Trying to run a Jquery function from UpdatePanel inside a Repeater (on ItemCommand)

I have a repeater, and inside this repeater i have an UpdatePanel. In this UpdatePanel i have a that is hidden, and i want to display it in the Repeater_ItemCommand event. I'm struggeling figuring ...
0
votes
0answers
169 views

How to bind repeater ItemDataBound, to update on dropdownlist SelectedIndexChanged

Im a rookie on ASP.Net and been stuck for this for a while. Everytime the index of my dropdown changes i want to fill my repeater with objects. This works fine, but when im selecting a value in my ...
0
votes
2answers
27 views

Hyperlink not displayed properly

I want to display data on a page dynamically from database. I have added a news box and I am displaying events list in repeater from a database. Hyperlink and Marquee is also used. But hyperlink is ...
0
votes
0answers
15 views

sql string function not working in asp.net data controll

I am using sql string function in simple query analyzer select right(book_name,4) from books it is working on sql database but when I bound it to a repeater or datalist control in asp.net using ...
1
vote
1answer
83 views

asp:repeater w/ asp:image and generic-handler - SQLConnection crash

I have an asp repeater which sets a generichandler (.ashx) parameter differently for each entry. This is used to create comments that are posted by users and display the avatar of the user posting by ...
1
vote
1answer
67 views

Cant find control inside repeater item

I am using repeater: <asp:Repeater ID="rptCategories" runat="server" OnItemDataBound="RptCategories_ItemDataBound"> <ItemTemplate> <asp:Panel ...
0
votes
1answer
31 views

I have a repeater and a dropdownlist inside this repeater

I am populating dropdownlist inside a repeater (DropDownList is filled with values from database) protected void Repeater1_ItemDataBound(object sender, RepeaterItemEventArgs e) { try ...
0
votes
2answers
98 views

How can I INSERT or UPDATE values into a DB through code behind

I am currently in development of the Administration page for my site. Currently, I am trying to develop User Rolls and Rules. My DB is structured like this: tblSiteUserRolls id rollName ...
0
votes
0answers
67 views

ASP.NET Repeater doesn't always show all results

I've got an Application(ASP.NET with C#) in which I get results from an database (the index from Microsoft Indexing Service) which I afterwards show in an asp:Repeater. Often I get the desired results ...
0
votes
1answer
25 views

Formatted message on a DB can be retrieved locally but not on the live site

I'm sorry if the title may seem vague, but I dont /actually/ know how to put it. Anyone who can change it for the better is welcome. I am using a Repeater control to read messages from a Database, ...
0
votes
2answers
49 views

How can I assign an ID to a checkbox in a Repeater?

I have these checkbox on a Repeater: <asp:Repeater id="repeaterCategories" runat="server"> <ItemTemplate> ... <asp:CheckBox ID="chbCategoria" Text="My Label" ...
0
votes
1answer
32 views

Bind a repeater dynamically inside another repeater?

I have this code: <asp:Repeater id="repeaterCategories" runat="server"> <ItemTemplate> <div class="categorie-item"> ... <asp:Repeater ...
0
votes
0answers
87 views

RadioButtonList within Repeater within UpdatePanel causing Full Postback

I have a RadioButtonList with AutoPostBack=true that is within a Repeater. The entire Repeater is surrounded by an Update Panel. However, the RadioButtonList is causing a full postback to occur. I ...
1
vote
1answer
96 views

ASP.NET Strongly-typed DataControl (Repeater) with complex ItemType failing

I've got a structure of three nested repeaters to render out a tabs and then under those tabs a number of items grouped by headings. I've been using the strongly-typed data controls in .NET 4.5 ...
0
votes
1answer
65 views

Which ASP.NET Control should I use?

I am unsure which asp.net control to use. I've tried / thought about with no avail. Repeater / ListBox (doesn't allow for multiple lines) Repeater / Div (No click unless I use JavaScript postback) ...
1
vote
1answer
60 views

SPARQL BIND clause causes exception on repeater datasource

Hi again :( (hopefully Rob ? ;)) ) I try to fill a repeater control's datasource through the following VB code : Dim queryString As SparqlParameterizedString = New SparqlParameterizedString() ...
0
votes
0answers
69 views

asp.net event bubbling in repeater does not work

I have a repeater containing a WebUserControl with some simple buttons and a DropDownList with a event on SelectedIndexChanged. I want to bubble out the event and it works if the WebUserControl is not ...
0
votes
1answer
31 views

Repeater markup not databinding in my link

I've tried to find a solution online, but I couldn't find any. However, it's probably easy to find if you know what to search for. Anyway, I have a ASP.NET repeater like this: <asp:Repeater ...
0
votes
0answers
76 views

Using Repeater and jQuery together

I examine lots of blogs answers about my question also I found some solution from this site and I tried all of them. But I don't know why is it? These solutions are not fix my problem I get errors ...
0
votes
1answer
47 views

Saving a comment from inside an updatepanel in a repeater

(Asp.net 4) I have a blog where i use a repeater to show all the blog-articles and the comments to each blog. I'm trying to change how the users can post comments to the blog. I want to put the ...
1
vote
2answers
88 views

How can I access the attributes of a <span> element inside of an asp.net RepeaterItem?

I'm trying to alter the CSS class of a span that is positioned within an Asp.net RepeaterItem. The span element also has other tags inside of it (radio button). The markup is similar to this: ...
0
votes
1answer
61 views

Make Hidden Repeater Columns Visible Weirdness in C#

I have a repeater with a group of columns hidden until a button is clicked to reveal them. This works fine until you click the button again which results in hiding the columns again. I basically want ...
1
vote
2answers
75 views

Assign separate link to each repeater item in ASP .net

I was trying to develop a forum website (trying to mimic some of its features) and I am using Entity framework to get my data. I have to use repeater as my instructor asked me to do so. I would be ...
0
votes
1answer
78 views

How to show x-items in Repeater and scroll or fadein-fadeout next items using asp.net?

I have a repeater which displays 'News' on home page which is diplayed from database. I want to display just 2records at a time and automatically scrolling next two items after certain milliseconds ...
0
votes
0answers
24 views

Pass a Lookup<TKey, TElement> to a repeater and then access the dataItem

I have a List of Blogs and I wanted to group them by Year var data = Controller.Blog.GetBlogs().GroupBy(x => x.Year); After I group I need to bind the data to a repeater to read the year and ...
0
votes
2answers
49 views

How to find specific repeater item

I have a repeater and it has an Asp button. I want to get repeater item which contains clicked button. Here is a part of my repeater: ... <td> <asp:Button ...

1 2 3 4 5 29