How to use this json string with jquery autocomplete?
Posted
by Pandiya Chendur
on Stack Overflow
See other posts from Stack Overflow
or by Pandiya Chendur
Published on 2010-05-12T05:34:07Z
Indexed on
2010/05/12
5:34 UTC
Read the original article
Hit count: 307
I have two textboxes in my page,
<asp:TextBox ID="TxtClientName" runat="server"></asp:TextBox>
<asp:TextBox ID="TxtClientMob" runat="server"></asp:TextBox>
and i have a json string,
{"Table" : [{"ClientName" : "Pandiya","ClientMobNo" : "9566643707"},
{"ClientName" : "Bala","ClientMobNo" : "9994403569"}]}
Is it possible to use this json string to autocomplete in two textboxes seperating keys ClientName
and ClientMobNo
in jquery..... Any suggestion....
© Stack Overflow or respective owner