LongListSelector is a part of Silverlight toolkit for Windows Phone. Very Popular tool among developers for rendering list to UI
-2
votes
0answers
14 views
LongListSelector items reflection
<phone:LongListSelector.ItemTemplate>
<DataTemplate>
<StackPanel>
...
0
votes
0answers
24 views
WP8 LongListSelector subgroups?
In Windows Phone 8 I have a longlistselector bounded to a grouped list in which items are sorted by date.
Per group I need to sort by hour.
21 may 2013
10h
item
item
item
12h
item
item
22 may ...
0
votes
1answer
39 views
LongListSelector get selected index
Is there a way to get the index of a particular element from a LongListSelector control? I'd like to remove the object the user has selected but there doesn't seem to be a straightforward way of doing ...
-1
votes
2answers
82 views
LongListSelector in WP8
I am trying to create my first WP8 application. I have good experience on Silverlight & WPF however this is not a cake for me which I expected :(.
I am making a Create Employ Form in which user ...
1
vote
1answer
75 views
How do I show multiple columns in a LongListSelector?
How does one get a LongListSelector to show items in multiple columns?
Suppose that three "items" are enough to fill the screen vertically but there is still enough room horizontally for another ...
0
votes
0answers
27 views
binding files to longlistselector
Trying to learn Win Phone 8, following along an online tutorial. In the tutorial, the guy uses the ListBox to show files, which is working fine for me.
However, I thought we're supposed to use ...
0
votes
0answers
62 views
LongListSelector, pull when few items (pull to refresh issue)
I have a pull to refresh solution for LongListSelector in wp8.
When there are only a few items so that all can be contained without scrolling, I don't get any scroll movement when pulling on the ...
0
votes
0answers
38 views
Binding GridCellSize to LongListMultiSelector results in error: Value does not fall within the expected range
I get a design-time error when binding the width of a GridCell in my 'toolkit:LongListMultiSelector' to the width of the containing 'toolkit:LongListMultiSelector'.
<toolkit:LongListMultiSelector ...
1
vote
1answer
163 views
How to Bind text value of a textblock inside a dataTempalte of Listfootertemplate of a Longlistselector
I have a TextBlock in the datatemplate of ListFooterTemplate of LongListSelector,to which I give a Collection as Itemssource,I want to bind the Text Property of TextBlock to a string in the ...
1
vote
0answers
59 views
LongListSelector: Strange result when filtering items
Here is my XAML code. Currently, LongListSelector is displaying two TextBoxes; City and Country.
<DataTemplate x:Key="LongListSelectorItemTemplate">
<ListBoxItem>
...
0
votes
1answer
167 views
WP7 - LongListSelector, how to hide vertical scroll bar
I need to hide vertical scrollbar in LongListSelector. For this I use:
ScrollViewer.VerticalScrollBarVisibility="Hidden"
in ListBox it works well but in LongListSelector it doesnt work.
This is my ...
1
vote
0answers
78 views
LonglistSelector can't scroll to last item when decrease height of it
I'm a new in WP8.
I have a problem with longlistselector.
I have a longlistselector and I scroll it to last item. It's OK.
But when I decrease the height of it and scroll it to last item. but The ...
2
votes
2answers
652 views
How to create LongListSelector with c# code
I am new to development,I am trying to create LongListSelector with C# code but not succeeded.
Could anyone help me to create this.
my Xml code is-
<phone:LongListSelector ...
1
vote
2answers
154 views
LongListSelector with horizontal Scrolling - WP8
Is there any way to make LongListSelector scroll horizontally?
By Default its scrolling vertically. There is no ItemPanel property or ScrollViwer available to change the orientation.
Any help will ...
0
votes
0answers
90 views
Memory issue with LongListSelector Windows Phone 8
I am developing windows phone 8 app and using this peice of code http://pastie.org/7281191
while downloading image from server it's working fine but after some time it crashes automatically and shows ...
0
votes
0answers
114 views
How to add a Flick gesture to LongListSelector wp7
I have a LongListSelector and I want to add a Flick gesture to it. I want to mimic iOS swipe to delete action.
I only managed to add the Flick event to the whole LongListSelector, but I couldn't get ...
0
votes
1answer
227 views
LongListSelector dont show items
I implement LongListSelector because I want group items. But this LongListSelector dont show any item when I run it.
This is my XML source:
<?xml version="1.0" encoding="utf-8"?>
<Tasks>
...
2
votes
1answer
411 views
ItemsPanel property in Longlistselector control Windows Phone 8 SDK
Does anybody know if the Longlistselector control from Windows Phone 8 SDK (not Windows Phone toolkit for WP 7.5) has the ItemsPanel property or an equivalent?
The ListBox control has such property, ...
2
votes
0answers
160 views
LongListSelector cannot change ItemsSource
I can't seem to be able to change the ItemsSource in LongListSelector. After doing some research, it appears that LongListSelector ignores any changes in ItemsSource. Am I correct?g
If yes, is there a ...
0
votes
1answer
90 views
Reduce number of items that LongListSelector creates on startup
I know that LongListSelector does UI virtualization, that is it creates a number of items sufficient to fill the screen plus a few more beyound that and then as user scolls content LongListSelector ...
2
votes
2answers
204 views
WP8 LongListSelector memory leak
I made a test application:
https://dl.dropbox.com/u/16063542/TestImageMemory.zip
It consists of three pages:
Starting page.
Page showing a list of images using ListBox
Page showing a list of ...
1
vote
1answer
194 views
Bind a string in LongListSelector from MySQL database in Windows Phone 8
I'm new to Windows phone 8 esp when using the LongListSelector. I am trying to fetch a list from MySQL database and bind it in the LongListSelector. In my code it is only displaying the MessageBox ...
0
votes
1answer
435 views
How to Access Longlistselector children object in windows phone 8
How can i get access to longlistselector items.
My XAML is:
<Grid x:Name="ContentPanel" Grid.Row="1" HorizontalAlignment="Left" Height="Auto" Margin="30,20,0,0" Grid.RowSpan="2" ...
0
votes
1answer
123 views
What is the currently active LongListSelector Group Header
In my Windows Phone 8 application I have use a LongListSelector control from the SDK to display hierarchical data.
How can I find out (from within my application button click handler) what the ...
2
votes
1answer
637 views
WP8 LongListSelector SelectedItem not bindable
In WP8, they forgot to provide SelectedItem as a dependency property, hence I'm not able to bind to it. I fixed that using this: ...
1
vote
1answer
312 views
Phone 8 XAML: Horizontal Alignment in LongListSelector
I've got a long list selector.
All I want to do is to align two elements inside the ItemTemplate:
1. a button to the right with a given, fixed width
2. a text panel to the left that fills the ...
0
votes
0answers
62 views
ArgumentOutOfRange exception using longlistselector in windows phone 7
I am using longlistselector for displaying phone contacts. The code is shown below:
public class LongListCollection<T, TKey> : ObservableCollection<LongListItem<T, TKey>>
// ...
0
votes
1answer
161 views
wp8 LonglistSelector AnimateTo
I want to scroll to the last item on my longlistselector in WP8, using animation. I can see that in wp7, LongListSelector had a AnimateTo method. Now it does no longer. Any advice of how to animate ...
1
vote
1answer
297 views
Why does WP8 LongListSelector incorrectly re-use Checked state of CheckBox?
I have a WP8 LongListSelector with the following template:
<DataTemplate x:Key="ItemTemplate">
<Grid Margin="0">
<Grid.ColumnDefinitions>
...
0
votes
1answer
785 views
WP8 LongListSelector popluating list
I've been trying to implement LongListSelector and I've been unable to find any good WP8 tutorial.
The best thing I've found is WP7tutorial.
I've followed the tutorial till step 21, but my result ...
0
votes
1answer
139 views
ProgressBar behaves incorrectly when enclosed in LongListSelector
In my WP8 app I use Background Transfer Sevice and LongListSelector with ProgressBar as it's DataTemplate to display items download progress to user. The problem is that ProgressBar does not show real ...
1
vote
1answer
299 views
How can I get the VerticalOffset of a LongListSelector in WP8
In WP7, the LongListSelector had a underlying ScrollViewer, from which I could recover the vertical offset of the list. But in Windows Phone 8, there's no underlying ScrollViewer nor any similar class ...
1
vote
0answers
125 views
How to filter Longlistselector WP7
I got problem while try to filter LongListSelector with textbox in WP7. I want to
Group A:
AABBCC
AABBDD
AABBEE
Group B:
BBCCDD
BBDDEE
BBEEFF
When i type the text "BBCC" in textbox, the list will ...
0
votes
0answers
54 views
how to bind data from xml link using longlistselector
I want show out put like this for windows phone 7
category Name1
title 1
title 2
thumb_image
category Name2
title 1
title 2
thumb_image
I used longlistselector but i ...
1
vote
2answers
478 views
How to access Components/Elements of UserControl in Windows Phone 8
I had developed UserControl for my windows phone 8 which is as follows.
<UserControl x:Class="SpinrWindowsMobile.UserControls.ProgressiveLongListSelector"
...
0
votes
1answer
35 views
I cant get LongLister Toolkit in my system
Hi I got following error
I added reference from phone.controls.assembly.toolkit but it doesnt work
The tag 'LongListSelector' does not exist in XML namespac ...
1
vote
1answer
82 views
Performances problems with back button when I have severals LonglistSelector with Images on WP8
In my windows phone app, I have a Page with 7 pivots items, each pivot contain one listbox, in each listbox I have one image per item (load from web). when I click on one of them, I go to another ...
0
votes
2answers
254 views
LongListSelector Empty View when no items are available
is there anything comparable to the Empty View of Android Lists when I'm using the LongListSelector in WP8? My app loads data from the internet and when there is initially no data available, I want to ...
1
vote
1answer
582 views
Scroll management in LongListSelector
In my WP8 app I'm trying to implement a functionality that will allow me to save LongMultiListSelector's scroll position and scroll it to that position at a later time (after tombstoning for example). ...
-1
votes
1answer
1k views
Windows phone long list selector
i have a long list selector that contains a check box in each list box item.
the long list selector is binded to a list that contain the name the image and the status
I want to check or uncheck the ...
0
votes
2answers
514 views
LongListSelector bound to ObservableCollection does not update
I have an ObservableCollection, which is a collection of View Models which implement the INotifyPropertyChanged interface...
public class FeedsViewModel : ObservableCollection<FeedViewModel>
{
...
1
vote
1answer
206 views
Binding the Background color of an Item in the LongListSelector
In my Windows Phone 8 application I am using a LongListSelector to display grouped data. I would like to bind the background color of the item in the ItemTemplate to the SelectedItem using a value ...
0
votes
1answer
105 views
The buffersize property of LongListSelector is deprecated
I want to control how many pages are preloaded in a LongListSelector, but I found this property is now deprecated.
Is there any other way to do this?
Thanks in advance.
1
vote
2answers
334 views
LongListSelector performance is very bad when enclosed in ScrollViewer
I have a UserControl that needs to contain a bunch of controls on top and a LongListSelector below them. Total height of the whole UserControl may (and almost always will) exceed the screen height and ...
5
votes
2answers
1k views
How to display flatlist using LongListSelector phone control of WP8
In toolkit *LongListSelector*, there used to be a property IsFlatList which needed to be set to true to display flat list without any grouping. But in the LongListSelector provided in phone control, ...
0
votes
1answer
138 views
Cant find LongListSelectorItem in Microsoft.Phone.Controls.Toolkit
I'm trying to use LongListSelectorItem in my wp7 app. But I cant find it in my assembly. So, i downloaded example from here. In example all works fine, and I can use LongListSelectorItem in that ...
0
votes
1answer
229 views
Bind data in LongListSelector
An ArgumentNullReference exception occurs when I try to update the ItemsSource property of a LongListSelector control.
XAML Code:
<phone:LongListSelector x:Name="LongListSelectorMain" ...
0
votes
2answers
172 views
Bad scrolling in LongListSelector
I have a LLS which shows 2 groups of friends (online and offline). My problem: when i start scrolling LLS - it has 2 variants: 1) LLS scrolling good, 2) it doesnt scrolls. When it doesnt scrolls - I ...
0
votes
1answer
194 views
LongListSelector and ObservableCollection throws InvalidCastException
I'm trying to bind my collection to LLS, but I get an InvalidCastException. If i use ListBox instead of LLS - all binds work fine and good. Here is my collection:
public class Friend : ...
0
votes
1answer
246 views
In a LongListSelector how can I get data from multiple parts of a LongListSelectorItem
So, I have a LongListSelector with a CheckBox and it is bound to a List<People> object
<phone:LongListSelector.ItemTemplate>
<DataTemplate>
<StackPanel ...

