Telerik.Web.Mvc.UI.Fluent.DropDownClientEventsBuilder.OnClose C# (CSharp) Method

OnClose() public method

Defines the inline handler of the OnClose client-side event
public OnClose ( System.Action onCloseInlineCode ) : DropDownClientEventsBuilder
onCloseInlineCode System.Action The action defining the inline handler.
return DropDownClientEventsBuilder
        public DropDownClientEventsBuilder OnClose(Action onCloseInlineCode)
        {
            Guard.IsNotNull(onCloseInlineCode, "onCloseInlineCode");

            clientEvents.OnClose.InlineCode = onCloseInlineCode;

            return this;
        }

Same methods

DropDownClientEventsBuilder::OnClose ( string onCloseHandlerName ) : DropDownClientEventsBuilder