0
votes
2answers
53 views

Loading ObservableCollection with datetime values from an array

I have a ListView in a Class called HistoryStatistics and its template looks like this. Every item will have a button and two textblocks. <ListView x:Name="HistoryLV" Grid.Row="1" ...
0
votes
1answer
35 views

Is this binding valid for a ListView?

I am trying to bind the height of a list view according to the height of the Items and have set the MaxHeight property as: MaxHeight="{Binding (ListView.View).ItemHeight*2, ...
1
vote
1answer
35 views

Binding ListView to the set of IComparable

I am looking for a smart way of binding a ListView DataSource property to the set (any collection) of IComparable custom objects. I would like to have a control real time responding to changes of my ...
0
votes
0answers
38 views

Binding Listview depending upon selected value of drop downlist

I am using a dropdown list as filters for my listview. I want that to add "Pick one" as selected in the dropdownlist and no filters applied until user select from dropdownlist. I am using ...
1
vote
0answers
14 views

Get attributes from 2 tables into 1 data source

I need to get 2 data into 1 data source from 2 tables Score user_id tribe_id score_mark Tribe tribe_id tribe_name I need score_mark and tribe_name, however, so far I only able to get score_mark ...
0
votes
6answers
46 views

List of items with custom views/layouts

I need a way to create a vertically scroll-able list. The list should then contain a bunch of rows, where each row should have an image button, an image , three TextViews and two images. Like this: ...
1
vote
1answer
176 views

How to bind a collection to a ListView in WPF

I have a program that searches a directory for files matching certain criteria. This search process takes a long time, so I have to call it asynchronously. When the search algorithm finds a file, it ...
1
vote
2answers
118 views

Find Empty Data in Listview from code behind?

I am trying to redirect to error page if the Listview is empty. I did try below workaround but doesn't seems to redirect. protected void lvDetils_ItemDataBound(object sender, ListViewItemEventArgs e) ...
0
votes
1answer
68 views

WPF - Highlighting rows in listview with binded XML

First of all I apologise for my bad english. I have xml binded to a listview, where each row stands for one person. I want row's background color blue or pink depending on sex element in xml. I've ...
0
votes
2answers
57 views

Emulators Providing Different Results

I am developing an application on windows phone with version 7.1 set as my target build. The problem i am having is that one of the listviews in on of my pages refus to display. I have debugged to ...
3
votes
1answer
59 views

How can I use WPF data binding to edit common fields of multiple items

Similar to the way you can select multiple objects in the Visual Studio designer and change common properties, I would like to do the same in my WPF application. I am currently binding the selected ...
0
votes
2answers
113 views

Bind ObservableCollection to ListView

I am having some trouble to bind my collection to my listview. I have tried a lot of different approaches from others on here for binding, and also followed this tutorial at first. I made it to work ...
0
votes
2answers
273 views

Displaying Images in ListView (or something better!) in WPF MVVM using databinding

