0
votes
3answers
58 views
drop down list in MVC
Hello All,
I am absolutely new to the MVC application.I want a dropdown list on my form I have done it this way
"<%= Html.DropDownList("Categories", (IEnumerable<SelectListI …
0
votes
1answer
14 views
Non framework implementation of a hierarchical drop down for Firefox.
I need a hierarchical drop down <select><option/></select> for use within a browser, preferably Firefox. I'd rather not use a framework like jQuery. Please spar …
3
votes
6answers
98 views
Guarding against user-input in a dropdown list?
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 …
2
votes
3answers
65 views
Show hide div using codebehind
i have dropdowlist for which iam trying to show a div OnSelectedIndexChanged but it says OBJECT REQUIRED..
iam binding the datalist in that div
here is my code
aspx
<as …
0
votes
1answer
25 views
jquery + ajax + json + fill dropdown list not working
Hello,
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:
My JSON data returned:{"nam …
0
votes
3answers
32 views
Do controls in Firefox receive mouse events when their CSS visible property is false?
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 …
0
votes
3answers
39 views
asp.net dropdownlist error
ddlSub.Items.Add(new ListItem("--Select --", ""));
gives following error
cannot convert from 'ListItem' to 'string'
what is the correct syntax
thanx...
0
votes
2answers
36 views
dropdownlist autopostback??
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 …
1
vote
1answer
27 views
how to change the width of the dropdown List in asp.net dropdownlist control
how to change the width of the dropdown List in asp.net dropdownlist control?
What i mean here is not the textbox like control but the the list displaying the items after clicking …
1
vote
6answers
56 views
Why might dropdownlist.SelectedIndex = value fail?
I have a dropdown list that I am binding to a datatable. Here is the code I am using to do it:
ddlBuildAddr.DataSource = buildings
ddlBuildAddr.DataTextField = "buildingName"
ddl …
0
votes
1answer
53 views
Simplest method to create an asp.net mvc dropdownlist with values from 0 to 10?
Hi,
I'm new to asp.net mvc, so excuse me if my question is too simple.
I just want a dropdownlist that goes from 0 to 10 using Html.DropDownList.
What is the fastest way?
At the m …
0
votes
0answers
15 views
show div onchange of dropdownlist value using javascript
i have a dropdownlist and i want to show a div ochange event using javascript but it says object required
aspx code
<asp:DropDownList runat="server" ID="lstFilePrefix1" onchan …
0
votes
3answers
50 views
How to implement drop-down menus like below?
http://losangeles.kijiji.com/c-SelectCategory
That page's search menus on upper left.
Best with jQuery.
0
votes
1answer
36 views
In php: dropdownlist values depend on another drop down list in the same form
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 c …
0
votes
2answers
31 views
bind drop down?
in the aspx page i am getting this error while binding dropdown list
Unable to cast object of type
'System.Web.Mvc.SelectList' to type
'System.Collections.Generic.IList`1[S …
