A fellow developer and I wrestled for quite a while with trying to get a jquery function to work, and found out that, to make it work, we had to add a ' ClientIDMode="Static" ' attribute to the asp control when referencing an element by id.
I am now trying to get Angular Typeahead to work and having no joy. The code below works just beautifully in a standard HTML page, but when trying to use it in a Web Form page, it does nothing.
On top of that, we are using both AjaxToolkit and Telerik Web UI controls on various pages, and running into the "only one script manager per page" and other more spurious errors. The AjaxToolkit Autocomplete and Telerik RadAutoComplete each leave a lot
to be desired.
Any helpful tips and links to best practices?
HTML
<!doctype html>
<html ng-app="testapp">
<head>
<script src="http://ajax ...
Go to the complete details ...