I am trying to display some images in a ListView and have not been successful. I am using WPF MVVM and the ListView is a holdover from simply displaying suits and rank data. (See my previous post: ...
0
votes
2answers
56 views

Can't display data

I don't understand why but I can't display data on a listview. What can I do? Here is my code: <FlipView HorizontalAlignment="Left" Margin="209,52,0,0" VerticalAlignment="Top" ...
0
votes
0answers
93 views

c# An ImageButton that is dynamically created in a databound ListView doesn't post back

I'm fairly sure I know why this occurs, essentially that the control is creating dynamically too late in the page lifecycle for the event wireup system to see it, but I'm not realy sure what to do ...
0
votes
3answers
54 views

How can i spread Database cells over the same html row + skip to a new row every number of records?

i have a database table containing ID and Name. in Default.aspx i only show the Name cell (column) off the DB table, this is not a big deal. But GridView generates an html table like this (of course ...
0
votes
0answers
116 views

Binding image data pulled from an sql database into an alternating listview asp.net

I am successfully (after many hours of trying) managed to get an upload image to a database working, and to displsy that image. But it is onyl displying the image at a set id, not one set by a ...
0
votes
0answers
31 views

How does a ListView Control access a IList collection?

I have a question about how ListView works. The Background: My implementation is to do Data Virtualization, the paging is done in the background and will update the Collection in the Listview when ...
2
votes
2answers
112 views

WPF SelectedItem from one ListView and show Relational Data in the other LsitView

I'm creating a WPF application, allowing a user to enter in details using CRUD operation using Entity Framework (also using a Repository pattern). So far, I've created an Application that allows a ...
1
vote
1answer
556 views

Bind DataTable to ListView

How can i bind listview to datatable which holds data from SQL(2005) table? and show selected record details in listview?
0
votes
3answers
151 views

Listview displaying “empty” rows

I've spent a good couple of days failing at solving this issue myself, which leads me to believe I don't understand something very basic about xaml and the code-behind. I am attempting to display data ...
0
votes
0answers
80 views

Binding to a listview Error: Data source is an invalid type. It must be either an IListSource, IEnumerable, or IDataSource

MY CODE__________ I am using the database connectivity Using an Entity data model. Error: Data source is an invalid type. It must be either an IListSource, IEnumerable, or IDataSource. public void ...
0
votes
2answers
624 views

windows store app Listview Binding

I have a class with data: public class routedata : INotifyPropertyChanged { private List<double> distances; public List<double> Distances { get { return ...
0
votes
1answer
125 views

ListView showing empty TextBlocks at runtime

I'm experiencing a strange problem with data-binding. In the designer everything is shown correctly, but at runtime my ListView just contains those TextBlocks with an empty string in them. I'm using ...
0
votes
0answers
144 views

updatepanel listview

I have a 4 horizontal tabs which has 4 links(<a> tag).These links on click display div which have corresponding listview embedded in update panel.The problem is only one of listview is binding ...
1
vote
1answer
165 views

Displaying a large number of strings in WinForms listbox/listview controls

My WinForms UI contains a tab control with two tab pages. On one tab, I need to display a list of up to 100,000 strings in a manner that allows my users to add, edit and delete strings in the list. ...
0
votes
0answers
135 views

Binding ListView and ComboBox so that user can edit the property of the selected item in WPF

I'm developing an editor for our game, and I want to do the following: a ListView on the left side to represent all the equipments in our game a ComboBox on the right side to represent the item-drop ...
1
vote
0answers
150 views

ListView item doesn't fit width in binding WinRT

I'm designing a listview in blend and I would like the item completely fill up the width of the list. This happens if I use the ListViewItem control, but if I use the data binding the item is tight. ...
0
votes
1answer
245 views

Databinding expressions within ListView's LayoutTemplate on postback

I'm attempting to use databinding expressions (such as <%# PageProperty %>) within the LayoutTemplate of a listview. Resources i've looked at: Access a control inside a the LayoutTemplate of ...
0
votes
0answers
149 views

Listview DataPager refresh

I am using a Listview and a Datapager like so: <asp:ListView ID="RelatedCatList" runat="server" OnPagePropertiesChanged="ListView_EditPublicMeanings_PagePropertiesChanged"> ...
0
votes
0answers
69 views

ComboBox Slow After Context Changed

I have a control with a ListView and a set of controls to display properties of the selected item in the ListView. <ListView Name="ObjectList" ItemsSource="{Binding Path=Objects}" /> And then ...
0
votes
2answers
282 views

Items of a ListView have DropDownList: How to get the DataItem when selection changes?

So I have something like this: Under the "Products" ComboBox there is a ListView that displays the new items that are added when the user clicks the "Add" button to add the selected product. ...
0
votes
0answers
268 views

Selecting item in asp:ListView control throws error

Here's my ASP code: <asp:ListView ID="DocsListView" OnSelectedIndexChanging="DocsListView_SelectedIndexChanging" DataKeyNames="DocID" OnSorting="DocsListView_Sorting" runat="server"> ...
0
votes
0answers
107 views

How to put Eval('dynamicField') funtion for Listview

Initially, I set SqlDatasource as datasource for Listview which hasn't imgCount field and this one I need when no search is done (Default View). Now, I am finding numbers of images related to ids and ...
0
votes
0answers
215 views

How to sort and select items in asp:ListView web control?

I have defined a ListView ItemsListView in my web page: <asp:ListView ID="ItemsListView" runat="server" OnSorting="ItemsListView_Sorting"> <LayoutTemplate> <table> ...
0
votes
1answer
418 views

bind database image to ItemTemplate in .ascx

I am using dynamic ItemTemplate for ListView which populated from database.Here is how I do when I need to display string column "Parametr" (or some other datatypes): //my .ascx file ...
0
votes
2answers
331 views

ASP.NET Eval Byte Array as String

I am building a ListView from an EntityDataSource. There is a Byte[] field called Sha1Hash that I need to convert to a String type for a Hyperlink. This is a code snippet from ItemTemplate: ...
0
votes
1answer
204 views

Setting XAML Data Bindings programmatically in C# on application start

At the moment I have a simple Twitter client, on which there is a Refresh button which is linked to a command that refreshes the timeline through list binding. At the moment I am achieving this by: ...
0
votes
1answer
136 views

How to conditionally insert a Checkbox in a list item of a customized ListView?

I try to make a customized ListView which fills each list item with some stuff and an initial Checkbox if desired. Currently no Checkbox is displayed so I guess my code of the ContentControl stuff is ...
0
votes
1answer
131 views

need help binding to a WPF listview

You guys are so helpful and I had some trouble binding to a listview and was wondering if someone can help me, here is my code. here is the xaml <ListView Name="ListView" Margin="0,0,16,145" ...
0
votes
1answer
145 views

PropertyGrid-like multiselection in other elements(listView)

i want to immitate the behavior of multiselection of items (eg. in a list view) and their appearence in a PropertyGrid. So, obly the same properties are shown and values set in the grid are set on all ...
0
votes
1answer
183 views

Listview databind confusion

I currenty have a stored procedure that I am running and hoping to bind the data from the sp with my list view. However, I am unsure of how to go upon doing this. Here is my current code. I was ...
2
votes
1answer
640 views

WPF ListView programmatically deselect item

I have used the following approach to bind IsSelected of my items to a Property: WPF ListView Programmatically Select Item <ListView.ItemContainerStyle> <Setter Property="IsSelected" ...
0
votes
0answers
51 views

Non refreshed list view items with on screen items versus other items in a binded listview in WPF

I have a strange problem. I am using C#/WPF and listview binding. The problem is, when I set the datacontext (manually), and changing values (via OnPropertyChanged), it seems that values which are ...
1
vote
1answer
42 views

Should I bind to a “dormant” object at designtime in XAML or wait until runtime in C#?

I want to bind my ListView to the results of a query. The query does not fire until the user enters some text and selects a button, though. Should I in this scenario create the binding on the fly ...
0
votes
1answer
777 views

Bind a TextBox to the selected value of a ComboBox in the DataTemplate of a ListView

I have a ListView that looks like this: The combo box is bound to an ObservableCollection of objects of type TfsTask. I would like my controls on the same row to be filled with data contained in ...
0
votes
2answers
206 views

How I add Datalines in a ListView without a Database

I use a ListBox in my ASP.NET Application that display Active Directory Users. Now I want use a ListView but I don't know how I can fill it with Data :( My Application: The User input a String ...
1
vote
1answer
338 views

ListView evaluating item template with multiple variables

I am attempting to print out a line which contains an image tag within my ListView controller's Item Template. I have tried this multiple ways with no success. <ItemTemplate> <tr ...
0
votes
2answers
940 views

DropDownList in ListView selectedValue always the first one

I have a ListView with DropDownList inside. I tried both: fill DropDownList on OnItemDataBound and in Page_Load. I also tried checking PostBack, but nothing helps. When I try to get value, I always ...
1
vote
2answers
1k views

asp.net listview sorting and manual data binding

I am having a bit of a strange issue. I have a ListView which I sort in ASC/DESC order by clicking the listview header, using the method below, now the thing is that works perfectly when I have an ...

1 2 3 4 5