Tagged Questions
The selectedvalue tag has no wiki summary.
8
votes
3answers
3k views
Difference between SelectedItem, SelectedValue and SelectedValuePath
What is the difference betweeen the following:
SelectedItem
SelectedValue
SelectedValuePath
All these dependency properties are defined in Selector class. I often confuse SelectedItem with ...
5
votes
3answers
4k views
Combobox doesn't bind correctly to SelectedItem
I have two projects. One is working and the other isn't however the differences between them is nothing that I think "should" be of any importance. The first project is the one that is broken and it ...
4
votes
2answers
12k views
ASP:DropDownList in ItemTemplate: Why is SelectedValue attribute allowed?
This piece of code
<asp:DropDownList runat="server" ID="testdropdown" SelectedValue="2">
<asp:ListItem Text="1" Value="1"></asp:ListItem>
<asp:ListItem Text="2" ...
4
votes
1answer
5k views
Binding a ComboBox to an IList and using SelectedValue
I have a ComboBox set up as follows, where KVPList is an IList (of KeyValuePair if it matters):
comboBox.DisplayMember = "Value";
comboBox.ValueMember = "Key";
comboBox.DataSource = KVPList;
I then ...
3
votes
3answers
2k views
combobox selected value in c#
I am working on C#.net windows application. i am filling combobox on my winform by using follows.
cmbEMPType.DataSource = objEntityManager.EmployeeTypes();
cmbEMPType.DisplayMember = "EMPTypeName";
...
2
votes
1answer
87 views
treeView_selectedItemChanged event handler
I have a wpf c# application that gets the name of household chores from a text file and then loads then into a several lists such as a list of nameOfChore, a list of ChorePriority, and then load the ...
2
votes
1answer
453 views
ASP.NET MVC 3 @Html.DropDownListFor ignoring selectedValue
In my asp.net MVC 3 project I would like to create a contact that's related to a company.
You can either directly create a contact OR go via the company details view and add a new contact passing the ...
2
votes
2answers
309 views
WPF ListView SelectedValue not being set
I've looked at a few solutions but nothing has worked yet for me.
I'm using MVVM for this project and have a ListView that I can't set the SelectedItem property.
If this is my (simplified) XAML.
...
2
votes
1answer
2k views
Problems with AJAX CascadingDropDown and DropDownList SelectedValue in EditItemTemplate
I am having problem in EditItemTemplate of FormView.
When I use such code in InsertItemTemplate everything works:
<asp:DropDownList ID="Lic_PosiadaczLicencjiIDDropDownList" runat="server"
...
2
votes
2answers
2k views
.NET 3.5 Listbox Selected Values (Winforms)
I am BATTLING to get the selected values (please note VALUES not TEXT) from a Winforms Listbox that has multi-select enabled and has been bound to a database table getting the Name (as DisplayMember) ...
2
votes
4answers
387 views
.Net ComboBox Binding Issue
I have 2 comboboxes, each are bound to the the same DataTable like so:
channelTypeCB.DataSource = SynergyData.ds.Tables["ChannelTypes"];
channelTypeCB.DisplayMember = "channelType";
...
1
vote
2answers
54 views
Binding Combobox SelectedValue from bound value in UserControl grid
I've spent the last two days trying to make this happen, and I can't figure out what I am missing. I have a WPF user control with a grid and within that grid are text boxes and comboboxes. The ...
1
vote
3answers
48 views
Selecting values of two radio buttons jQuery
I have the following HTML:
<div class="row1">
<input type="radio" name="group1" value="0" checked="checked"/>Zero
<input type="radio" name="group1" value="1" />One
...
1
vote
0answers
32 views
UIPickerView (FlipsideViewController) display value in MainViewController
Using the flipsideViewControllerDidFinish method in my MainViewController class, I can display the values of various controls that are on my subview FlipsideViewController. e.g. a UIDatePicker by ...
1
vote
1answer
52 views
Combobox selectedValue missing in result of XamlWriter.Save
Few day ago I started to play with dynamic Xaml. I have noticed that using XamlWriter.Save method to serialize Combobox causes absence of selectedValue in result string. Text of selected element is in ...
1
vote
0answers
45 views
Issue with dropdownlist in asp.net
i have a problem with the SelectedIndexChanged event of dropdownlist,
on the page load i am checking for the id and make that item selected in the dropdownlist.
now on the SelectedIndexChanged of the ...
1
vote
0answers
63 views
How do I set SelectedValue of Dropdown in Sharepoint Designer?
I just started using Sharepoint Designer to create forms & screens for end-users. When I use ASP Dropdownlist or Sharepoint Dropdown controls, I am unable to set the selected-value of the ...
1
vote
2answers
228 views
DropDownList's SelectedValue is blank — why?
So here we go. I've got two drop down lists on a "customer" record. The first one is called "Store". The second one is called "StoreWarehouse". When the user selects a "Store" value, that filters ...
1
vote
5answers
733 views
ASP.Net DropDownList selected value
I have a feeling I'm missing something really obvious, I'm not able to capture the selected value of my DropDownList; the value renaubs the first item on the list. I have set the DropListList ...
1
vote
2answers
94 views
Finding an item in asp.ListView with Value when paging is enabled
I'm trying to find the selected Item in an aspx ListView that is on a separate page, then switch the page and select the item. I have the value property of the ListViewItem I am looking for, but ...
1
vote
1answer
86 views
ASP.NET MVC Drop Down List
I am making some changes to already existing ASP.NET MVC 1 app where there is a form with a dropdown list that has all 50 states hard coded into the HTML. After filling out the form the user can ...
1
vote
1answer
392 views
Dynamic dropdownlist in repeater, ASP.NET
Basically, the codes I have is from here : http://ranafaisal.wordpress.com/2009/02/17/dynamically-adding-removing-textboxes-in-aspnet-repeater/
However, the thing is that, I will need a dropdownlist ...
1
vote
3answers
204 views
All GridView rows disappear while selecting a row
Please consider the values in comments which I got in debug mode:
protected void FilesGrid_SelectedIndexChanged(object sender, EventArgs e)
{
int selected = FilesGrid.SelectedIndex; // selected = ...
1
vote
4answers
221 views
Dropdown SelectedValue Set Problem
drpDwnLstBillContact.SelectedValue = billContactId.ToString();
drpDwnLstRegContact.SelectedValue = regContactId.ToString();
drpDwnLstTechContact.SelectedValue = techContactId.ToString();
Hi guys, ...
1
vote
3answers
1k views
Set SelectedValue of DropDownList inside UpdatePanel
I've got a set of cascading dropdowns, but I want the default selectedvalue to be there when when page loads though.
Right now, my dropdownlist is defaulting to the first value in the DDL.
(ASP.NET ...
1
vote
2answers
473 views
ListBox not updating on SelectedItems.Add()
I'm trying to bind a multiple selection listbox to a list<int>(IdProv) I have. what I do is binding the SelectedValue to a property that adds or removes that value to the list<int>. both ...
1
vote
1answer
392 views
Set Selected Item of WPF Combobox to User Setting
I have a combo box with an item source set as a collection of 'Category'. The SelectedValuePath is the CategoryID property. I have a user setting 'DefaultCategory' that is an integer of which should ...
1
vote
1answer
700 views
Problem with binding a datagrid's selected item to treeview's selected value
I have problems with binding a treeview to a datagrid's selected item.
they are in different views, but datagrid's selected item is already passed to treeview's related viewmodel.
There is a ...
1
vote
1answer
279 views
Access WebUserControl DropDown Selected Value
I have a dropdown inside a webusercontrol which I want to use on 5 pages. I want to save the selected value of the dropdown from the page.
I tried to access it using below method, but its not ...
1
vote
2answers
536 views
WPF Combobox SelectedItem hell
Im having a very funny issue in WPF
Im creating a Combobox through code, and adding it to a control.
When I set the Combobox.SelectedItem or Combobox.SelectedIndex or Combobox.SelectedValue I am ...
1
vote
4answers
5k views
How to get selected row of detail grid in Master-Detail GridView?
I'm having a problem on getting the selected rows values of a detail grid. I have master-detail grid in a popup control and it works fine. I also enabled the enable selection to have checkboxes but ...
1
vote
2answers
248 views
how to get selected value from databound multiextended listbox
I am using visual studio 2008 with vb as my language. I have a databound multiextended listbox. I need to get the selected value for each item that is selected. I have searched for two weeks trying to ...
1
vote
1answer
1k views
Combobox with collection view itemssource does not update selection box item on changes to the Model
Sorry for the earlier lengthy post. Here is my concise (!) description.
I bind a collection view to a combobox as a itemsSource and also bind its selectedvalue with a property from my view model. I ...
1
vote
0answers
847 views
WPF Combobox loaded with list collection view fails to update selection on change (MVVM)
Ok here is the deal (a bit wordy but I hope you will get the idea)
I use MVVM for binding properties of a combo. The combobox is bound to a ListCollectionView with source collection of employee ...
1
vote
1answer
784 views
Do WPF ComboBox SelectedIndex and SelectedValue have different behavior on SelectionChanged event?
I got this cbxJobPosition_SelectionChanged firing as expected. The problem is when a external method tries to set cbxJobPosition.
cbxJobPosition is databinded with a list of objects of type ...
1
vote
2answers
1k views
Bind SelectedValue of ASP.net DropDownList to custom object
Currently I have a DropDownList inside a FormView, databound to an ObjectDataSource. This is the DropDownList, which has it's own datasource, which returns a List of Departments:
<asp:DropDownList ...
1
vote
1answer
367 views
Odd Binding behavior in WPF
I will try and explain this as concise as possible. I have 2 objects, the first which we will call object A that has an Id property and the second we will call object B, which has a ParentId property. ...
1
vote
2answers
1k views
Getting SelectedValue back from a DropDown in ASP.NET MVC (C#) using Entity Framework
Sorry if this is a repeated question, I scanned the related questions and didn't see anything obvious.
I'm using an EditModel with an Entity object, along with two SelectLists in it. The problem is, ...
1
vote
1answer
108 views
Custom SelectedValue attribute
I am creating a completely custom (only inherits from WebControl) combobox/dropdownlist search control with autoComplete capabilities.
JQuery handles assigning the onhover and onclick events for ...
1
vote
2answers
269 views
How to set one of the values in dropdownlist as selectedvalue in asp.net mvc?
I have a dropdownlist with values -1,1,2 and text A,B,C i wanna set B as selectedValue by default when the page is loaded.
Something which can be done at the Page Level i.e in aspx or ascx.
1
vote
1answer
809 views
Bind WPF ComboBox SelectedValue-property to multiple objects
Let's say I have a list of Customers (List) and each Customer has a State-property.
Is it possible to bind the SelectedValue of a ComboBox, so that it shows (has a SelectedValue of) e.g. "WA" if all ...
0
votes
1answer
16 views
Android - Getting selected row values in a table
I'm getting data from mssql dynamically in my table. I want to get values in selected row as String. For example i want to get "99" , "Yonca" , "Lodi" values for this screen. How can i do this? Here ...
0
votes
0answers
18 views
asp.net dropdownlist selected value lost on postback
I have an Asp.net page with a DropDownList control and a RadGrid control. The drop down list is set to automatically post back at which point the grid is bound to its datasource based on the selection ...
0
votes
0answers
15 views
gridview Dropdownlist.selectedvalue
What I am trying to do is to set the dropdownlist1.selectedValue =
c.RegionDescription inside onDataBound event of dropdownlist1.
what happens is when I click on Edit on Gridview row, the ...
0
votes
1answer
18 views
Set HTML dropdownlist selected item using value from ViewModel
I have an HTML dropdown list:
<select name="status">
<option value="close" >Close Task</option>
<option value="open" >Reopen Task</option>
...
0
votes
2answers
143 views
Binding Combobox with Dictionary object, but setting selected value in code behind not taking effect
<Combobox ItemsSource="{Binding Path=Delimiters}" DisplayMemberPath="Key"
SelectedValue="{Binding Path=SelectedDelimiter, UpdateSourceTrigger=PropertyChanged}" />
that is my combobox ...
0
votes
0answers
57 views
Set SelectedText of a CascadingDropDown to match TextBox content
I'm using the CascadingDropDown from the AjaxToolkit. I need to set the selected text to match the text content of a TextBox control on the page. I know the CascadingDropDown has a SelectedValue ...
0
votes
1answer
30 views
'System.Web.UI.WebControls.Repeater' does not contain a property with the name 'SelectedValue'
I am not sure what I am supposed to write in the code behind for my vb.net project. I have a repeater that filters a gridview. When trying to declare the scalar variable @CompanyID, I get the error I ...
0
votes
1answer
63 views
ComboBox EditValue Assignment will fire selectedValueChanged event?
I have the code below:
this.NameComboBox.EditValue = value;
I find when value is not empty, it will automatically fire the event:
NameComboBox_SelectedValueChanged
Acutally I replace the comboBox ...
0
votes
1answer
76 views
SelectedValue after updating dropdown with json/webmethod
I have a dropdown list to which items are added via a json/webmethod call - an "add new item to the box" type of solution. Now - this problem is, that if I select the new value, the ...