1
vote
2answers
2k 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" …
1
vote
3answers
74 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";
…
0
votes
0answers
82 views
SelectedValue not binding for some of the Html.dropdownlist in asp.net mvc???
I got 3 html.dropdownlists out of which only for 1 its the setting the selectedvalue.How come its binding for one of the dropdownlist not for the other 2.In the Quick Watch,all the values are proper, …
1
vote
2answers
129 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.
0
votes
0answers
116 views
SelectedValue which is invalid because it does not exist in the list of items
I encounter this problem repeatedly, and haven't a clue what is causing it. I get an exception in the DataBind: "SelectedValue which is invalid because it does not exist in the list of items". Here …
0
votes
3answers
251 views
How to get selected value after clone with jQuery?
Here is my complete testing code,which failed to get the value:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html …
0
votes
2answers
2k 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 …
0
votes
0answers
268 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
2answers
265 views
WPF: SelectedValue always null
In the following example SelectedValue of TabControl is always null. Why?
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" …
0
votes
0answers
80 views
Implement SelectedValues property on WPF control
I'm working on creating a CheckedComboBox WPF control. I want to add a SelectedValuesProperty that I could bind through via XAML. I've tried a few different things and haven't been able to get it to …
0
votes
0answers
780 views
Populating Nested Repeater Drop Downs C# .NET Linq
I have nested repeaters that create a table with each cell consisting of 3 drop downs. I set the selected value of the drop downs by looping through the repeaters and assigning them to the result of …
1
vote
3answers
859 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 …
0
votes
6answers
2k views
Trouble with selected radiobuttonlist value on postback vb.net
I have a radio button list on a page that is used to configure products. when the page loads the first time the first list of options is displayed. you select one of them then click a "Next Step" …
