The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
15 views

update selected item in a datagrid primefaces

I have a problem with updating selected item in a datagrid. when i click button Modifier a dialog is shown. but in the dialog the value of selected item becomes null. xhtml : <h:form ...
0
votes
2answers
36 views

WPF Combobox SelectedIndex Not Working

I have a WPF user control (FileSelectionView.xaml) with a combo box that displays data. My WPF looks like: <ComboBox Width="250" HorizontalAlignment="Left" ...
0
votes
1answer
15 views

How to bind command correctly in my custom control WPF

Here's my control: <UserControl.Resources> <DataTemplate x:Key="ItemTemplate"> <Border BorderThickness="0.5" BorderBrush="DarkGray"> <Grid Height="30"> ...
1
vote
1answer
24 views

jQuery getting selected item of dynamic listview

I am generating a dynamic collapsible-set with listViews using XML data. It's generated correctly, but I need a click/touch event to display some data before it goes to another page. Here is my code: ...
1
vote
2answers
34 views

SelectedItem on ComboBox

There is a ComboBox in the application which is bound to a collection of items. There are cases that user can select an item from the ComboBox but the selected item might not be ready yet so the ...
1
vote
2answers
32 views

Change WPF UserControl depending on a Property of a TreeViewItem

My application shows a TreeView on the left with hierarchical ordered items which are all the same type. All the items have a dependency property which can have one of two values. This value is an ...
2
votes
1answer
19 views

MVVM Treeview selected item

I hope someone is willing to help me out here. I`m pretty new to MVVM, an after reading manny post and examples i still cant figure this out. i have EF database filled with items and calculations ...
0
votes
1answer
30 views

Qt/c++ QGraphicsItem bound to custom Class

I've been working on a game in C++/Qt. My game consists of some custom Classes with a pointer to a custom class picture that inherits from QGraphicsItem. The Picture class also contains a pointer back ...
0
votes
0answers
22 views

WPF How to Select the same Item with two Instances of an Single UserControl?

I have Creatred a WPFusercontrol with Listbox loaded with Images and going to use this in Winforms, Now i can drag and drop this WPF userControl as many times as i need. Here the problem comes, say if ...
0
votes
2answers
34 views

Setting SelectedItem in ListView when user clicks in ItemTemplate Textbox

I have the following ListView (simplified): <ListView Name="lvwNotes" KeyUp="lvwNotes_KeyUp"> <ListView.ItemTemplate> <DataTemplate> <StackPanel ...
0
votes
0answers
10 views

MVC how to add a button with div and get id of selected

I am getting all the data and images with model as shown below. <div id= "leagueMain" style="padding-left: 52.5px;"> <% foreach (var item in Model.getLeagues) { %> <div ...
0
votes
2answers
95 views

KendoUI Grid Custom Toolbar Action to delete selected items

I'm trying to add a new Custom Toolbar Action to my Kendo UI Grid but am lost on how to get the desired behaviour. I need a button that I can click that will invoke an action method and pass in the ...
0
votes
0answers
18 views

Combobox SelectedItem becomes null after first selectionchanged

I am currently developping a silverlight app and I have a listbox that is loaded via the following line LoadOperation<Supplier> LoSupplier =_Context.Load(_Context.GetSuppliersQuery()); The ...
0
votes
0answers
32 views

In Silverlight, How to bind SelectedItem of ComboBox in a ControlTemplate to a ViewModel Property

I have this code of a ComboBox that works and binds the SelectedItem to a property in my ViewModel: dxe:ComboBoxEdit x:Name="luTeacher" Margin="0,5,0,0" AutoComplete="True" ItemsSource="{Binding ...
0
votes
2answers
40 views

Combobox' SelectedItem bound to a DependencyProperty is not refreshing

I have a combobox, whose SelectedItem is bound to a dependency property. public IEnumerable<KeyValuePair<int,string>> AllItems { get { return _AllItems; } set { ...
1
vote
2answers
62 views

Can't get Selected Item Index in custom ArrayAdapter on my ListView

I have problem with my Android project, because I can't get selected item index from my List with my own ArrayAdapter. I've tried few examples from tutorials but they don't work. What is the solution? ...
0
votes
2answers
69 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
43 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
97 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
69 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
112 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
65 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
34 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
109 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
77 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
52 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
46 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
56 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
28 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
144 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
103 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
54 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
102 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 ...
0
votes
1answer
49 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
58 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
108 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
364 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
37 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
81 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
24 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
38 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
291 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
101 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
339 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
49 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
2answers
229 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
77 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
420 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
181 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 ...
1
vote
0answers
214 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 ...

1 2 3 4 5 10