This question is locked. New answers and comments are not allowed.
I'm new to jQuery right now I'm using Telerik asp.net MVC control along with Razor view engine. Here is a code snippet from my view.
I want to send extra parameter on cmbLoaded .ClientEvents(ce => ce.OnLoad("cmbLoaded")) how should i pass it here. How can i do that.
thanks in advance.
Html.Telerik().ComboBox().Name("cmb") .AutoFill(true) .DataBinding(binding => binding.Ajax().Select("_loadData", "MyController").Cache(false)) .ClientEvents(ce => ce.OnLoad("cmbLoaded")) function cmbLoaded(e) { var ComboBox = $("#cmb").data("tComboBox"); //do stuff here }I want to send extra parameter on cmbLoaded .ClientEvents(ce => ce.OnLoad("cmbLoaded")) how should i pass it here. How can i do that.
thanks in advance.