public async Task <ActionResult> Properties(string tabId, int parentId, int id, IFormCollection collection)
        {
            var status = _statusTypeService.ReadPropertiesForUpdate(id);
            var model  = StatusTypeViewModel.Create(status, tabId, parentId);

            await TryUpdateModelAsync(model);

            if (ModelState.IsValid)
            {
                model.Data = _statusTypeService.UpdateProperties(model.Data);
                return(Redirect("Properties", new { tabId, parentId, id = model.Data.Id, successfulActionCode = ActionCode.UpdateVisualEditorPlugin }));
            }

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