active questions tagged dropdownlist - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T01:07:28Zhttp://stackoverflow.com/feeds/tag/dropdownlisthttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1816717/add-item-to-databound-dropdownlist0Add item to databound DropDownListAlexander Corotchi2009-11-29T20:48:10Z2009-11-29T20:58:07Z
<p>Hi, </p>
<p>I have dropdownlist control where item lists are coming from database </p>
<pre><code><asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True"
DataSourceID="SqlDataSource2" DataTextField="semester"
DataValueField="semester">
</asp:DropDownList>
</code></pre>
<p>But I want to add at the beginning 1 list item more "ALL" .. How can I add this one .</p>
<p>Thanks ! </p>
http://stackoverflow.com/questions/499526/c-asp-net-gridview-bind-dropdownlist-to-listkeyvaluepairint-string1C# asp.net gridview bind dropdownlist to List<keyvaluePair<int, string>>Jon2009-01-31T20:45:38Z2009-11-28T18:13:19Z
<p>Hi all,</p>
<p>OK,... so I have a number of tables in my DB that hold references to an key value pair:</p>
<p>types of phone numbers:</p>
<p>1 - Home
2 - Work
3 - Mobile
4 - Fax</p>
<p>etc</p>
<p>So I have a table for the types and when they are used in other tables they reference the int value as a foreign key. When I have been pulling them out I have been storing them as keyvaluepair items in the class that is using them.</p>
<p>When I needed to get a list of them I thought I would just create a List<> of them rather than use two different types of data types to get the same data.</p>
<p>My problem has arrived when I need to populate a dropdownlist within a gridview when I am using the edittemplate bit. If I use a datasource to pull this out it will write [1 Home] in the text rather than put the int as the value and Home as the text to display.</p>
<p>I guess I have a multiple part question really.</p>
<p>One:</p>
<p>Am I being stupid? Is this a really bad way to get the data out and store it (the keyvaluepair part)? Should I just be storing it all in a datatable? I didn't like to put it all in datatable. I have my DAL taking to my BLL and have tried to encapsulate everything as objects or List<>'s of objects rather than tables of everything. Most the time this has worked well.</p>
<p>Two:</p>
<p>If I was using some object rather than a datatable to bind into my objectdatasource for the dropdownlist, how can I set the currently selected value, rather than have it just have the first item in the list selected?</p>
<p>Thank you</p>
<p><strong>EDIT</strong></p>
<p>As was pointed out below I was being an idiot and just needed to set the DataValueField and DataKeyField.</p>
<p>To get the dropdownlist to bind I just had to do:</p>
<p>SelectedValue='<%# DataBinder.Eval(Container, "DataItem.PhoneType.Key") %>'</p>
<p>The reason I didn't see that one straight away was becuase it was not showing up in my intellisense but when I manually typed it in, it worked.</p>
http://stackoverflow.com/questions/1807513/how-will-i-call-the-on-change-event-of-the-ajax-dropdownlist0how will I call the on change event of the ajax dropdownlist?Ritz2009-11-27T08:52:10Z2009-11-27T10:07:19Z
<p>Hello All,</p>
<p>In my MVC application I am using an ajax dropdownlist and an ajax Cascading dropdownlist I want to write the onChange event of the cascading dropdownlist please tell me what shall I do.</p>
<p>I am posting the view page that I am using and the js file that creates the cascading dropdownlist.Please tell me where all the places I need to do the changes.</p>
<p><em>The view Page is as follows</em></p>
<pre><code><html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Index1</title>
<script src="../../Scripts/MicrosoftAjax.js" type="text/javascript"></script>
<script type="text/javascript" src="../../Scripts/MicrosoftMvcAjax.js"></script>
<script type="text/javascript" src="../../Scripts/CascadingDropDownList.js"></script>
</head>
<body>
<div>
<label for="Makes">Car Make:</label>
<%= Html.DropDownList("Makes")%>
&nbsp;&nbsp;
<label for="Makes">Car Model:</label>
<%= Html.CascadingDropDownList("Models", "Makes")%>
<br />
<%=Html.TextBox ("id",ViewData ["id"]) %>
</div>
</body>
</html>
</code></pre>
<p>The javascript where the cascading dropdown list is being formed:</p>
<pre><code>public static class JavaScriptExtensions
{
public static string CascadingDropDownList(this HtmlHelper helper, string name, string associatedDropDownList)
{
var sb = new StringBuilder();
// render select tag
sb.AppendFormat("<select name='{0}' id='{0}'></select>", name);
sb.AppendLine();
// render data array
sb.AppendLine("<script type='text/javascript'>");
var data = (CascadingSelectList)helper.ViewDataContainer.ViewData[name];
var listItems = data.GetListItems();
var colArray = new List<string>();
foreach (var item in listItems)
colArray.Add(String.Format("{{key:'{0}',value:'{1}',text:'{2}'}}", item.Key, item.Value, item.Text));
var jsArray = String.Join(",", colArray.ToArray());
sb.AppendFormat("$get('{0}').allOptions=[{1}];", name, jsArray);
sb.AppendLine();
sb.AppendFormat("$addHandler($get('{0}'), 'change', Function.createCallback(bindDropDownList, $get('{1}')));", associatedDropDownList, name);
sb.AppendLine();
sb.AppendLine("</script>");
return sb.ToString();
}
}
public class CascadingSelectList
{
private IEnumerable _items;
private string _dataKeyField;
private string _dataValueField;
private string _dataTextField;
public CascadingSelectList(IEnumerable items, string dataKeyField, string dataValueField, string dataTextField)
{
_items = items;
_dataKeyField = dataKeyField;
_dataValueField = dataValueField;
_dataTextField = dataTextField;
}
public List<CascadingListItem> GetListItems()
{
var listItems = new List<CascadingListItem>();
foreach (var item in _items)
{
var key = DataBinder.GetPropertyValue(item, _dataKeyField).ToString();
var value = DataBinder.GetPropertyValue(item, _dataValueField).ToString();
var text = DataBinder.GetPropertyValue(item, _dataTextField).ToString();
listItems.Add(new CascadingListItem(key, value, text));
}
return listItems;
}
}
public class CascadingListItem
{
public CascadingListItem(string key, string value, string text)
{
this.Key = key;
this.Value = value;
this.Text = text;
}
public string Key { get; set; }
public string Value { get; set; }
public string Text { get; set; }
}
</code></pre>
http://stackoverflow.com/questions/1805413/php-multiple-dropdown-box-form-submit-to-mysql-with-or1PHP Multiple Dropdown Box Form Submit To MySQL with ORJB Hurteaux2009-11-26T19:53:06Z2009-11-26T20:42:25Z
<p>Hello,</p>
<p>This question is similar to <a href="http://stackoverflow.com/questions/944158/php-multiple-dropdown-box-form-submit-to-mysql">http://stackoverflow.com/questions/944158/php-multiple-dropdown-box-form-submit-to-mysql</a>, but with a twist.</p>
<p>Let's assume we have an HTML multi-select, which gets submitted to a PHP backend.</p>
<p>How do you elegantly create a mysql request with an OR condition on the values of a multi-select?</p>
<p>For instance I have a multi-select with a list of sports.
How do do:</p>
<pre><code>SELECT * FROM sports WHERE sport.name=:sport1 OR sport.name=:sport2 OR sport.name=:sport3...
</code></pre>
http://stackoverflow.com/questions/1602832/ajax-beginform-updatetargetid-doesnt-work-with-dropdownlist1Ajax.BeginForm UpdateTargetId doesn't work with DropDownListTyler2009-10-21T18:51:45Z2009-11-26T16:43:34Z
<p>Code:</p>
<pre><code><% using (Ajax.BeginForm("GetResourcesByProject", "CreateRequest", new AjaxOptions { UpdateTargetId = "ResourceListDiv"}))
{
Response.Write(Html.DropDownList("SelectProject", Model.ProjectList, "Select Project", new { onchange = "this.form.submit();" }));
} %>
</code></pre>
<p>When I run the page I get the correct controller action to trigger with the right data in the form collection:</p>
<pre><code>public ActionResult GetResourcesByProject(FormCollection formCollection)
</code></pre>
<p>{
var resourceModels = (from project in POTSModel.ProjectList
where project.Id == Convert.ToInt32(formCollection["SelectProject"])
select project).First().Resources;</p>
<p>return PartialView("ResourceList", resourceModels);
}</p>
<p>It works fine from an Ajax.ActionLink like this:</p>
<pre><code><%= Ajax.ActionLink("Select", "GetResourcesByProject", "CreateRequest", new { projectId = item.Id }, new AjaxOptions { UpdateTargetId = "ResourceListDiv" })%>
</code></pre>
<p>When the post happens I'm navigated to a new page instead of staying on the existing page and updating the contents of the div.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1803999/dynamically-populate-dropdownlist0dynamically populate dropdownlistanay2009-11-26T14:31:02Z2009-11-26T15:52:38Z
<p>hey..</p>
<p>i m using following code to populate dropdownlist dynamically...
i want that value should be the subject id and text should be the sub_desc...but code is not working the value does not contain the sub_ids...so whats wrong with the code?? </p>
<p><strong>(sub_id is integer field)</strong></p>
<pre><code> public void Populate()
{
string ConnectionString = (string)ConfigurationManager.AppSettings["ConnectionString"];
SqlConnection conn = new SqlConnection(ConnectionString);
SqlCommand popCmd = new SqlCommand("select sub_id,sub_desc from subject", conn);
try
{
conn.Open();
ddlSub.Items.Clear();
SqlDataReader subs;
subs = popCmd.ExecuteReader();
ddlSub.DataSource = subs;
ddlSub.DataValueField = "sub_id";
ddlSub.DataTextField = "sub_desc";
ddlSub.DataBind();
conn.Close();
}
catch (Exception ex)
{
lblMsg.Visible = true;
lblMsg.Text = ex.ToString();
}
}
</code></pre>
<p>thanx...</p>
http://stackoverflow.com/questions/1802960/javascript-textbox-autocomplete-clears-drop-down-selection0Javascript textbox autocomplete clears drop down selectionRich2009-11-26T10:46:07Z2009-11-26T10:52:40Z
<p>Morning folks.</p>
<p>Novice Rich here once again requesting assistance.</p>
<p>I have just started dabbling with javascript and although I have set up a few onclick/change for setting the focus of radio buttons,that's pretty much my limit.</p>
<p>In my c# code behind, I would like to have an 'onchange' function whereby once a client starts to type in my autocomplete textbox, a drop down list (which is likely to have been populated previously) is reset/cleared to it's original state.</p>
<p>Anyone got any ideas how to do this?</p>
<p>(Chances are I haven't exp[lained myself very well here)</p>
http://stackoverflow.com/questions/1773768/non-framework-implementation-of-a-hierarchical-drop-down-for-firefox0Non framework implementation of a hierarchical drop down for Firefox.dacracot2009-11-20T23:05:25Z2009-11-23T17:05:11Z
<p>I need a hierarchical drop down <code><select><option/></select></code> for use within a browser, preferably Firefox. I'd rather not use a framework like jQuery. Please spare me the questions as to why.</p>
http://stackoverflow.com/questions/1778699/problem-no-headervalue-when-list-is-empty-sselect0Problem: no headerValue when list is empty <s:select>Muhammad Shahid2009-11-22T13:30:04Z2009-11-23T17:04:08Z
<p>i am using struts 2 </p>
<p>i have a tag </p>
<pre><code><s:select list="list" headerKey="All"
headerValue="All" multiple="true" name="selectedList"
listKey="id" multiple="false" theme="simple"
listValue="Name" size="20">
</s:select>
</code></pre>
<p>When the List is empty it shows the "ALL" in the drop down, i dont want the headerValue to come in drop down when the "list" is empty (list.size==0)
Also i dont want to supply the headerKey and headerValue from server.</p>
<p>any help ??????</p>
http://stackoverflow.com/questions/810265/integrating-jquery-with-ajax-using-mvc-for-ddl-html-dropdownlist0integrating jquery with AJAX using MVC for ddl/html.dropdownlistneedhelp2009-05-01T05:09:44Z2009-11-22T10:00:02Z
<p>Hi guys, </p>
<p>the situation:
a user on the page in question selects a category from a dropdown which then dynamically populates all the users of that category in a second dropdown beside it.</p>
<p>all the data is being retrieved using LinqtoSQL and i was wondering if this can be done
a) using html.dropdownlist in a strongly typed view?
b) using jquery to trigger the ajax request on selected index change instead of a 'populate' button trigger?</p>
<p>sorry i dont have code as what i was trying really wasnt working at all. I am having trouble with how to do it conceptually and programatically!</p>
<p>will appreciate any links to examples etc greatly!</p>
<p>thanks in advance!</p>
<p>EDIT:</p>
<p>this is kind of what i was trying to achieve.. first the
ViewPage:</p>
<pre><code> <script type="text/javascript">
$(document).ready
function TypeSearch() {
$.getJSON("/Home/Type", null, function(data) {
//dont know what to do here
});
}
</script>
<p>
<label for="userType">userType:</label>
<%= Html.DropDownList("userType") %>
<%= Html.ValidationMessage("userType", "*") %>
<input type="submit" runat="server" onclick="TypeSearch()" />
<label for="accountNumber">accountNumber:</label>
<%= Html.DropDownList("accountNumber") %>
<%= Html.ValidationMessage("accountNumber", "*") %>
</p>
</code></pre>
<p>Then home controller action:</p>
<pre><code> public ActionResult Type()
{
string accountType = dropdownvalue;
List<Account> accounts = userRep.GetAccountsByType(accountType).ToList();
return Json(accounts);
}
</code></pre>
http://stackoverflow.com/questions/1773863/changing-styling-of-datagridviewcomboboxcell-from-dropdownlist-to-dropdown1Changing styling of DataGridViewComboBoxCell from DropDownList to DropDown?John W2009-11-20T23:27:34Z2009-11-20T23:35:16Z
<p>(This question is narrower in scope than <a href="http://stackoverflow.com/questions/1759720/how-to-switch-between-datagridviewtextboxcell-and-datagridviewcomboboxcell">this question</a> I asked earlier.)</p>
<p>Say I have a DataGridViewComboBoxColumn, and want to switch the style of the ComboBox control between DropDownList and DropDown (mainly for the text field editing capability). I'd like to do this on a row-by-row basis (at the DataGridViewComboBoxCell level).</p>
<p>How would I do that programatically?</p>
<p>Or maybe a different way of asking: How do I access the ComboBox control given an object of type DataGridViewComboBoxCell?</p>
<p>(I'm in VB 2005.)</p>
<p>Thanks as always.</p>
http://stackoverflow.com/questions/1769201/drop-down-list-in-mvc0drop down list in MVCRitz2009-11-20T09:02:51Z2009-11-20T14:58:33Z
<p>Hello All,
I am absolutely new to the MVC application.I want a dropdown list on my form I have done it this way</p>
<pre><code>"<%= Html.DropDownList("Categories", (IEnumerable<SelectListItem>)ViewData["Categories"])%>"
</code></pre>
<p>I am sending the <code>viewdata[Categories]</code> from the controller class file.</p>
<p>this way</p>
<pre><code>IList allCategories = _dropdownProvider.GetAllCategories();
ViewData["Categories"] = new SelectList(allCategories, "catid", "catname");
</code></pre>
<p>Now my requirement is that when the user selects a particular category from the dropdownlist its id should get inserted in the database,
The main problem is category id I want to insert the category id in the product table where the category Id is the foreign Key.</p>
<p>Please tell me how can I do this.</p>
http://stackoverflow.com/questions/353414/have-to-click-twice-to-expand-dropdownlist-in-asp-net1Have to click twice to expand DropDownList in ASP.NETDilbertDave2008-12-09T16:39:35Z2009-11-19T17:55:57Z
<p>I have inherited an ASP.NET 2.0 project and one of the things I have noticed is that the user has to click a <code>dropdownlist</code> twice in order to expand it - why is this?</p>
<p><strong>Sequence of Events</strong></p>
<ol>
<li>The first click with give the control focus and the second will expand it.</li>
<li>The application uses Master/Content pages and is Ajax enabled.</li>
</ol>
<p>It looks like this doesn't happen in IE6, but does happen in IE7.</p>
http://stackoverflow.com/questions/1338576/how-to-get-the-value-of-datafieldtext-or-selectedtext-of-the-selectlist-in-asp-ne0How to get the value of datafieldtext or selectedtext of the selectlist in asp.net mvc?kurozakura2009-08-27T02:34:34Z2009-11-19T11:00:06Z
<p>No javascript\AJAX is to be used.</p>
http://stackoverflow.com/questions/130020/dropdownlist-control-with-optgroups-for-asp-net7Dropdownlist control with <optgroup>s for asp.net?Nick Crowther2008-09-24T21:12:08Z2009-11-18T20:45:49Z
<p>Can anyone recommend a dropdownlist control for asp.net (3.5) that can render option groups? Thanks</p>
http://stackoverflow.com/questions/1751861/do-controls-in-firefox-receive-mouse-events-when-their-css-visible-property-is-fa0Do controls in Firefox receive mouse events when their CSS visible property is false?Triynko2009-11-17T21:17:18Z2009-11-17T22:03:55Z
<p>I'm having a problem with FIREFOX. I have an invisible list control over a drop-down control (html 'select'). Don't mind why, but I will say that the over-layer is a pop-up that appears as part of another custom control.</p>
<p>Even though it's hidden, it's preventing me from clicking on the underlying drop-down control, making the underlying control seem disabled. It's not disabled though, because I can tab over to it. I just can't click on it. I know it's the overlay causing the problem, because I moved the underlying control off to the side and it works again.</p>
<p>Is this a bug in Firefox? This isn't like setting a translucency value; it's disabling rendering of the control altogether, so I don't think such an invisible control should be intercepting mouse events.
This behavior does not occur in Internet Explorer.</p>
<p>Perhaps there is some other CSS property I can set in JavaScript to toggle its mouse event capturing ability along with its visibility.</p>
<pre><code>dd = document.getElementById('lstStudents');
if (dd.style.visibility == 'hidden') dd.style.visibility = 'visible'; else dd.style.visibility = 'hidden';
</code></pre>
<p>Update: I just read a description for the CSS visibility value "hidden" that read "The element is invisible (but still takes up space)". So I guess I'll have to set it's height to zero along with setting it's visibility to solve this problem.</p>
http://stackoverflow.com/questions/1748469/show-div-onchange-of-dropdownlist-value-using-javascript0show div onchange of dropdownlist value using javascriptravi2009-11-17T12:17:27Z2009-11-17T12:17:27Z
<p>i have a dropdownlist and i want to show a <strong>div</strong> ochange event using javascript but it says <strong>object required</strong></p>
<p>aspx code</p>
<pre><code><asp:DropDownList runat="server" ID="lstFilePrefix1" onchange="showTR();" >
<asp:ListItem Text="Prefix1" Value="Prefix1" />
<asp:ListItem Text="Prefix2" Value="Prefix2" />
<asp:ListItem Text="Prefix3" Value="Prefix3" />
<asp:ListItem Text="Prefix1 and Prefix2" Value="Prefix1 and Prefix2" />
<asp:ListItem Text="Prefix2 and Prefix3" Value="Prefix2 and Prefix3" />
</asp:DropDownList>
</code></pre>
<p>and javascript code inside .js file</p>
<pre><code>function showTR() {
var dropdown = document.getElementById( "<%=lstFilePrefix1.ClientID%>" ); // Get a reference to the dropdown (select) element
var selectedItemValue = dropdown.options[ dropdown.selectedIndex ].value; // use the dropdown reference to get the selected item's value
var div2 = document.getElementById( "data" ); // Get a reference to div2
if( selectedItemValue == 'Prefix2' ) {
div2.style.dispaly= "block";// If the selectedItemValue is 'Action', show div2
} else {
div2.style.display = "none"; // Otherwise, hide div2
}
}
</code></pre>
http://stackoverflow.com/questions/1747045/dropdownlist-autopostback0dropdownlist autopostback??ravi2009-11-17T06:53:14Z2009-11-17T10:55:47Z
<p>below is my dropdownlist with autopostback true now when i select prefix1 it gives me a post back but when i select it again it doesnt. I have to select prefix2 item first and then go back to prefix1 for it to postback again. Its like as if its postbacking only with <code>SeletedIndexChange</code>.</p>
<p>I need postback evrytime I choose in my dropdownlist even if its the same item:</p>
<pre><code><asp:DropDownList runat="server" ID="lstFilePrefix1" AutoPostBack="True"
OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged" >
<asp:ListItem Text="Prefix1" Value="Prefix1" />
<asp:ListItem Text="Prefix2" Value="Prefix2" />
<asp:ListItem Text="Prefix3" Value="Prefix3" />
<asp:ListItem Text="Prefix1 and Prefix2" Value="Prefix1 and Prefix2" />
<asp:ListItem Text="Prefix2 and Prefix3" Value="Prefix2 and Prefix3" />
</asp:DropDownList>
</code></pre>
http://stackoverflow.com/questions/1747906/jquery-ajax-json-fill-dropdown-list-not-working0jquery + ajax + json + fill dropdown list not workingTiago Teixeira2009-11-17T10:28:35Z2009-11-17T10:31:07Z
<p>Hello,</p>
<p>I'm pretty sure i'am almost there....but i cannot figure out how to iterate through json objects and fill a dropdown list. Here is the js code:</p>
<p>My JSON data returned:<code><pre>{"name":"County1","name":"County1","name":"County1"}</code></pre>
<code><pre></p>
$(document).ready(function() {
$("#ddlCountries").change(function() {
$("#ddl2").html("");
$.ajax({
type: "GET",
url: "Handler.ashx?",
data: "county=" + $("#ddlCountries option:selected").text(),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(countyList) {
$.each(countyList, function() {
$("#ddl2").append(' + this['name'] + '');
});
},
error: function(XMLHttpRequest, textStatus) {
alert(textStatus);
}
});
});
});
<p></code>
</pre></p>
<p>i'm sure is something simple but as i am a newbie on this i'm not beeing able to get it work.</p>
<p>Appreciate your help guys!</p>
<p>Br,
Teixeira</p>
http://stackoverflow.com/questions/1747058/how-to-change-the-width-of-the-dropdown-list-in-asp-net-dropdownlist-control1how to change the width of the dropdown List in asp.net dropdownlist controlmcxiand2009-11-17T06:57:12Z2009-11-17T07:26:24Z
<p>how to change the width of the dropdown List in asp.net dropdownlist control?</p>
<p>What i mean here is not the textbox like control but the the list displaying the items after clicking the dropdown button on the right side?</p>
<p>Is this possible in asp.net dropdownlist control?</p>
http://stackoverflow.com/questions/1744218/guarding-against-user-input-in-a-dropdown-list3Guarding against user-input in a dropdown list?45012009-11-16T19:13:12Z2009-11-16T19:39:34Z
<p>Should we guard against unanticipated user input from dropdown lists? Is it plausible to expect a user to somehow modify a dropdown list to contain values that weren't originally included?</p>
<p>How can they do this and how can we stop it?</p>
http://stackoverflow.com/questions/1741612/show-hide-div-using-codebehind2Show hide div using codebehindravi2009-11-16T11:31:33Z2009-11-16T15:37:34Z
<p>i have dropdowlist for which iam trying to show a div OnSelectedIndexChanged but it says OBJECT REQUIRED..</p>
<p>iam binding the datalist in that div </p>
<p>here is my code</p>
<p>aspx</p>
<pre><code> <asp:DropDownList runat="server" ID="lstFilePrefix1" AutoPostBack="True" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged" >
<asp:ListItem Text="Prefix1" Value="Prefix1" />
<asp:ListItem Text="Prefix2" Value="Prefix2" />
<asp:ListItem Text="Prefix3" Value="Prefix3" />
<asp:ListItem Text="Prefix1 and Prefix2" Value="Prefix1 and Prefix2" />
<asp:ListItem Text="Prefix2 and Prefix3" Value="Prefix2 and Prefix3" />
</asp:DropDownList>
:
:
:
<div id="data" class="divdata" style="display:none">
<asp:DataList ID="DataList1" runat="server" RepeatColumns = "4"
CssClass="datalist1" OnItemDataBound="SOMENAMEItemBound"
CellSpacing="6" onselectedindexchanged="DataList1_SelectedIndexChanged"
HorizontalAlign="Center" Width="500px">
:
:
:
</code></pre>
<p>codebehind</p>
<pre><code> protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
if (lstFilePrefix1.SelectedItem.Text=="Prefix2")
{
int TotalRows = this.BindList(1);
this.Prepare_Pager(TotalRows);
Page.ClientScript.RegisterClientScriptBlock(GetType(), "JScript1", "ShowDiv('data');", true);
}
}
</code></pre>
<p>and here is javascript in .js file</p>
<pre><code>function ShowDiv(obj)
{
var dataDiv = document.getElementById(obj);
dataDiv.style.display = "block";
}
</code></pre>
<p>what ami doing wrong??plz help</p>
http://stackoverflow.com/questions/1738558/asp-net-dropdownlist-error0asp.net dropdownlist erroranay2009-11-15T19:39:32Z2009-11-15T19:57:31Z
<pre><code>ddlSub.Items.Add(new ListItem("--Select --", ""));
</code></pre>
<p>gives following error</p>
<p><strong>cannot convert from 'ListItem' to 'string'</strong>
what is the correct syntax</p>
<p>thanx...</p>
http://stackoverflow.com/questions/310185/dropdownlist-to-filter-gridview0Dropdownlist to Filter GridViewChase2008-11-21T21:02:50Z2009-11-13T21:31:55Z
<p>I have tried different examples to filter a gridview by dropdownlist, but is it possible in a button on_click event? Do i create something like a SelectedItem on each dropdown and have them added to the button event? Sorry to be so vague....I would like to have the dropdowns with a selectedvalue and then add them together to perform a filter based on the returning results.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1731780/simplest-method-to-create-an-asp-net-mvc-dropdownlist-with-values-from-0-to-100Simplest method to create an asp.net mvc dropdownlist with values from 0 to 10?Kristof2009-11-13T20:43:27Z2009-11-13T21:05:30Z
<p>Hi,
I'm new to asp.net mvc, so excuse me if my question is too simple.</p>
<p>I just want a dropdownlist that goes from 0 to 10 using Html.DropDownList.
What is the fastest way?
At the moment i only see the solution creating a IEnumerable of SelectListItem, add 10 values and pass it through with the viewdata, but i think that's overkill, how to do it in a simple way ?</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1729712/why-might-dropdownlist-selectedindex-value-fail1Why might dropdownlist.SelectedIndex = value fail?45012009-11-13T14:55:42Z2009-11-13T15:27:23Z
<p>I have a dropdown list that I am binding to a datatable. Here is the code I am using to do it:</p>
<pre><code>ddlBuildAddr.DataSource = buildings
ddlBuildAddr.DataTextField = "buildingName"
ddlBuildAddr.DataValueField = "buildingId"
Dim addressId As Int32 = OfficeData.GetInstance().GetBuildingId(currentAddress)
ddlBuildAddr.SelectedIndex = addressId
ddlBuildAddr.DataBind()
</code></pre>
<p>Unfortunately, the line <code>ddlBuildAddr.SelectedIndex = addressId</code> is failing. Looking at this line through the debugger, the <code>SelectedIndex</code> goes to -1, while <code>addressId</code> goes to 2. What gives? Why would the assignment operator flatout not work?</p>
http://stackoverflow.com/questions/1720989/in-php-dropdownlist-values-depend-on-another-drop-down-list-in-the-same-form0In php: dropdownlist values depend on another drop down list in the same formWaheedoo2009-11-12T09:23:36Z2009-11-12T09:53:55Z
<p>Hi,
How can I realize this solution?
dropdownlist values depend on another dropdownlist in the same form
e.g. :a form contains dropdownlist(car_name),dropdownlist (models of this car),button(search)
notice that :
1)car_model values depend on car_name value
2)car_name dropdownlist and car_model dropdownlist in the same form</p>
<p>thanks
Best Regards.</p>
http://stackoverflow.com/questions/1327181/page-post-back-initializes-the-dropdownlist0Page Post back initializes the dropdownlist.Babur Mansoor2009-08-25T09:43:33Z2009-11-11T13:35:48Z
<p>I face a weird problem. I have a simple aspx page with a dropdownlist. The dropdown gets filled through a function which is called from Page_Load() event. The dropdown item selection triggers event OnSelectedIndexChanged. Now the event triggers rightly
but what happens that upon post back the dropdownlist gets initialized, that is, it shows empty. Never faced this type of issue before so i wonder what's happening wrong.</p>
<p>The piece of code follow:</p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
if(!Page.IsPostBack)
PopulateCompanyList(GetCompanies(serverUNCPath));
return;
}
</code></pre>
http://stackoverflow.com/questions/1713661/how-to-implement-drop-down-menus-like-below0How to implement drop-down menus like below?Paypal2009-11-11T07:43:44Z2009-11-11T07:54:39Z
<p><a href="http://losangeles.kijiji.com/c-SelectCategory" rel="nofollow">http://losangeles.kijiji.com/c-SelectCategory</a></p>
<p>That page's search menus on upper left.</p>
<p>Best with jQuery.</p>
http://stackoverflow.com/questions/1700021/bind-drop-down0bind drop down?Ritz2009-11-09T09:43:57Z2009-11-09T10:32:13Z
<p>in the aspx page i am getting this error while binding dropdown list</p>
<blockquote>
<p>Unable to cast object of type
'System.Web.Mvc.SelectList' to type
'System.Collections.Generic.IList`1[System.Web.Mvc.SelectListItem]'.</p>
</blockquote>
<p>I have written:</p>
<pre><code><p>
<label for="categoryId">Category:</label>
<%= Html.DropDownList("categoryId", (IList<SelectListItem>)ViewData["categoryId"])%>
<%= Html.ValidationMessage("categoryId", "*")%>
</p>
</code></pre>
<p>please tell me the correct way of writing.</p>
<p>thanks</p>
<p>ritz</p>