0
votes
1answer
47 views
Yii: Customize the results of CAutoComplete
Hi guys!
I need to make a dropdown list using CAutoComplete. Everything is set and works fine, here is my code of the action:
<?php
public function actionSuggestCharacter() {
…
0
votes
2answers
46 views
C# Windows Form html like dropdown menu.
Hi There,
I am looking to create a dropdown menu in my windows form application that is similar to the dropdown menu in html i.e. etc..
I need each entry to display text to user but store a value …
0
votes
2answers
22 views
asp .net dropdownlist trim data
In the asp.net dropdownlist i need to trim the data inside the list. e.g if my drop down has 10 records in it and i only want to show the first 20 chars of each record, then how do i do it?. Also if …
0
votes
1answer
23 views
MVC DropDownList option first one updating TryUpdateModel correctly
I have a select list which populates provides an empty value as the first option in the following line. Value = "0" Display = "Select a customer type"
<%= …
1
vote
3answers
55 views
Adding a blank selection item to the list in drop down list
my dropdownlist is populated from the database as in:
DataTable dt = GetData();
ddlMylist.DataSource = dt;
ddlMylist.DataBind();
Now dt contains the data, and I wish to add "Select" word to the top …
0
votes
2answers
15 views
problem with dropdownlist updateprogress and updatepanel
The updateprogress doesnt show the gif. If the dropdownlist is inside updatepanel without trigger, it works. Any idea?
<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="true" …
0
votes
3answers
43 views
set dropdown value by text using jquery
I have a dropdown as:
<select id="HowYouKnow" >
<option value="1">FRIEND</option>
<option value="2">GOOGLE</option>
<option …
0
votes
1answer
15 views
virtual column for drop down in the ruby on rails.
How to place a drop down for the virtual column, in the ruby on rails. The virutal column does not exist in my table , but I want to get the value from the drop down ,when user saves the data.
for …
0
votes
2answers
40 views
Selecting radio button option based on keyboard input
I have a page full of radio buttons that I'd like to be able to tab through and then select options based on keyboard input. I'm hoping to get the keyboard input to work on radiobuttons in a similar …
0
votes
2answers
35 views
reset selectedvalue when textbox change
I have a textbox and a dropdownlist
the textbox has
<asp:TextBox ID="TxtInizioPeriodo" runat="server"
ontextchanged="InizioPeriodo_TextChanged" AutoPostBack="true" …
0
votes
3answers
93 views
asp.net dropdownlist - C#.NET and javascript
I have a drop down and a div right next to it. The text contained inside the div should be updated based on value selected in the dropdown.
I do NOT want to use AutoPostBack feature.
0
votes
5answers
88 views
DropDownList has a SelectedValue which is invalid because it does not exist in the list of items.
Here's the scenario:
The selections in DropDownList are bound from a DB Table listing the acceptable values. At one point in time the values were:
One
Two
Three
Four
At some point later, the list …
1
vote
1answer
40 views
IE 6 dropdown selection area too narrow
Hi,
I have a dropdown menu with the width set to 142px however the selection area when you drop down the menu needs to be larger as it has text that exceeds this width. Firefox (and most modern …
0
votes
5answers
96 views
Getting DropDownList values in a repeater
There is a following mark-up code:
ASPX Page
<asp:Repeater ID="GeneralRepeater" runat="server"
OnItemDataBound="GeneralRepeater_OnItemDataBound">
<ItemTemplate>
<tr>
…
0
votes
4answers
41 views
LINQ Union with Constant Values
Hi;
Very primitive question but I am stuck (I guess being newbie). I have a function which is supposed to send me the list of companies : ALSO, I want the caller to be able to specify a top element …
