'm using an ext:Combobox control i need to set the Listwidth of the combo box auto or 100%. I tried it like this but the list colour gets changed but width is static when i give ListWidth="100px" it works . How can I do this?
I'm try to add a combobox to my form which i have done and populate it with the infomation i need but i want to stop the user from being able to edit the first 5 character in the textbox part of the combo box( 1 is this possible 2 am i going about it in the right way).
I have 3 columns fro a db to enter ips ie 123.456.7.89 at the start if each number i want (SE1)(SE2)(SE3) which i can do at the momment . So I get in the combobox list 3 items with (SE1)123.456.7.89 OR just (SE1) depending of i a result is returned from the DB. However i don't want the user to be able to edit out the (SE?) part of the sting in the textbox. When editing i've tried used the text change event to try and capture the change and make sure the string.length > 5 , but the event does not fire also when i leave the combobox it it adds to the combox list. If I refersh it goes back to how it should be with only the 3 items.
it binding correctly(datasource dynamically binded) and it raises event too while changing index but it is not raising event when we manually clearing the combobox text..if currently combobox having text "ASP" then i manually select that entire text and using del key i am deleting but it is not raising event for me.. when i change index it automatically raising event...i need to raise event while combobox is empty...
I have a problem with CascadingDropDown... I have two related comboboxes, where the second is a slave of the first (e.g. country the first, cities the second). What I want is that if I select one country from combobox 1 then the second must be "filtered" by that selection (it should display all the cities inside the selected country, and the actual CascadingDropDown implementation is OK), but if I leave the combobox 1 in the default option (e.g. "Please select a country") I want the second to display all the cities I have in the database. The problem is that when selecting default option for combobox 1 the second combobox is disabled and a postback to my webservice never occurs.
Is there a way to programmatically select the entire string of the selected item in the AJAX Combobox?What I'm trying to do is bascially on a State/City selection.
1. User selects a State from the first combobox. This triggers the City combobox to be populated. The item(0) is "Select One:".
2. I want the entire "Select One:" to be hightlight as if the user had used their mouse and highlighted all the text.
The reason for this that I'd like the user to be able to start typing the city without needing to clear out the "Select One:" manually.
I was trying to use CssClass="WindowsStyle" with the following CSS. Its working fine if WindowsXP theme is selected but when the theme is changed it looks odd (different from other controls).
I wish to have the ComboBox similar to the style used by other controls. Please give me the solution for this issue.
I understand the issue is with the button(background-image: url(../images/windows-arrow.gif);) but what could be the alternate solution?CSS used
I want to create a dll Only for Ajax ComboBox. I mean I want when I add this dll in toolbax, I able to drag Ajax Combo Box control on web form.Ajax provided source code & JavaScript files for ComboBox but how I can Create a dll from this.
I'm getting an error in all browsers with the ComboBox that in IE causes the user to not be able to enter data into any other field on the form. In Firefox it just throws an error but doesn't cause any problems.
The error is this:this.ajax__combobox_prototypes[i]._popupBehavior is null
What is the most reliable way to get the current user input from a ComboBox? I've noticed that SelectedItem.Text, SelectedValue, and Text all contain the wrong result when the user deletes everything in the box and then immediately does something to cause a postback without clicking outside the box first (e.g. the user presses Backspace to delete the current contents and then presses a Submit button without clicking on anything else in the form first).
I need to fill Combox only after the page loaded. same like AutocompleteExtender. My Page have more than 10 ComboBox and it will be good for my project if only ComboBox can populated when use make setfocus. if there is something like AutoCompleteExtender for ComboBox?
I am working on an asp.net project and i need to add a combobox in one page,so i need your advice on whether to use ajax combobox or the one listed under asp.net tools box?
I have three ajaxtoolkit comboboxes on my page where the user can enters his date of birth : day, month, year.
[Code]....
for the days and years a scrollbar is shown when the user hits the arrow button. For the months no scrollbar is shown with the problem that december is not visible to the user.
The code below when using a traditional ASP.NET DropDownList works perfectly. If a value is not picked (default value still displaying), then the range validator displays the problem. However when I use this same code with an AJAX ComboBox, the RangeValidator returns false every time, and the message is always displayed. Take a look:
[Code]....
So every time I press a button to postback, the "** Item is required**" message is displayed. Again, this works just fine with a regular ASP.NET DDL, just not with the ComboBox from the toolkit. I can get a RequiredFieldValidator working with the ComboBox, but I like the post selection behavior of a RangeValidator better.
I'm retrieving the data from database to fill the combobox. The name of the combobox is kategorilist. I want to set a string value to datavaluefield of the combobox. Also I'm using datalist with paging in this page. Datalist is binding with the selected value of the combox everytime.
double space in Ajax Combobox.When I fill items with two o more following space I receive only 1 space in Combobox list and 1 space in edit (selected item).
ListItem litm = new ListItem("FF text");
When I try to use " " I receive spaces in combox list , but in edit they are looks like  .
I am building a page that requires a ComboBox that retrieves its data using ajax. We are currently using the AutoCompleteExtender with a webservice, but my requirement demands that I have default values in the dropdown and thearrow button to the right. Any help would be greatly appreciated. I have been struggling trying to convert the AutoCompleteExtender to act more like the combobox and visa-versa and it is a total pain.