1
vote
1answer
36 views

listview item's view returns to original state after scroll the view off the screen

I have button in listview item and when it's clicked horizontal progressbar start loading and when it is done loading two button should appear in that item in listview. While progressbar downloading ...
0
votes
1answer
43 views

VB.net Option Strict, listview.items.add(itm.clone) Overload

In VB.net (2012) I have the following code: For Each itm As ListViewItem In Me.lvCustomers If CDbl(itm.Tag) <> customer.Id Then Me.lvMerges.Items.Add(itm.Clone) Next With Option Strict On ...
0
votes
1answer
39 views

Listview item click issue

I have added leadbolt ad(entry ad). The advertising works correctly but listview.click doesn't work when I close ad from close sign. (Listview.click does not do anything, It works when I remove ...
0
votes
2answers
62 views

C# Serialising/deserialising Listview

I'm trying to serialise data from a ListView as well as then deserialising it and also consequently fill the ListView with the saved data. public List<ListViewItem> SaveListView(ListView LV) ...
-1
votes
0answers
39 views

can get value of each coloumn

nim 310910022 320910044 310910043 310910021 access 0 2 3 5 abdi 1 0 ...
1
vote
1answer
32 views

Refresh items in DragSortListView

Am making a ListView with DragSortListView, so I can move the rows to reorder the list. Well, I need to modify the behavior of the List. By default, the list can't be reordered (setDragEnabled = ...
0
votes
1answer
145 views

