wwWebDatePicker::OnClientBeforeShow

Optional client handler that is fired before the date pop up is displayed. Useful for updating the display characteristics of the dialog before it displays.

Note: This handler is also used internally to pop the dialog to the top of the zOrder. The zOrder assignment occurs before this handler is called so if you need to unset the z-Index to some non highest value you can do it here.

Enter a date: 
<ww:wwDatePicker runat="server" 
                 OnClientBeforeShow="BeforeShow"/>

And the handler:

function BeforeShow(txtDateTextBoxElement) {
    $("#ui-datepicker-div").maxZIndex();
}
o.OnClientBeforeShow

See also:

Class wwWebDatePicker

© West Wind Technologies, 1996-2024 • Updated: 07/25/16
Comment or report problem with topic