You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
627 B

<%@ Register TagPrefix="obout" Namespace="OboutInc.Combobox" Assembly="obout_Combobox_Net" %>
<%@ Control Language="C#" CodeFile="cs_autosuggest.ascx.cs" Inherits="cs_autosuggest_uc" %>
<script type="text/javascript">
// this function opens the combobox each time a user types something
function openCombobox() {
cbo1.open();
}
// this function initiates an ajax callback to load the description for a given word
function getWordDescription() {
var sWord = cbo1.getText();
ob_post.AddParam("sWord", sWord);
ob_post.post(null, "GetWordDescription", loadWordDescription);
}