The selecteditem tag has no wiki summary.
0
votes
2answers
38 views
Single selection listbox selected items to another listbox
I've tried quite a few options but none of them has gotten me closer to the results.
I'm really new to WPF, so I'm sorry form my perhaps trivial question.
I have a single selection listbox and I ...
0
votes
0answers
22 views
Real-time updates to ObservableCollection, accessing selectedItem on other User Control
I have this use case currently working on:
I have a window with Two Tabs, One tab I have a user control where I am displaying a list of entities using a observable collection.I am selecting one of the ...
-8
votes
1answer
60 views
Android listview selected item while button click [closed]
im newbie to android development.
i have 3 TextViews and a button in a ListView Control. my doubt is while clicking on this button
i want to get selected list items TextView text, may i know how to ...
0
votes
1answer
42 views
Can't clear ListBox selection using SelectedItem = null - MVVM
I have the following data template (and a corresponding view model, not shown):
<DataTemplate DataType="{x:Type logic:SnapshotListViewModel}">
<ListBox ItemsSource="{Binding Snapshots}" ...
1
vote
0answers
80 views
solved C# listbox: always returns wrong value of selected item
I've got a listbox in C# that's dynamically filled. I've got a problem with the selectedindex_changed of the listbox. Everytime it gives the value of the last item in the listbox and not the one I ...
0
votes
1answer
43 views
Set DataGridView SelectedRows after Update
In one of my C# Winform, I have a DataGridView that I update when the user presses a refresh button.
The problem is that the selected row is lost in the process.
I would like to be able to do the ...
1
vote
2answers
30 views
Get selected class in a “ul”
How can I get the selected class of the li-item in with this code?
Now it loops all of the classes inside the ul, not just the selected.
$('<div id="chooseCustomFields'
+ field_id
+ '" ...
0
votes
1answer
54 views
VB.net Labels not populated from dropdown variable data on pageload, but update when dropdowns change
I have declared variables based on dropdown text:
Dim strDataCollection As String = ddlDataCollection.Text
Dim strYear As String = DdlYear.SelectedItem.Text
Dim strSubject As String = ...
0
votes
1answer
44 views
Find a WPF Combobox item using SelectedValue from Binded Combobox
Can Anyone help me to find the Combobox Item using value property. The combobox is binded to a Dataset.
Here is my code.
XAML Code
ComboBox Grid.Column="0" Grid.Row="3" Height="23" ...
0
votes
1answer
39 views
Get SelectedItem from ListBox
I want to get the SelectedItem from a ListBox which looks like this inside my Windows 8 Store App:
<ListBox x:Name="listBox" SelectedItem="{Binding SelectedItem, Mode=TwoWay}" Foreground="Black" ...
0
votes
2answers
34 views
how to detect which row is concerned when changing autocomplete object inside datatable primefaces
I have this datatable :
<p:commandLink value="ajouter Ligne" update="lesarticles"
process="@this" actionListener="#{commandeMB.addLigne}" />
...
0
votes
0answers
38 views
get selected item id from datagrid filled by database WPF
My question was how to get the item or value of a selecteditem out of my datagrid that gets filled by a obc of my view. From te result that i get it seems i need to cast it but all the casts i found ...
0
votes
0answers
22 views
Selection Changed IsPostBack or refresh
Is there a way for a SelectionChangeEvent to get refreshed after selecting an item? I'm having trouble on my windows phone application.
Here is the scenario, I have three items in my combo box, when ...
0
votes
1answer
84 views
SelectionChanged event not raised
Is there a way to fix the known bug of Selection Change Event, selecting does not work if the same item is tapped again.
to give further background, my scenario is that I have four items in my pivot ...
2
votes
1answer
76 views
Commanding with Static Items of Listbox using MVVM
I have a list box in my view with three static items(Name,Age,Gender), and I want my ViewModel to do something when an item in the ListBox is selected. I want to do this without any code-behind, using ...
0
votes
0answers
41 views
listener and selectedTheme are not invoked when theme changes p:themeSwitcher primefaces
I write this code to change the theme of my application at runtime :
<p:themeSwitcher converter="themeConverter" id="changerTheme"
var="t" ...
0
votes
1answer
63 views
Disable Selecting of Empty Lines in ListBox
I have a listBox with several items, inbetween each item there is a blank line, e.g.
item1
item2
item3
(The reason being is, with several dozen items it just looks a lot nicer IMO).
I want to ...
1
vote
1answer
39 views
Can't Fetch record from database in JTexField
Hello here i am trying to fetch record from database while i am using one combobox based on that selection i want to get related record from the same table in the textfields.. but unfortunately i got ...
0
votes
0answers
49 views
Need help visual basics 2010 images and buttons
i'm making a program that in the end will be like a memory program for cards.
here is a few images:
So this image is just the basic program layout, it's really simple (and unfinished with the ...
0
votes
0answers
88 views
c# WPF AutoCompleteBox - simillar named items returning first match in the list
I have a AutoCompleteBox which I search by using a ProductCode. The item source for the autocompletebox is a list List<Product> where Product has following properties: ...
2
votes
1answer
230 views
Iterate through checkbox list and assign the values from Database to list as selected if DB has the value
I have an asp.net checkbox list with 10 values and i have inserted 4 checked values to database. Now the values are in database as below
1
2
3
4
If i want to reassign the values to Checkboxlist as ...
0
votes
1answer
34 views
Include parent padding in selected state of TextView
I have a RelativeLayout with padding and a TextView child. When the TextView is selected, I want the highlighted area to extend to include the padding of the parent, so that the entire RelativeLayout ...
0
votes
1answer
78 views
ListBox.SelectedItem refuses to be set
What are the likely causes of the exception being thrown in the following code?
var oldItem = this.MyListBox.SelectedItem;
if (this.MyListBox.Items.Contains(newItem))
{
...
0
votes
1answer
18 views
Spinner row touchable region is only text
In my Android app, I have a spinner in the ActionbarSherlock:
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/menu_left_spinner"
...
0
votes
1answer
29 views
Issue with selecting the selcteditem in mvc 2.0 dropdownfor element in view - Always selects first element
Using the sample explanation found on MSDN for:
SelectList Class (http://msdn.microsoft.com/en-us/library/system.web.mvc.selectlist_members(v=vs.90).aspx)
SelectListItem ...
0
votes
1answer
231 views
c# Windows 8: Combobox selected item
I have a ComboBox filled with the names of different movies. (e.g Skyfall)
When I select 'Skyfall' in the ComboBox I would like to change my Image to the logo of the movie (Images/Skyfall.png) The ...
1
vote
1answer
61 views
Bind Selected Item in DXGrid using MVVM
I Have a ViewModel in a WPF Application with this 2 properties
public Customer Customer { get; set; }
public ObservableCollection<Customer> Customers { get; set; }
Inside my view i Have a ...
-1
votes
1answer
236 views
Combobox selected value foregournd color XAML WPF
I want to change the foregournd color for the selected value to White in my Combobox. Is there any way to perform the desire action.
Cheers
Whynottshirt
Style of my ComboBox:
...
0
votes
1answer
40 views
WPF popup closing before treeview selection
I'm working on a project with a treeview inside a popup. I need to have it where the popup remains open until a selection is made on the treeview. At first I tried controlling this with ...
2
votes
1answer
143 views
How to databind SelectedItem of RibbonComboBox
My question is basically this one. I thought it would help to provide some more information and code that makes it easier to reproduce the problem, though.
Working with the ...
0
votes
0answers
65 views
wpf datagrid SelectedCells.Count after SelectedItem changed
I have some ViewModel with property
private Customer _selectedCustomer;
public Customer SelectedCustomer
{
get { return _selectedCustomer; }
set
{
...
1
vote
2answers
392 views
WPF ComboBox selection change on TabItem selection change
I have a combobox in a tab item in MVVM. This tab can be created multiple times in my application (same view, same view model but different instance), so I can switch from one tab to another (but they ...
0
votes
1answer
145 views
Combobox SelectedItem property return always and show always the first item
I have 3 combobox ObjetivosCB, FrecuenciasCB and ResponsablesCB in my form as shows below
public partial class Form_Indicador : Form
{
public Indicador Indicador { get; set; }
private void ...
0
votes
0answers
197 views
Change image icon of currently selected row item in listview android
In my ListView, I have TextView and Imageview in one row. Listview row data are coming from local database. Now when user touches any row for selection, I want to change that row item image. Now again ...
0
votes
0answers
67 views
Add Selected JCheckbox item in JList
I have some problem when I add item in JList according for selected item JCheckbox,
And while i uncheck item the Jlist's item also removed.
This is my code, it just show 1 item in Jlist
...
0
votes
1answer
179 views
How do I get the last row of a bound WPF Datagrid to notify View Model when the SelectedItem Changes?
This is my first post - I welcome any advice on how I post questions should I need it.
I have a WPF DataGrid that has ItemsSource bound to a property called OrderDetails(List Of OrderDetails) and ...
3
votes
2answers
302 views
ListBox.SelectedIndex = -1 is not unsetting the selected item
I have a listbox defined in XAML is follows:
<ListBox x:Name="listLeagues" DisplayMemberPath="LeagueName"
SelectionChanged="listLeagues_SelectionChanged"
SelectedItem="{Binding ...
0
votes
2answers
45 views
Got null reference exception in Loaded event, where the count of SelectedItems in a child datagrid is accessed
Here is the top of the exception stack:
System.NullReferenceException: Object reference not set to an instance of an object.
at xx.TblQcLotListSelectionChanged(Object sender, ...
0
votes
1answer
261 views
How to bind to SelectedItem property of WPF TreeView?
I have adapted the TreeView Control sample project here for use with Entity Framework objects. It works beautifully, but like many others attempting to update collections or properties on their ...
0
votes
1answer
401 views
Set Listbox SelectedItem/Index to be the same as it was prior to moving an item out of it
I've got 2 ListBoxes and have controls to move items to and from one another. When moving an entry from listBox1 into listBox2, the first entry in listBox1 is selected automatically - logical ...
0
votes
1answer
108 views
How to avoid selection in ListBox changing datatemplate?
Im using VS2012 in a WPF application. I have a listbox in a mainwindow. The listbox has the background = null - which means the background equals the mainwindow background.
The listbox has a ...
0
votes
1answer
199 views
Binding to Property of a ComboBox's SelectedItem
I am having a hard time finding the right syntax for binding to a ComboBox's SelectedItem's property. This is the XAML I am trying to use for the binding. Where you see SelectedItem.Mode is the idea I ...
0
votes
3answers
75 views
replacing li background image
I have a menu which I'm mimicking an old tape deck. Each list item has a background image of a button. When an item is selected a new background image shows the button in the down position. however, I ...
0
votes
1answer
274 views
WPF xaml binding ComboBox Background Color to SelectedItem's color
I have made a ComboBox class to enable commands, and I would like to send the ComboBox's Background color as a CommandParameter. I want to bind the ComboBox's Background to the SelectedItem's ...
1
vote
1answer
89 views
How to use Combobox's values in Query
Im using Combobox filled with Tables Names.
When I made Insert command and determine the table name by getting the values of the Combobox
it didn't work
private void Form2_Load(object ...
0
votes
0answers
70 views
How to provide Drag and Drop for Cells and what table will be the best
The Problem
i need to create some type of table that will contain object's(MyColumnHeader,MyCell) as Columnheader and Cell's and should provide Drag and Drop for Row, Column, single cell's, ...
1
vote
0answers
67 views
Use SelectedItem in a WPF Treeview
How can i use the SelectedItem in a treeview? I want to bind i to my Model. Why is this property in the treeview readonly? Is there a xaml Solution without Code-behind?
0
votes
0answers
41 views
Missing a binding somewhere
Working on an mvvm demo project (not homework)
Class Friends which inherits ObservableCollection
Class Friends ToString is FirstName + " " + LastName, etc
ViewModel with a Friends and SelectedFriend ...
0
votes
1answer
66 views
getting item that is focused on in a listwiew using th up and down arrow key
I wish to get the selected item from a listview, but not by clicking on it as i already have a function that does this. I will like to use my up and down arrow to do this.
I have already got a ...
0
votes
0answers
190 views
Check if items exist in listview1 from listview2 selected item
I managed to create a solution for this, but it seems to work only on the first item.
If lview.SelectedItems.Count > 0 Then
On Error Resume Next
Dim item = ...