How to set focus to listitem in ListView in Windows 8 (C#) apps

When I enable keyboard access and I scroll the listview programatically to item nr 50, I want to set the focused item to nr 50 so if the user presses the down arrow he will scroll from nr 50 and down. ...
0
votes
1answer
39 views

ListView Item Positioning

Hey guys I'm stuck with the follow scenario: I have a list of GraphItems which I would like to display on the screen using a ListView (I'm not sure if it's the best way to do it) but the rows it self ...
0
votes
3answers
158 views

C# listview count >0 but has no items how is this possible?

Perplexed by this listview object yet again. My code is kicking out a "subscript out of bounds" error when I try to retrieve the selected listviewitem from a listview in a windows form. Using the VS ...
0
votes
2answers
156 views

Why is my WPF listview code throwing an excpetion when programatically selecting a row

I am trying to programmatically highlight the first row in a WPF listview control using VS2008 with 3.5 of the .NET framework. Here is the C# code for this: ListViewItem Val = ...
0
votes
0answers
25 views

How to implement an embedded item's preview in the WrapPanel of the ListView in WPF

I'm trying to embed the item's preview in the WrapPanel used as an ItemsPanel of the ListView (tiles). What I need can be easily illustrated by Google Images or iTunes Albums view: square-like items ...
0
votes
0answers
60 views

Add ListViewItems to a ListView on another UserControl in WPF

I have a Window which has a Frame that hosts a UserControl. The UserControl has a ListView and a Frame which hosts another UserControl which has data capture fields. I need to add an item to the ...
0
votes
1answer
199 views

How to add a listViewItem with its own unique image

C#'s ListView has the follow add methods available for adding an entry public virtual ListViewItem Add(ListViewItem value) public virtual ListViewItem Add(string text) public virtual ListViewItem ...
0
votes
1answer
69 views

How can I change custom item in ListView

JavaFX - I have a class Record with a method(and other functionality) public String getName(). I have ListView<Record> listview and here is the code to display Record's name: ...
6
votes
5answers
209 views

ListViewItem text truncated after selection - Compact Framework

I have a ListView with some ListViewItems (only text). listView1 = new ListView { View = System.Windows.Forms.View.Details, HeaderStyle = ColumnHeaderStyle.None }; ...
3
votes
2answers
146 views

ListViewItem Border - Compact Framework

I have a ListView where I add as Items some ListViewItems. The View property is set to Details. When the ListView is displayed the ListViewItems haven't any border (top and bottom line that separates ...
0
votes
1answer
95 views

How to get changes in listview item to arraylist item behind it

I need a dynamic list of heterogeneous items with editable fields. Seems a bit complicated, but essentially user can add/remove items; each item can be of different type (I have an abstract class ...
0
votes
0answers
143 views

how to set list item to fullscreen in single activity android?

Actually I have bunch of images and I am passing those images to my custom array adapter to be present in a list view, I am getting a wonderful presentation of images in list view. But what I want is ...
0
votes
1answer
147 views

listview item button change text

How is it possible to change text in a textview from a listview item. I got a productAdapter and now i try to add a onclicklistener for the items. I got 2 buttons in my listview items when i click ...
1
vote
1answer
197 views

Refresh ListView in ImageButton.onClick inside getView off a BaseAdapter

I have an activity that is generated by a custom BaseAdapter and look like this: This is the getView off the custom BaseAdapter: @Override public View getView(int position, View view, ...
1
vote
1answer
309 views

How I can remove a item in my ListView?

Hi I want do delete a entry in my asp.net ListView and it don't work with my code :( my code: protected void ListView_ItemCommand(object sender, ListViewCommandEventArgs e) { ...
0
votes
0answers
95 views

Position of a ListView item onTouch

Is there a way to get the position of a ListView child onTouch ACTION_DOWN event? listView.getChildAt(position_when_touched).setBackgroundResource(R.drawable.newBackground);
0
votes
1answer
86 views

How I can use a ListView with a default row and can add new rows?

I want to use a ListView for my ASP.NET Application and I want if I start the application I the the ListView with one Row and this Row have a few columns with TextBoxes. The Application is for create ...
0
votes
1answer
292 views

Kendo listview item/element access

I have the following template with 'Name' populated though PHP/mysql. Note that I have a remove button(a tag). <script type="text/x-kendo-tmpl" id="template"> <div class="usrList"> ...
1
vote
2answers
574 views

Selected items of listview checkbox in MVVM WPF

I want to pass selected items of listview checkbox in view model, later I will use further process to store in database. Code in the FormWeek.xaml as <Window.DataContext> <Binding ...
0
votes
1answer
109 views

ListView item highlighting

I am designing a code viewer using a virtualized ListView control to display code lines. Now I want to create a highlight effect when the user clicks a link which takes them to a particular line. I ...
0
votes
0answers
143 views

Full width listView header, listview item separators not touching edge of app [closed]

I'm in the process of building my first Android App. I'm trying to create an activity with a similar layout to the Spotify Artist Activity View I would like to accomplish a top banner image (full ...
0
votes
1answer
796 views

How to set a WPF ListView Selected Item color?

I am trying to recreate the Mail UI from Windows 8 in a WPF application running on Windows 7. Here's what I want to achieve: In particular, I don't know how to change the background color for ...
0
votes
1answer
115 views

Determining if a ListViewItem is fully or only partially visible in the WPF ListView

I have a WPF ListView. This ListView will contain n-items. As a user drags something into the listview, I am displaying a horizontal bar on the AdornerLayer of the ListView to show the index where ...
0
votes
2answers
189 views

How do I populate listview in 2 columns from 2 arrays in WPF c#

I have a listview item (XAML) <ListView Name="myListView" BorderThickness="2,2,2,2" Margin="12,27,428,12"> <ListView.View> <GridView> ...
-3
votes
2answers
355 views

Set Listviewitem's width

I have a Listview and it has one column. The view is set to List and I can see each Listviewitem but I can't select the item's row, I have to select the item's text. Is it possible to make it so that ...
0
votes
2answers
36 views

Remove An Item In A Listview

This seems to be quite easy but I'm having a problem about this right now. What I want to do is look for a specific entry in the second column of my list view and then if that specific entry if ...
0
votes
1answer
356 views

Kendo UI Mobile Button

I'm trying to use kendo ui mobile framework with on my mobile app. I have to create button dynamically in listview and buttons on click function also. if i write in html body everything is ok and ...
0
votes
1answer
125 views

Lost some items in listview when scrolling

I have a listview with 1 checkbox and 2 buttons, I set checkbox VISIBLE and both buttons GONE. In main class, I have 1 method that to turn on/off show 2 button VISIBLE/GONE again, work perfect but ...
0
votes
1answer
390 views

How to add data icons in listview item template

I am using the JQuery initialization syntax. As of now, I create my desired listview links like this: <li data-icon="featured"><a>My Listview Item Link</a></li> This gives ...
0
votes
1answer
310 views

set background for selected item in listview

I have a listview which display the row through a datatemplate. When I select an item, I add the selected item to an observable collection and also set the value of "CarIsSelected" to true so I know ...
0
votes
1answer
143 views

Adding new items to the beginning of listview, and maintaining the scroll position

I have the following scenario for which I can't find a solution. I have a listView of items, now, when the user scrolls up the listView i want to load more and more items at the beginning of the ...
1
vote
1answer
98 views

Get the notification code from Listview Control checkboxes

I've implemented a ListView control with LVS_EX_CHECKBOXES | LVS_EX_INFOTIP style. I've registered function to get notified from list view control items using. BEGIN_MESSAGE_MAP(Class, ParentClass) ...
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. ...
2
votes
3answers
121 views

how to add the current positions the listview

import java.util.ArrayList; import java.util.List; import android.app.Activity; import android.content.Context; import android.location.Location; import android.location.LocationListener; import ...
1
vote
0answers
24 views

Apply format to column in listView depending on Name Column

I'm actually developing a WPF Desktop Application on Visual Basic and my problem is that I've been trying to set some format to some columns into a listView without success, so I was wondering if ...
0
votes
1answer
46 views

How To Fire OnTextChangeListenerOn Edittext Available in ListViewAdapter as a Item in android

I have one ListView with edit text as a list item binding with ListViewAdapter. i want to put validation on EditText. like if user enter "85" in Edittext, it automatically set as a "0085". in-short if ...
0
votes
0answers
132 views

update the textbox in listview

actually i have a carttable , which is assigned in a session... whenever addtocart button clicked of any product in product_details page thn quantity also sends to cart page through the query string , ...
0
votes
1answer
298 views

How to make a ListView with this border? [closed]

I want to make a ListView like the foursquare (image below). I'm familiar with custom items.
1
vote
2answers
98 views

Foreach over all listViewItems

I wrote a listView <ListView SelectionChanged="MySelectionChanged" ScrollViewer.CanContentScroll="False" Background="Transparent" x:Name="uiListView" ItemTemplate="{StaticResource ...
0
votes
2answers
1k views

Multiple Columns in listview

I am writing the following code in C# to show data in multiple columns in a listView but it only shows the first element of the array, ListViewItem item = new ListViewItem(new ...
0
votes
1answer
235 views

How to reset ListViewItem styles?

I have an xaml style so defined : <Style TargetType="{x:Type ListViewItem}">[...]</Style> <Style TargetType="{x:Type ListViewItem}" x:Key="track_selected">[...]</Style> And ...
0
votes
5answers
1k views

Listview setOnItemClickListener - Not working for custom listview but working into simple listview

I have problem with the get the listview item when click listitem. I Got listview item for the simple listview(Arrayadapter), but I have face problem for the custom listview. I am using ...
0
votes
4answers
288 views

Display whole content of listview item

Here I want to display whole content of the listview item on the listview. How can I achive this? ArrayAdapter< String> myadapter = new ArrayAdapter<String>(getApplicationContext(), ...
0
votes
2answers
734 views

Display items from a List<CustomObject> in a List View in a metro app

I have a List. It is populated with CustomObjects when a query is run on a database (and matching results are put into this List) However, I then want to display each of the e.g. name properties of ...

1 2 3 4 5 6