Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
11k views

ASP.NET: How to access repeater generated form input elements?

i'm want to have a repeater generate a bunch of checkboxes, e.g.: <tr><td><input type="checkbox" name="t" value="11cbf4deb87" /> <input type="checkbox" name="a" ...
4
votes
1answer
100 views

How can I format numbers or strings in a DataRepeater?

Tech: .NET, SQL Server 2008 R2, Winforms Ok, for the life of me, I cannot figure this out. First and foremost, I'm using a DataTable to store the data, which is coming from an SQL server 2008 ...
2
votes
2answers
4k views

vb.net. How do I bind dataset to DataRepeater?

I am looking for a vb.net example of how to bind a dataset/datatable to data repeater and have the data elements bound to the columns of the dataset/datatable? Thanks
2
votes
4answers
7k views

ASP.NET Change Dropdown Control ID Inside Repeater Item Dynamically

Can someone tell me how I can get this to work. I want to distinguish dropdown controls inside a repeater control. I understand now about the lifecyle and how the buffer is already writen, but what ...
2
votes
1answer
3k views

VB.NET Repeater Simple Data Binding Without Datasource

I've got a form that has to be a repeater on a webpage. I have a number parameter that tells me how many additional customer details are to be added. In this page I have a repeater control that needs ...
1
vote
3answers
342 views

ASP.NET Repeater and Outputting Hierarchical Data

I am currently using this http://blogs.sitepoint.com/hierarchical-data-database-2/ method of storing my data. My current database rows look like this: Name | nodeLeft | nodeRight | nodeLevel ...
1
vote
3answers
197 views

ASP.net putting a dataitem in a repeater

I've got a: Data repeater Control in the repeater And I'd like to put some values into the controls. At the moment I have a control in it as: <asp:Repeater runat="server" ...
1
vote
1answer
901 views

asp.net repeater control for displaying images and associated names

I want to implement an image gallery in asp.net/C#. I am using sql server 2008, visual studio 2010 and .NET 4.0. I have made a webpage and now want to display 6 images as thumbnails (and their names ...
1
vote
3answers
1k views

Use data in repeater when Checkbox is check in ASP.net

I have a repeater for showing my data . this repeater showing 2 field that one of feild is checkBox Control and other is a lable. NOW , how can I understand text of lable when the checkBox is ...
1
vote
1answer
1k views

Handle Button Click in WinForm DataRepeater C# Power Pack

i want to handle winform button click in the DataRepeater, how can i do it? all button are placed in a DataRepeater Thank you very much
0
votes
0answers
15 views

Use of DataRepeators

I am working on windows forms and use a feature data repeators for showing data from the database and its working good but i am confused in selecting item from data repeators like i show my name in ...
0
votes
1answer
23 views

Finding a dynamically added control in a third nested repeater

I have three repeaters. Lets call them R1, R2 and R3. In R3, I create a bunch of controls in Page_Init. For example, one of those controls has the name WMC_image. Im using this code to get R2: ...
0
votes
1answer
72 views

Get checked status of radio buttons in a Data Repeater VB.NET

I have a Data Repeater in a Windows Form, within the data repeater I have a label and either a radio button or combo box, the amount of radio buttons and the text for them is brought in from my ...
0
votes
0answers
92 views

DataRepeater adding Items with DataGridView event CellMouseDoubleClick

In the video player I'm building, I read a database table consisting of Artist, SongTitle, Path (path of .mp4 file on hdd) columns and display those values in a DataGridView. With DataGridView ...
0
votes
1answer
95 views

set tooltip for a control inside dataRepeater

