Click here to Skip to main content
16,009,068 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have a form in which i have a text which shows autocomplete list using ajax.i am concatenating id,name and address in my autocomplete list in this way "id/name-address".i have to split,id name and address from this autocomplete list item after user selects it on text change event of textbox for furthur use.The problem is if user types any random text and doesnt select from autocomplete list ,i get an exception bcoz the string doesnt split.How can i prevent this? Help Me.
thanks in advance..
Posted

Hi,
You need to call JavaScript function on OnBlur() event of textbox
like e.g. your string is: 01/Name-Address

ASP.NET
<asp:textbox id="txtAutoComplete" runat="server" onblur="return validateAutoComplete(this);" tabindex="3" xmlns:asp="#unknown"></asp:textbox>


JavaScript
function validateAutoComplete(el) {
    var str = el.value
    var n = str.indexOf("/");
    var l = str.indexOf("-");
    if (n == -1 || l == -1) {
        el.value = "";
    }
    else {
        return true;
    }
}
 
Share this answer
 
Make ReadOnly to True. This will stop the user from entering anything
 
Share this answer
 
Comments
Murugesan22 28-Mar-14 3:30am    
If i am making the textbox is readonly
then how can i enter autocomplete word

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900