Search

You searched for the word(s): userid:710545

Matching Posts

  • Re: AutoComplete - User input question

    so the behaviour should be like this: http://www.codeproject.com/KB/scripting/jsactb.aspx
  • How to modify the AutoCompleteBehaviour.js

    I would like to implement the following: http://forums.asp.net/p/1344228/2736442.aspx#2736442 But where do i find this AutoCompleteBehaviour.js ? Do i have to open the AjaxControlToolkitSource\AjaxControlToolkit and modify the file there ? Then rebuild the project and add the new dll to my website ?
  • Re: AutoComplete to AutoSuggest

    Nice code man I modified the OnClientItemSelected so that it adds the key value from AutoCompleteItem to a textbox var node; var value = e.get_value(); if (value) node = e.get_item(); else { value = e.get_item().parentNode._value; node = e.get_item().parentNode; } var text = (node.innerText) ? node.innerText : (node.textContent) ? node.textContent : node.innerHtml; source.get_element().value = text; var tbox = document.getElementById('TextBoxhoofdbudgethoudermail'); if (tbox) { tbox.value
  • AutoComplete - User input question

    How can i validate that when a user fill in a textbox which has an autocompleter, that he has entered a value that was givin by the Autocompleter... Even so, i created the autocompleter to have a Keyfield and a DisplayField. When the user now selects from the suggestions given by the Autocompleter, the Keyfield gets filled up in another field BUT HERE IS THE PROBLEM when the users just types the entire word, (he doesnt click the given suggestion but types the word completely by hisself) then the
  • Autocomplete with Key Value not working

    Hi, I have a textbox where i added an autocompleter to it. This works fine. The autocompleter gives a list of names <asp:TextBox ID="txtDiensthoofd" runat="server" BackColor="AliceBlue" ></asp:TextBox> <ajaxToolkit:autocompleteextender runat="server" id="AutocCmpleteExDiensthoofd" BehaviorID="AutoCompleteExDiensthoofd" targetcontrolid="txtDiensthoofd" servicepath="AutoCompleter.asmx" servicemethod="GetCompletionList"
  • Re: AutoComplete - User input question

    I think you miss understood me... The OnClientItemSelected is a javascript method that gets the value for the corresponding selected item from the autocompleter Like i said, WHEN the user starts typing, Let's say he wants to type "Marko Polo" He types in "Marko", some suggestions show up, he sees "Marko Polo" in the suggestionlist from the autocompleter, but instead of selecting "Marko Polo" in the list, he continues typing, and types the rest of "
    Posted to ASP.NET AJAX Control Toolkit (Forum) by tompy_nation on 11/24/2009
    Filed under: KatiSAjax
  • Setting the Datasource for a dropdownlist

    Hi, < asp : DropDownList ID ="ddlSuggestBoxDiensten" runat ="server" DataSource =" <% Digipolis.Bestelaanvraag.DataAccess.MedewerkerDB.GetajaxListdienst %> " DataTextField ="Naamdienst" DataValueField ="Naamdienst"></ asp : DropDownList > The above gives the error: Error 5 The 'DataSource' property cannot be set declaratively. Is it impossible to do this ? The GetAjaxListDienst method just returns a Dataset?
    Posted to Data Presentation Controls (Forum) by tompy_nation on 11/23/2009
  • Re: how to create xml from xsd in c#

    private void ReadSchemaFromXmlTextReader(string filename){ // Create the DataSet to read the schema into. DataSet thisDataSet = new DataSet(); // Create a FileStream object with the file path and name. System.IO.FileStream myFileStream = new System.IO.FileStream (filename,System.IO.FileMode.Open); // Create a new XmlTextReader object with the FileStream. System.Xml.XmlTextReader myXmlTextReader= new System.Xml.XmlTextReader(myFileStream); // Read the schema into the DataSet and close the reader.
  • Re: Gridview DataKeyNames

    <... DataKeyNames="INT_OFFICE_ID_P, INT_SECTION_ID_P " ...>
    Posted to Data Presentation Controls (Forum) by tompy_nation on 5/19/2009
  • Re: Search button with gridview

    man, what are you talking about... When you check the links i suggested to you, then you should be able to work out your solution. <form runat="server"> < asp:SqlDataSource ID= "myFilteringDataSource" runat= "server" ConnectionString= "Server=(local);Database=pubs;User Id=sa;Password=password;" SelectCommand= "SELECT DISTINCT state FROM authors ORDER BY state" /> Only Show Authors From: < asp:DropDownList ID= "myDropDownList"
    Posted to Data Presentation Controls (Forum) by tompy_nation on 5/12/2009
Page 1 of 115 (1144 items) 1 2 3 4 5 Next > ... Last »