active questions tagged dropdownlist - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T01:07:28Z http://stackoverflow.com/feeds/tag/dropdownlist http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1816717/add-item-to-databound-dropdownlist 0 Add item to databound DropDownList Alexander Corotchi 2009-11-29T20:48:10Z 2009-11-29T20:58:07Z <p>Hi, </p> <p>I have dropdownlist control where item lists are coming from database </p> <pre><code>&lt;asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" DataSourceID="SqlDataSource2" DataTextField="semester" DataValueField="semester"&gt; &lt;/asp:DropDownList&gt; </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-string 1 C# asp.net gridview bind dropdownlist to List<keyvaluePair<int, string>> Jon 2009-01-31T20:45:38Z 2009-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&lt;> 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&lt;>'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='&lt;%# 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-dropdownlist 0 how will I call the on change event of the ajax dropdownlist? Ritz 2009-11-27T08:52:10Z 2009-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>&lt;html xmlns="http://www.w3.org/1999/xhtml" &gt; &lt;head runat="server"&gt; &lt;title&gt;Index1&lt;/title&gt; &lt;script src="../../Scripts/MicrosoftAjax.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="../../Scripts/MicrosoftMvcAjax.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="../../Scripts/CascadingDropDownList.js"&gt;&lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;div&gt; &lt;label for="Makes"&gt;Car Make:&lt;/label&gt; &lt;%= Html.DropDownList("Makes")%&gt; &amp;nbsp;&amp;nbsp; &lt;label for="Makes"&gt;Car Model:&lt;/label&gt; &lt;%= Html.CascadingDropDownList("Models", "Makes")%&gt; &lt;br /&gt; &lt;%=Html.TextBox ("id",ViewData ["id"]) %&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </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("&lt;select name='{0}' id='{0}'&gt;&lt;/select&gt;", name); sb.AppendLine(); // render data array sb.AppendLine("&lt;script type='text/javascript'&gt;"); var data = (CascadingSelectList)helper.ViewDataContainer.ViewData[name]; var listItems = data.GetListItems(); var colArray = new List&lt;string&gt;(); 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("&lt;/script&gt;"); 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&lt;CascadingListItem&gt; GetListItems() { var listItems = new List&lt;CascadingListItem&gt;(); 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-or 1 PHP Multiple Dropdown Box Form Submit To MySQL with OR JB Hurteaux 2009-11-26T19:53:06Z 2009-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-dropdownlist 1 Ajax.BeginForm UpdateTargetId doesn't work with DropDownList Tyler 2009-10-21T18:51:45Z 2009-11-26T16:43:34Z <p>Code:</p> <pre><code>&lt;% using (Ajax.BeginForm("GetResourcesByProject", "CreateRequest", new AjaxOptions { UpdateTargetId = "ResourceListDiv"})) { Response.Write(Html.DropDownList("SelectProject", Model.ProjectList, "Select Project", new { onchange = "this.form.submit();" })); } %&gt; </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>&lt;%= Ajax.ActionLink("Select", "GetResourcesByProject", "CreateRequest", new { projectId = item.Id }, new AjaxOptions { UpdateTargetId = "ResourceListDiv" })%&gt; </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-dropdownlist 0 dynamically populate dropdownlist anay 2009-11-26T14:31:02Z 2009-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-selection 0 Javascript textbox autocomplete clears drop down selection Rich 2009-11-26T10:46:07Z 2009-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-firefox 0 Non framework implementation of a hierarchical drop down for Firefox. dacracot 2009-11-20T23:05:25Z 2009-11-23T17:05:11Z <p>I need a hierarchical drop down <code>&lt;select&gt;&lt;option/&gt;&lt;/select&gt;</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-sselect 0 Problem: no headerValue when list is empty <s:select> Muhammad Shahid 2009-11-22T13:30:04Z 2009-11-23T17:04:08Z <p>i am using struts 2 </p> <p>i have a tag </p> <pre><code>&lt;s:select list="list" headerKey="All" headerValue="All" multiple="true" name="selectedList" listKey="id" multiple="false" theme="simple" listValue="Name" size="20"&gt; &lt;/s:select&gt; </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-dropdownlist 0 integrating jquery with AJAX using MVC for ddl/html.dropdownlist needhelp 2009-05-01T05:09:44Z 2009-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> &lt;script type="text/javascript"&gt; $(document).ready function TypeSearch() { $.getJSON("/Home/Type", null, function(data) { //dont know what to do here }); } &lt;/script&gt; &lt;p&gt; &lt;label for="userType"&gt;userType:&lt;/label&gt; &lt;%= Html.DropDownList("userType") %&gt; &lt;%= Html.ValidationMessage("userType", "*") %&gt; &lt;input type="submit" runat="server" onclick="TypeSearch()" /&gt; &lt;label for="accountNumber"&gt;accountNumber:&lt;/label&gt; &lt;%= Html.DropDownList("accountNumber") %&gt; &lt;%= Html.ValidationMessage("accountNumber", "*") %&gt; &lt;/p&gt; </code></pre> <p>Then home controller action:</p> <pre><code> public ActionResult Type() { string accountType = dropdownvalue; List&lt;Account&gt; accounts = userRep.GetAccountsByType(accountType).ToList(); return Json(accounts); } </code></pre> http://stackoverflow.com/questions/1773863/changing-styling-of-datagridviewcomboboxcell-from-dropdownlist-to-dropdown 1 Changing styling of DataGridViewComboBoxCell from DropDownList to DropDown? John W 2009-11-20T23:27:34Z 2009-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-mvc 0 drop down list in MVC Ritz 2009-11-20T09:02:51Z 2009-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>"&lt;%= Html.DropDownList("Categories", (IEnumerable&lt;SelectListItem&gt;)ViewData["Categories"])%&gt;" </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-net 1 Have to click twice to expand DropDownList in ASP.NET DilbertDave 2008-12-09T16:39:35Z 2009-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-ne 0 How to get the value of datafieldtext or selectedtext of the selectlist in asp.net mvc? kurozakura 2009-08-27T02:34:34Z 2009-11-19T11:00:06Z <p>No javascript\AJAX is to be used.</p> http://stackoverflow.com/questions/130020/dropdownlist-control-with-optgroups-for-asp-net 7 Dropdownlist control with <optgroup>s for asp.net? Nick Crowther 2008-09-24T21:12:08Z 2009-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-fa 0 Do controls in Firefox receive mouse events when their CSS visible property is false? Triynko 2009-11-17T21:17:18Z 2009-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-javascript 0 show div onchange of dropdownlist value using javascript ravi 2009-11-17T12:17:27Z 2009-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>&lt;asp:DropDownList runat="server" ID="lstFilePrefix1" onchange="showTR();" &gt; &lt;asp:ListItem Text="Prefix1" Value="Prefix1" /&gt; &lt;asp:ListItem Text="Prefix2" Value="Prefix2" /&gt; &lt;asp:ListItem Text="Prefix3" Value="Prefix3" /&gt; &lt;asp:ListItem Text="Prefix1 and Prefix2" Value="Prefix1 and Prefix2" /&gt; &lt;asp:ListItem Text="Prefix2 and Prefix3" Value="Prefix2 and Prefix3" /&gt; &lt;/asp:DropDownList&gt; </code></pre> <p>and javascript code inside .js file</p> <pre><code>function showTR() { var dropdown = document.getElementById( "&lt;%=lstFilePrefix1.ClientID%&gt;" ); // 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-autopostback 0 dropdownlist autopostback?? ravi 2009-11-17T06:53:14Z 2009-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>&lt;asp:DropDownList runat="server" ID="lstFilePrefix1" AutoPostBack="True" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged" &gt; &lt;asp:ListItem Text="Prefix1" Value="Prefix1" /&gt; &lt;asp:ListItem Text="Prefix2" Value="Prefix2" /&gt; &lt;asp:ListItem Text="Prefix3" Value="Prefix3" /&gt; &lt;asp:ListItem Text="Prefix1 and Prefix2" Value="Prefix1 and Prefix2" /&gt; &lt;asp:ListItem Text="Prefix2 and Prefix3" Value="Prefix2 and Prefix3" /&gt; &lt;/asp:DropDownList&gt; </code></pre> http://stackoverflow.com/questions/1747906/jquery-ajax-json-fill-dropdown-list-not-working 0 jquery + ajax + json + fill dropdown list not working Tiago Teixeira 2009-11-17T10:28:35Z 2009-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-control 1 how to change the width of the dropdown List in asp.net dropdownlist control mcxiand 2009-11-17T06:57:12Z 2009-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-list 3 Guarding against user-input in a dropdown list? 4501 2009-11-16T19:13:12Z 2009-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-codebehind 2 Show hide div using codebehind ravi 2009-11-16T11:31:33Z 2009-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> &lt;asp:DropDownList runat="server" ID="lstFilePrefix1" AutoPostBack="True" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged" &gt; &lt;asp:ListItem Text="Prefix1" Value="Prefix1" /&gt; &lt;asp:ListItem Text="Prefix2" Value="Prefix2" /&gt; &lt;asp:ListItem Text="Prefix3" Value="Prefix3" /&gt; &lt;asp:ListItem Text="Prefix1 and Prefix2" Value="Prefix1 and Prefix2" /&gt; &lt;asp:ListItem Text="Prefix2 and Prefix3" Value="Prefix2 and Prefix3" /&gt; &lt;/asp:DropDownList&gt; : : : &lt;div id="data" class="divdata" style="display:none"&gt; &lt;asp:DataList ID="DataList1" runat="server" RepeatColumns = "4" CssClass="datalist1" OnItemDataBound="SOMENAMEItemBound" CellSpacing="6" onselectedindexchanged="DataList1_SelectedIndexChanged" HorizontalAlign="Center" Width="500px"&gt; : : : </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-error 0 asp.net dropdownlist error anay 2009-11-15T19:39:32Z 2009-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-gridview 0 Dropdownlist to Filter GridView Chase 2008-11-21T21:02:50Z 2009-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-10 0 Simplest method to create an asp.net mvc dropdownlist with values from 0 to 10? Kristof 2009-11-13T20:43:27Z 2009-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-fail 1 Why might dropdownlist.SelectedIndex = value fail? 4501 2009-11-13T14:55:42Z 2009-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-form 0 In php: dropdownlist values depend on another drop down list in the same form Waheedoo 2009-11-12T09:23:36Z 2009-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-dropdownlist 0 Page Post back initializes the dropdownlist. Babur Mansoor 2009-08-25T09:43:33Z 2009-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-below 0 How to implement drop-down menus like below? Paypal 2009-11-11T07:43:44Z 2009-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-down 0 bind drop down? Ritz 2009-11-09T09:43:57Z 2009-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>&lt;p&gt; &lt;label for="categoryId"&gt;Category:&lt;/label&gt; &lt;%= Html.DropDownList("categoryId", (IList&lt;SelectListItem&gt;)ViewData["categoryId"])%&gt; &lt;%= Html.ValidationMessage("categoryId", "*")%&gt; &lt;/p&gt; </code></pre> <p>please tell me the correct way of writing.</p> <p>thanks</p> <p>ritz</p>