Hi there,
Were using a custom filter for statuses.
Its working fine when were only using this in the grid properties:
1.//Column code in grid2. 3.columns.Bound(la => la.StatusName)4..Filterable(s => s.Multi(true).DataSource(ds => ds.Read(r => r.Action("GetStatuses", "Status").Data("{ field: 'StatusName' }"))))5. 6.//Grid propert7..Filterable(ftb => ftb.Mode(GridFilterMode.Menu))
but when i add the .ColumnMenu() property to the grid the filtering on the status column doesnt show at all. I need the show/hide column functions in the columnmenu but cant sacrifice the custom status filter.
The serverside code for the datasource looks like this:
01.public ActionResult GetStatuses(string field)02.{03. var statuses = Context.GetAll<Status>(false);04. 05. var viewModels = (from s in statuses06. select new StatusVm() { StatusName = s.Key })07. .ToList();08. 09. return Json(viewModels, JsonRequestBehavior.AllowGet);10.}
Am i missing something obvious here?
Thankful for any input.
