-
Notifications
You must be signed in to change notification settings - Fork 1
/
Default.aspx
27 lines (25 loc) · 1003 Bytes
/
Default.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<%@ Page Language="VB" AutoEventWireup="true" CodeBehind="Default.aspx.vb" Inherits="ComboBoxDelayedItemLoading._Default" %>
<%@ Register Assembly="DevExpress.Web.v24.2" Namespace="DevExpress.Web" TagPrefix="dxe" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Example</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<script type="text/javascript">
function OnDropDown(s, e) {
if(!s.countriesLoaded) {
s.countriesLoaded = true;
cbCountries.PerformCallback();
}
}
</script>
<dxe:ASPxComboBox ID="cbCountries" runat="server" OnCallback="OnCallback" EnableIncrementalFiltering="True">
<ClientSideEvents DropDown="OnDropDown" />
</dxe:ASPxComboBox>
</div>
</form>
</body>
</html>