<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ClientEvents.aspx.cs" Inherits="ComboBox_ClientEvents" %>
<%@ Register TagPrefix="APNSoft" Namespace="APNSoft.WebControls" Assembly="APNSoftControls" %>
<!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>Untitled Page</title>
<script type="text/javascript">
function ShowEvent(Event){
try{
var GrayBox=document.getElementById('GrayBox');
GrayBox.innerHTML+='<br/>'+Event;
}catch(ex){}
};
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<APNSoft:APNSoftComboBox id="myComboBox" runat="server"
SkinFolder = "~/ComboBox/Skins/Classic/"
StructureFileURL = "~/ComboBox/Structures/ClientEvents.xml"
ClientSideOnItemClick = "ShowEvent('The $Title$ ($ItemID$) is clicked!');"
ClientSideOnItemOver = "ShowEvent('The $Title$ ($ItemID$) is hovered!');"
Width = "180"
/>
<div class="GrayBox" style="left:250px;top:30px;width:350px;">
<div><b>Event log:</b></div>
<div id="GrayBox"></div>
</div>
</div>
</form>
</body>
</html>
|