BOOK: ASP.NET AJAX Programmer's Reference : with ASP.NET 2.0 or ASP.NET 3.5 ISBN: 978-0-470-10998-4
This is the forum to discuss the Wrox book ASP.NET AJAX Programmer's Reference: with ASP.NET 2.0 or ASP.NET 3.5 by Dr. Shahram Khosravi ; ISBN: 978-0-470-10998-4
You are currently viewing the BOOK: ASP.NET AJAX Programmer's Reference : with ASP.NET 2.0 or ASP.NET 3.5 ISBN: 978-0-470-10998-4 section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
I want to implement this Autocomplete feature on a text box. This autocomplete i have to implement on a Sharepoint site using the webpart(usercontrol). The existing Autocomplete is on java portal which is user a servlet to get the backend dsml(xml)file using the java servlet. I want to use this servlet to feed by AJAX component. Can somebody help we with this approach. The code snippet is as follow :-
<script type="text/javascript">
new AjaxJspTag.Autocomplete("/portal/autocomplete.view",
{indicator: "indicator",
minimumCharacters: "3",
parameters: "service=autocomplete,searchParameter=searchtextOn Page,searchType={autosearchtype}",
postFunction: redirectQuickSearchURL,
parser: new ResponseXmlToHtmlTableParser(),
target: "quickSearchValue",
className: "autocomplete",
source: "searchtextOnPage"});
</script>
Here "autocomplete.view" which is servlet which is feeding the page with the xml data. Thansk.