Tagged Questions
The itemdatabound tag has no wiki summary.
6
votes
2answers
459 views
Avoid reloading all XML data for each repeater - vb.net
I am trying to place a repeater within a repeater using xml data. I have it working exactly as I want, but the method I have used reloads the data for each repeater. I think I need to cast as an ...
5
votes
3answers
7k views
How do I access datasource fields in an ASP.net Repeaters ItemDataBound event?
I have a Repeater control that is being bound to the result of a Linq query. I want to get the value of one of the datasource's fields in the ItemDataBound event, but I'm not sure how to do this.
2
votes
5answers
84 views
Formating the output of certain items bound to Repeater
For example in the backend I'm binding a datable to a repeater and in the front end I'm setting up my repeater as such:
<asp:Repeater ID="Repeater1" runat="server" ...
2
votes
2answers
211 views
C# Calling edit command in ItemDataBound
I'm currently struggling to find the code which I need to call in the if statement in order to find the edit event of a data list.
I am trying to create a blank drop down item on an existing Drop ...
1
vote
1answer
555 views
No overload for 'ItemDataBound' matches delegate 'System.EventHandler'
I have a nested repeater
Because of that no control in my code is visible and because of that I found out that I had to use FindControl to get the controls visible.
I want to pass on a value from a ...
1
vote
0answers
863 views
In DataList ItemdataBound event, how to access by column name instead of by ItemArray index
In the following code, strUsername is always returning as an empty string "" (and so are other columns).
However if I use ItemArray and access it by passing the column index, it works fine. How to ...
1
vote
1answer
223 views
LINQ2SQL: how to delete entity by retrieving it from datagridview?
I have a datagridview and attached list of Employees to it, somthing like this:
IQueryable<Employee> data = (from em in db.Employees
where em.StationID == ...
1
vote
1answer
2k views
ItemDataBound 'e.item.dataitem(“key”)' with ListView Control
With the ASP.NET Repeater control, I am used to being able to access my data item values in the ItemDataBound Event Handler by doing:
e.item.dataitem("column_name")
However, it seems with the ...
1
vote
1answer
2k views
ListView ItemDataBound - determine if item is AlternatingItem?
I'm using the Listview to display my data. On the ItemDatabound event I want to do some manipulation and change some of the data being displayed. When I check the Item on this event I am using the ...
1
vote
3answers
5k views
How to only display certain images in a folder into a Repeater in ASP.NET
I have a Repeater that takes all my images in a folder and display it. But what code changes must i make to only allow lets say Image1.jpg and Image2.jpg to be displayed in my repeater. I dont want ...
0
votes
1answer
28 views
First row of DataGrid not being filled in with DataList data
I have a DataGrid with 4 columns and a DataList with 5 columns. The DataList resides inside the DataGrid as another separate column by itself.
Everything is coming out fine, except that the first row ...
0
votes
1answer
68 views
how to check the checkbox inside the repeater at binding time accordingto value?
I have a repeater and inside it i have a checkbox. Now i want to check it according to columns value(0/1). I have tried it through the itemDataBound event of the repeater. what its doing if the rows ...
0
votes
1answer
63 views
Item Databound event is not firing in IE
I have a strange issue in a datalist
<asp:DataList ID="dl" RepeatColumns="8" runat="server" GridLines="None" OnItemDataBound="dl_idb"
OnItemCommand="dl_ic" ...
0
votes
0answers
66 views
Telerik RadScheduleView WPF Resource Data Bound
In my WPF C# project I have a radscheduleview from telerik. I have many resourcestypes as headers, and I've styled these with a template in xaml. Let's say for argument sake that I have included a ...
0
votes
1answer
146 views
ItemCommand Fires Before ItemDataBound on PostBack? WTH?
This is just stupid. I've been at this for over 5 hours and can't figure out why my freaking commands aren't firing properly. The only ones that fire properly are the Built-in commands "Edit" & ...
0
votes
0answers
29 views
Best way to list topics in a .NET forum? Use classes?
Im creating a forum in .NET 4.0 and I need some help. I use a repeater to list all topics and the code for this is:
public static class CurrentTopic
{
public static string ID { get; set; }
...
0
votes
2answers
59 views
How to conditionally filter an XmlDataSource of a repeater based on a parents value
I am trying to build a product detail page menu navigation and want to only show the navigation items for products that are in the same category.
The data is maintained in two different XML files.
...
0
votes
2answers
201 views
Error accessing a nested repeater in parent ItemDataBound event
Error:
'Repeater' does not contain a definition for 'DataSource' and no extension method 'DataSource' accepting a first argument of type 'Repeater' could be found (are you missing a using directive ...
0
votes
2answers
123 views
Creating buttons dynamically in ListView
I have a following problem. I have a ListView which returns data from SQL table. One of its columns looks like "Ambient/Trance/Goa Trance/House".
All i want to do is parse this column and create ...
0
votes
2answers
183 views
how to convert an e.item.dataitem to type (Of T)
I'm trying to do this in an item_databound event of a datagrid in asp.net
Dim EntType As EmployeeEntity = DirectCast(e.Item.DataItem, EmployeeEntity )
but I encounter the error
Cannot convert ...
0
votes
1answer
16 views
Retrieving values only once without using ItemDataBoundEvent which repeatedly return the value
On DataService.cs, the function returns a list as follows:
[WebMethod()]
public SomeList[] GetListing(
On client side, I have this:
function onListLoadSuccess(someLists) {
...
0
votes
1answer
395 views
ListView ItemDataBound on all pages
The ItemDataBound event of the ASP.NET ListView seems to only deal with the visible page as determined by the DataPager.
How would I be able to utilize data binding on all pages worth of the ...
0
votes
1answer
1k views
Datalist change row color using itemdatabound event problem
I am trying to change the row color of a DataList Control...
<asp:DataList ID="dlTrades" Width="100%"
RepeatDirection="Horizontal"
RepeatColumns="6" ...
0
votes
1answer
218 views
Get value of certain Page control in an asp:Repeater
On my asp.net page, I have several DropDownLists.
I also have a Repeater.
In the ItemDataBound event I want to get the value of these DropDownLists, to change the data in the Repeater. The ...
0
votes
1answer
154 views
How to keep a trace of a record inside a nested repeater?
I have the following implementation:
As you can see I have a repeater (listing the Machines) and a nested repeater (listing the WindowsServices inside each Machine). For each Windows Service I can ...
0
votes
3answers
480 views
ASP.NET Button click not caught (button in user control which is dynamically loaded in Repeater)
I have written a user control that captures some user input and has a Save button to save it to the DB. I use a repeater to render a number of these controls on the page - imagine a list of multiple ...
0
votes
4answers
702 views
Listview: So you think you know itemDataBound?
In my webpage i use the following in order filling the listview control
<asp:ListView ID="ListView1" runat="server">
<layouttemplate>
<asp:PlaceHolder id="itemPlaceholder" ...
0
votes
2answers
2k views
Set Dropdownlist value in listview on itemdatabound
i have dropdownlist of year which is coming dynamically.i have filled the dropdownlist using object datasource.on inserting in the listview control it is working fine. but when i click on edit button ...
0
votes
1answer
816 views
Repeater itemdatabound event value type and reference type
Im trying to bind a list with datetime objects to my repeater.
if (e.Item.ItemType == ListItemType.AlternatingItem || e.Item.ItemType == ListItemType.Item)
{
DateTime ...
0
votes
1answer
244 views
Styles in dataList control
In the ItemDataBound handle i set backgroud color to some items:
protected void MyDataList_ItemDataBound(object sender, DataListItemEventArgs e)
{
if (e.Item.ItemType == ...
0
votes
1answer
353 views
asp:Repeater - How to make “StringEnumerator” move to next item in “ItemDataBound”?
Here is the snapshot of repeater code. I have problems with geting all the values. In result my "repeater" prints only first element in collection.
<asp:Repeater ID="repeatAdministrators" ...
-1
votes
2answers
123 views
Get row count in ItemDataBound
I have a datasource in Page_Load binded to a repeater.
I am writing the results to the page in ItemDataBound but when it's the last row of data I require it to do something slightly different.
How ...