I have a pictureBox inside a Winforms DataRepeater for which I want to set the tooltip, I tried ToolTip tt = new ToolTip(); tt.SetToolTip(dataRepeater1.ItemTemplate.Controls["picDeleteEntry"] ...
0
votes
0answers
39 views

Populate a DataSet and get specific rows back with SELECT .. WHERE?

I have three tables. Users, Images and ImageComments. First I was thinking of creating a Repeater and loop every User in Users and in DataBound in each row fill another Repeater and in that Repeater ...
0
votes
0answers
63 views

Why does this DataRepeater only show added row sometimes?

The code below is to add a record to a dataset that a datarepeater displays. It only refreshes and shows the added row sometimes and I am not sure why. It always adds it to the table but when it ...
0
votes
2answers
61 views

Customizing output of datasource in repeater?

I have a Data Repeater hooked up to a datasource (datatable object). I need to change the output on the frontend for certain columns under certain conditions. What would be the most efficient way to ...
0
votes
0answers
42 views

How can I modify shapes on each item in a DataRepeater?

I have a DataRepeater with some shapes on the ItemTemplate that I want to toggle on and off based on data in each Item. With every other control, I have done similar things using ...
0
votes
0answers
209 views

How to bind data of inner/nested DataRepeater control in Win Forms from nested object data source?

I have nested datarepeater controls in one of my forms. The data source is class that has structure like below: class data { property1 property2 List } I want to bind property 1 and 2 to outer ...
0
votes
1answer
51 views

How to compare 2 datasets and assign that value to repeater

I have 2 datasets. 1 is assigned to dropdown and the other is assigned to repeater. If we select value from drop down, then values in repeater should be populated according to that value. Initially ...
0
votes
1answer
57 views

binding xml to data repeater control

i am having a xml file like this <ward> <pods> <name>Pod A</name> <direction>North</direction> <beds> <id>a1</id> <id>a2</id> ...
0
votes
2answers
65 views

Binding List<MyObject> to a repeater

I have a complicated class which is something like: public class Person { public int Pid; IList<Address> Addressess; public Name Name; public Name ...
0
votes
1answer
359 views

How to display data repeater control in win-form?

i am using windows applications. in that form i am using DataRepeater control. i display numbers in that control. (vs 2010) My code DataTable dt = new DataTable(); ...
0
votes
1answer
349 views

How can I bind a DataTable to a DataRepeater(Windows Powerpack) at Runtime?

I'm currently attempting to use the Windows Powerpack DataRepeater control to display data from a DataTable. So far, the DataRepeater recognizes that the resulting DataTable called from the Database ...
0
votes
1answer
157 views

Datarepeater delete only deleting top record

I have a datarepeater and the following code ONLY deletes the FIRST record regardless of which one is selected. I am not entirely convinced this is the correct way to do it with a datarepeater but I ...
0
votes
2answers
335 views

ASP.NET Repeater control: How not to show the header template if the datasoure has zero elements?

I want my header and footer HTML not to bem written in the case that the datasource has no items. How do I do that?
0
votes
0answers
196 views

datagridview with embedded Panel control that host multiple sub-controls?

Developping a Winforms application, rather than using the Windows PowerTools Data Repeater, I'd prefer to embed a panel within each datagridview row as needed. That Panel hosting several controls ...
0
votes
1answer
507 views

Moving through datarepeater's items

Is there any way to move through datarepeater's items through code, as we run loop and move through the items in a list / combo box? Thanks Furqan
0
votes
1answer
157 views

Data Repeater, make linklabel open link in browser?

I have a datarepeater set up, i have a linklabel showing a link to a webpage. How do i go about making this open in a browser? I know i should be using Shell("c:/program files/internet ...
0
votes
2answers
1k views

ASP.NET Repeater - how to refresh data on button submit

I saw similar posts but some weren't clear. Here is the repeater head: <asp:Repeater ID="rptGetAll" OnItemCommand="Buttons_OnItemCommand" runat="server" OnLoad="rptGetAll_Load"> I have a ...
0
votes
2answers
306 views

Winforms .NET DataRepeater - Unbound checkboxes won't maintain checked / unchecked state on scroll

I have a WinForms application that retrieves items from a database and displays them in a list: The Checkbox is unbound and enables users to select as many of the parts listed and then edit ...
0
votes
1answer
318 views

Unbound Data Repeater Scroll Issue

I Dragged a DataRepeater into my form. Added a TextBox to the DataRepeaterItem. Added A button to the form. Wrote these 2 Lines of Code : Private Sub Button1_Click(..) Handles Button1.Click ...
0
votes
1answer
1k views

How do I do conditional logic within an ASP.NET DataRepeater control?

I'm binding my DataRepeater control to a table that has many columns. I'd like to only display a subset of those, depending on what is populated. How/where should I do my contitional tests within a ...
0
votes
2answers
252 views

insert dynamic text “google ads” on a asp.net repeter

I want to insert Google ads on a asp.net repeater on the 3rd iteration. I'm trying to figure out how to do this, here is what I have. Thanks for your help <asp:Repeater ID="Repeater1" ...
0
votes
1answer
181 views

How to Conditionally determine Number of Data Items of a Nested Repeater Control!

I can use nested repeater to show my grouped data on a page (according to this: http://goo.gl/sH6g). In my case I have Category-Products structure and want to show each category and its products ...
0
votes
2answers
118 views

What is the best way to display comments in ASP.NET?

I'm developing a social network using Microsoft Technologies. I want to make a Wall similar to the one in Facebbok. What is the best way to do it and display comments ? Repeaters ? I'm using classic ...
0
votes
1answer
695 views

Add Data to DataRepeater Control in winform

Visual Studio 2008 service pack 1 comes with Visual Basic Powerpack and has DataRepeatr control. i want to know that how I can add data in this control. i have in memory data. the examples i found ...
0
votes
2answers
120 views

Using Repeater for an updateable form

I have a list of parameter names for which I want a user to type in some values, so I do this: <div> <asp:Repeater runat="server" ID="rptTemplateParams" EnableViewState="true"> ...
0
votes
1answer
929 views

Disable controls on certain items in DataRepeater control

I'm using the DataRepeater control from the Visual Basic Power Pack in my C# Winforms application. The control is unbound, operating in VirtualMode. I'm displaying multiple items in this control. ...
0
votes
4answers
1k views

How can i find a control in the footer template of a data repeater

ASPX : Code <asp:repeater id="repeater" runat="server"> <headerTemplate></headerTemplate> <itemtemplate></itemtemplate> <footerTemplate> ...
0
votes
3answers
2k views

Binding data to a Data Repeater - VB.NET?

I'm looking for a line or two of code that will bind a DataSet.Datatable column to a textbox on a Datarepeater?
0
votes
4answers
374 views

How Use Item in Header Of Repeater in ASP.net with C#2008

hi I Use a CheckBox in Header of Column and that coulmn is Container Cehckboxes too . I want to Use a chechBox in header in Repeater , and when This Control is Checked ,checkboxes of rows is checked ...
0
votes
3answers
742 views

delete row's in RepeaterControl in ASP.net

I write this code for delete from repeater,but I have a problem. when I run my page ad delete one of rows , this row is deleted and when I refresh that page , another one rows deleted that I don't ...
0
votes
1answer
527 views

delete row's in RepeaterControl in ASP.net

I show my data with DataReapeter , and I write a code that I can delete data from database with repeater,when I delete data from DataRepeater this record delete from database but I still See that in ...
0
votes
1answer
2k views

Dynamically bind a DataRepeater (Microsoft.VisualBasic.PowerPacks)

I am using a DataRepeater to show data from a business objects on the screen. I am using windows forms in C# to accomplish this. The datasource is not available at compile time so I want to bind the ...
0
votes
2answers
456 views

Trying to embed a DataItem within an asp:Image control's ImageUrl property

I have the following Image control within a repeater. I'm trying to get the username to render in between ~/profilepics/ and .jpg but I get the following rendered output ...
0
votes
1answer
1k views

How can i use DataRepeater Control in Windows Form with XML?

I've Created a data set, but i don't know how to get this work :) if anyone can help me, i will be really appreciated!
0
votes
2answers
2k views

ASP.NET Find DropDown Value Inside Repeater Control Part II

ive had a few questions on this subject, still having problems. I want to find the values from a number of dropdown and textbox controls inside a repeater control. db.ConnectionString = ...
0
votes
1answer
3k views

ASP.NET Find DropDown Value Inside Repeater Control

ok, ive had a few questions on this subject, i hope Im clearer this time. I want to find the values from a number of dropdown controls inside a repeater control. I eventually want to build a ...

1 2