Tagged Questions
The selectedindexchanged tag has no wiki summary.
7
votes
5answers
60k views
ASP.NET / C#: DropDownList SelectedIndexChanged in server control not firing
I'm creating a server control that basically binds two dropdown lists, one for country and one for state, and updates the state dropdown on the country's selectedindexchanged event. However, it's not ...
7
votes
14answers
4k views
How to avoid thousands of needless ListView.SelectedIndexChanged events?
If a user select all items in a .NET 2.0 ListView, the ListView will fire a SelectedIndexChanged event for every item; rather than firing an event to indicate that the selection has changed
If the ...
4
votes
4answers
5k views
ASP.NET Dropdown List in Codebehind vs in ASPX page
I am generating a dropdown list in codebehind and cannot get the selectedindexchanged event to fire automatically. It works fine when put directly into the ASPX page, but I need it to be in the ...
3
votes
4answers
2k views
How to implement full row selecting in GridView without select button?
I'm implementing a feature that when the user press on any point in the row in a GridView the row will be selected instead of Select button.
To implement that, I'm using the following code:
...
3
votes
1answer
168 views
ASP.NET combo selectedIndexChanged event is not called
I have written a selectedIndexChanged event for combo on a web page in ASP.NET (C#).
This event is not called. When in debug, the control does not go into the code this event. What can be the reason?
3
votes
3answers
990 views
“SelectedIndexChanged” not firing after “Items.Clear()” in ListBox
For a ListBox (With Selection mode set to One), I wish to track whether there's a selected item or none selected. To do so, I subscribed a method to SelectedIndexChanged and checked if the ...
3
votes
2answers
17k views
ASP.NET / C#: DropDownList SelectedIndexChanged event not firing
My selectedindexchanged event is not firing when I select values in my dropdown lists. These dropdown lists are implemented dynamically in the following code. I have tried changing autopostback and ...
3
votes
3answers
6k views
Fire ListView.SelectedIndexChanged Event Programmatically?
How can one programmatically fire the SelectedIndexChanged event of a ListView?
I've intended for the first item in my ListView to automatically become selected after the user completes a certain ...
3
votes
2answers
10k views
DropDownList OnSelectedIndexChange to 0th index w/out ViewState
I did follow the article TRULLY Understanding ViewState (great article btw) and populating my drop down list is working great. I've even setup a OnSelectedIndexChange event which fires almost as ...
2
votes
2answers
459 views
How can I refresh a dropdownlist during an event of another dropdownlist without refreshing whole web page?
I am developing my first asp.net website, my requirement is to refresh DropDownListB at SelectedIndexChanged event of DropDownListA, I have set AutoPostBack="True" for DropDownListA. Now the ...
2
votes
2answers
354 views
Viewstate issue with first dropdownlist item selection
In my ASP.NET 4.0 website, which uses master pages, I've disabled viewstate sitewide in web.config:
<pages enableViewState="false" />
and am trying to enable it only when absolutely ...
2
votes
3answers
3k views
Dropdownlist in a repeater, selected index changed not working
I have a repeater with a dropdownlist in it. When a user changes its index, I would like a label to change its value. (the ddlSizes values come from a MySQL DB)
Sizes.aspx
<asp:DropDownList ...
2
votes
1answer
114 views
1
vote
2answers
80 views
DropDownList doesn't call SelectedIndexChanged?
I have 7 items in my dropdown list like
<asp:DropDownList ID="DdlSortBy" runat="server" OnSelectedIndexChanged="DdlSortBy_SelectedIndexChanged"
AutoPostBack="True">
<asp:ListItem ...
1
vote
1answer
156 views
get the new selectedValue of the listBox using the OnSelectedIndexChanged event
I have a listBox in a asp.net web form. OnLoad i add items to the listbox and i add a OnSelectedIndexChanged event handler:
public void OnSelectedIndexChanged(object sender, EventArgs eventArgs)
{
...
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
2answers
274 views
How to get selected item in ASP.NET GridView
How can I get the selected item on the SelectedIndexChanging handler when using two SelectCommands? I can get the selected row through e.SelectedRow but I'm unable to get the selected column.
It's ...
1
vote
2answers
1k views
Listbox.selected index change variable assignment
Hi there
What is the correct way of assigning the selected index's value from a listbox to a variable? The user selects an item in a listbox and then the output changes depending on their selection.
...
1
vote
2answers
4k views
Why DropDownList.SelectedIndexChanged event does not fire?
I have a DropDown which is bounded to an ObjectDataSource. On its data bound event, I am adding "--select--" value on the 0 index. I have a LinkButton on the page and on its client click, i am ...
1
vote
2answers
497 views
C# Delegate eventhandler SelectedIndexChanged
I want to pass another value to the method LeCmb_Statut_SelectedIndexChanged, how can I proceed?
I have the code:
SqlDataReader reader = comm.ExecuteReader();
while (reader.Read())
{
...
...
1
vote
2answers
2k views
ASP.Net: DropDownList's SelectedIndexChanged event not firing
This seems to be a frequent issue around the web, although none of the answers seem to have helped.
I have a DropDownList object in my web page. When I click on it and select a different value, ...
1
vote
3answers
2k views
Retreiving data from grid view cell to a text box
i am trying to retrieve a cell data to a textbox , that will happen when i select any row in the grid view , the textbox will take the new value
i already enabled auto post back to the textbox
here ...
1
vote
1answer
413 views
How can I make a TextBox in a GridView not fire TextChanged when SelectedIndexChanged is fired?
I have a TextBox in a TemplateField in a GridView that is supposed to show a checkmark after its TextChanged event.
I also made the GridView row selectable. If I select a row, the entire GridView ...
1
vote
3answers
632 views
ListBox.SelectedIndexChanged - can you determine if it was user intiated?
My question is similar to this: http://stackoverflow.com/questions/905447/how-to-prevent-listbox-selectedindexchanged-event, but I want to ask it a different way.
Is there a simple way to determine ...
1
vote
1answer
1k views
Dropdown OnSelectedIndexChanged not firing
The OnSelectedIndexChanged event is not firing for my dropdown box. All forums I have looked at told me to add the AutoPostBack="true", but that didn't change the results.
HTML:
<html ...
1
vote
3answers
660 views
ListView returns InvalidArgument=Value of '0' - Out of Range Exception
I am attempting to scroll through a database of Album Names using ListView. When I initially select an album, _SelectedIndexChanged returns the appropriate album; however in subsequent attempts to ...
1
vote
1answer
518 views
Combobox selectedindex changed event is getting invoked even when index is not changed
I have few items in combobox, i am selecting one item in that, selectindexchanged event is getting invoked. Then i am clicking on it and selecting the same item ( index is not getting changed) , but ...
1
vote
6answers
4k views
Asp.NET dropdownlist in usercontrol not firing SelectedIndexChanged event
Asp.Net 2.0 framewrok - VB.Net application
I have a UserControl containing a Asp.Net DropDownList.
Things already researched and \ or tried:
The control gets bound to data on page load inside if ...
1
vote
2answers
4k views
DropDownList SelectedIndexChanged event not firing within GridView HeaderTemplate
Good morning,
I am having a very annoying problem; my situation is that I am working on a job board website and specifically the job search page at the moment. I am returning the jobs found into a ...
1
vote
2answers
6k views
C# combobox selected index changed fires old value
I have a situation when I want to change the selected value of a combo box in a windows forms application by using Ctrl-Left ori Ctrl-Right. However if the combobox is the selected control on the form ...
1
vote
2answers
586 views
ASP.net list of dropdownlists - similar to Access continuous form
What I'm looking for is a way to mimic the MS-Access style continuous form within asp.net. In one particular case, I want a control, bound to a datasource which returns a dropdownlist for each row, ...
1
vote
6answers
3k views
How do I Change comboBox.Text inside a comboBox.SelectedIndexChanged event?
Code example:
private void comboBox_SelectedIndexChanged(object sender, EventArgs e)
{
if(some condition)
{
comboBox.Text = "new string"
}
}
My problem is that the comboBox text ...
1
vote
4answers
319 views
When I click a button on the form…my code never reaches it's onclick event
I have a dropdownlist and a textbox with a button on a form. When a button is clicked it does not go to my onclick even in the code but it goes to my dropdownlist's selectedIndexchanged event. How can ...
1
vote
3answers
3k views
Best way to simulate 'SelectedIndexChanged' for ASP.NET DropDownList control with ViewState disabled
I've found many posts where people try to work around the problem of SelectedIndexChanged not working when EnableViewState='false'.
Im a little confused why control state doesnt kick in and allow it ...
0
votes
0answers
19 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
1answer
42 views
ASP.NET : Get data from selected gridview item - linq-to-entities data source
I have an asp.net page with c# code-behind. I have an event that is triggered in c# when the selected index on a gridview changes... This gridview is bound to an entites-data-source, and I need to ...
0
votes
0answers
39 views
how do I change a label's text on dropdownlist selectedindexchanged without causing a postback?
Please if anyone can help.
I have a dropdownlist ddlMonth which has items 1 to 12 and I have a label lblMonthsUsed to calculate depreciation. lblMonthsUsed should display 13 minus whatever month was ...
0
votes
2answers
132 views
Saving dropdownlist selected value to ViewState
I have a dropdownlist that when changed will save the new value into a ViewState variable, so that after a postback, the dropdownlist will retrieve it's selected value from ViewState if previously ...
0
votes
1answer
60 views
how to set and get color from combobox for .NET?
I need to set and get color from combobox for .NET. So far it has not worked for me.
Here is list of color in the combobox item list:
AliceBlue
AntiqueWhite
Aqua
Aquamarine
Azure
Beige
Bisque
Black
...
0
votes
3answers
166 views
Get the new value or index with SelectionChangeCommitted Event of DataGridView Combobox
im using SelectionChangeCommitted to catch the event when a combobox selected index changed, but I can not get it's new value or index.
private void ruleList_EditingControlShowing(object sender, ...
0
votes
1answer
123 views
how to use selected index changed event in multiple listviews in single windows form?
I am working with a simple address book in which i have separate lists for companies and persons on a single window form. I have a problem when i selected an item from first listview it shows values ...
0
votes
3answers
109 views
Drop Down List Event
In my drop-down list, the SelectedIndexChanged event is not firing. I set AutoPostBack="True" but it's still not firing. Setting EnableViewState to True or False makes no difference either.
Here's my ...
0
votes
0answers
44 views
2nd DropdownList triggers/ fires the 1st DropdownList's SelectedIndex_Changed event
Scenario: Three DropdownLists on the same page with AutoPostback enabled. 1st is for Exporting results to Excel. Other 2 are for sorting the results in specific ways.
Problem: When selection is made ...
0
votes
3answers
299 views
Dynamic dropdownlist control doesn't fire Selectedindexchanged event
I need to fire the Selectedindexchanged event of a dynamically created dropdownlist.
I've no code in aspx page. All code are in codebehind.
DropDownList objdropDown = new DropDownList();
...
0
votes
1answer
100 views
For the asp.net radiobuttonlist: getting a list item by FindByValue and setting the Selected attribute not working?
Probably a basic question but I have the following code:
ListItem l = radiolist.Items.FindByValue(mediaTypeID.ToString());
if (l != null)
l.Selected = true;
else
radiolist.SelectedIndex = 0;
...
0
votes
2answers
179 views
Getting selected value of a combobox
public class ComboboxItem {
public string Text { get; set; }
public string Value { get; set; }
public override string ToString() { return Text; }
}
...
0
votes
1answer
90 views
jQuery and Radio Button selections
I have an ASP.NET page that's going to use Html controls to render a page like so (sorry, the programmatic rendering is at the office):
<html xmlns="http://www.w3.org/1999/xhtml">
<head ...
0
votes
4answers
219 views
Selected row GridView won't extract data
I have a GridView which I am filling with data from my database. The data displays perfectly. My problem is that I want to be able to click on a row and then display the information that is in that ...
0
votes
3answers
122 views
selected index of DDL is always equal to Zero in asp .net
I have a Program Class, with properties as Id, ProgramName,ShortName and Code, im my app
I have a ASP DDL like
<asp:DropDownList ID="DDLProgram" runat="server"
OnSelectedIndexChanged ...
0
votes
0answers
110 views
Dropdown list selectedIndexChange in Iframe
I have an iframe in a page which contains a dropdownlist, with is binded by User Fullname. Now when i select a name from the list, it has to get all the user details by dropdown value and fill the ...