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

OnChange() public method

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

            clientEvents.OnChange.InlineCode = onChangeInlineCode;

            return this;
        }

Same methods

DropDownClientEventsBuilder::OnChange ( string onChangeHandlerName ) : DropDownClientEventsBuilder