Files
SISBusiness/SISBusiness.Web.Support/DevExpress/ASPxSchedulerForms/AppointmentToolTip.ascx
T
2017-03-26 20:00:03 +02:00

22 lines
930 B
Plaintext

<%@ Control Language="vb" AutoEventWireup="true" Inherits="UserForms_AppointmentToolTip" Codebehind="AppointmentToolTip.ascx.vb" %>
<%@ Register Assembly="DevExpress.Web.v15.2" Namespace="DevExpress.Web"
TagPrefix="dxe" %>
<div runat="server" id="buttonDiv">
<dxe:ASPxButton ID="btnShowMenu" runat="server" AutoPostBack="False" AllowFocus="False">
<Border BorderWidth="0px" />
<Paddings Padding="0px" />
<FocusRectPaddings Padding="4px" />
<FocusRectBorder BorderStyle="None" BorderWidth="0px" />
</dxe:ASPxButton>
</div>
<script type="text/javascript" id="dxss_ASPxClientAppointmentToolTip">
ASPxClientAppointmentToolTip = _aspxCreateClass(ASPxClientToolTipBase, {
Initialize: function() {
ASPxClientUtils.AttachEventToElement(this.controls.buttonDiv, "click", _aspxCreateDelegate(this.OnButtonDivClick, this));
},
OnButtonDivClick: function(s,e) {
this.ShowAppointmentMenu(s);
}
});
</script>