From decompilation by Visual Studio:
public HtmlEditorWrapper AddClientEvent(string eventName, string eventHandler) { base.Model.AddClientEvent(eventHandler, eventHandler); return this; }
eventName is not passed
Assembly Infragistics.Web.Mvc, Version=5.21.1.7
IIn the code snippet you shared, the `eventName` parameter is not being used within the method body.The method seems to be invoking the `AddClientEvent` method of the base class's model, passing `eventHandler` twice as arguments. The return type of the method is `HtmlEditorWrapper`, and it returns an instance of `HtmlEditorWrapper`, possibly for method chaining or further operations. Run 3
Ensure that you pass the eventName parameter to the AddClientEvent method to make it work correctly. After making this modification, rebuild your project, and the issue should be resolved. rice purity test
eventName
AddClientEvent