or
assume i have 5 columns (string data type)
i want to create a filter like this
filter= col1 contains ('test') OR col2 contains ('test') OR col3 contains ('test') OR col4 contains ('test')
OR col5 contains ('test').
thanks,
Arun
@(Html.Kendo().DropDownList().Name("DropdownList").BindTo(new List<SelectListItem>() { new SelectListItem() { Text = "Drop Down" }, new SelectListItem() { Text = "Office" } }).Events(e=>e.Open("open")))<script type="text/javascript">function open(e) { alert("Hello");}</script>