示例#1
0
        public ActionResult MultipleSelectForWorkflow(string tabId, int parentId, int[] IDs)
        {
            _statusTypeService.InitList(parentId);
            var model = new StatusTypeSelectableListViewModel(tabId, parentId, IDs);

            return(JsonHtml("MultiSelectIndex", model));
        }
示例#2
0
        public async Task <ActionResult> MultipleSelectForWorkflow(
            string tabId, int parentId, [FromBody] SelectedItemsViewModel selModel
            )
        {
            _statusTypeService.InitList(parentId);
            var model = new StatusTypeSelectableListViewModel(tabId, parentId, selModel.Ids);

            return(await JsonHtml("MultiSelectIndex", model));
        }