GrayMP

Untitled

Aug 9th, 2016
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. ControllerAction()
  2. {
  3. ViewBag.CheckBoxBlockMakeup = "<input type="checkbox""> // что угодно
  4.  
  5. }
  6.  
  7. cshtml
  8. @section js
  9. {
  10. var checkboxes = @ViewBag.CheckboxBlockMakeup;
  11.  
  12. as.crud.init
  13. ...
  14. ...
  15. ...
  16. Там где processRowAction
  17. $("td["data-code='checkboxes']", row).append(checkboxes);
  18. }
Advertisement
Add Comment
Please, Sign In to add comment