Guest User

Untitled

a guest
Jan 24th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. public class DocumentViewModel
  2. {
  3. public int Id { get; set; }
  4.  
  5. public int ActionId { get; set; }
  6. }
  7.  
  8. <form....>
  9. <input id="docActionId" name="docActionId" asp-for="ActionId" type="hidden" value="initialValue" />
  10. </form>
  11.  
  12. $("#save_btn").on("click", function ()
  13. {
  14. $("#docActionId").val("test1");
  15. });
  16.  
  17. $("#submit_btn").on("click", function ()
  18. {
  19. $("#docActionId").val("test2");
  20. });
Add Comment
Please, Sign In to add comment