Guest User

Untitled

a guest
Jan 21st, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. $.ajax({
  2. type: "POST",
  3. url: "Performance.aspx/GenerateMatrix",
  4. data: '{OrgId: ' + $('#hidOrgId').val() + ',SurveyFormId: ' + $('#divMatrixInfo .FeedbackForm').val() + ',GoalId: ' + $('#divMatrixInfo .FeedbackGoal').val() + ',StartDate: ' + "'" + StartDateTime + "'" + ',EndDate: ' + "'" + EndDateTime + "'" + ',EmployeeId: ' + "'" + $('#divMatrixInfo .FeedbackEmployee').val() + "'" + ',QuestionId: ' + "'" + $('#divMatrixInfo .FeedbackQuestion').val() + "'" + '}',
  5. contentType: "application/json; charset=utf-8",
  6. dataType: "json",
  7. success: function (response) {
  8. CloseModelOverLay('divMatrixInfo');
  9. window.open('GenerateMatrix.aspx', '_blank');
  10. $('#ddlPDPView').val('Goals');
  11. $('#ddlPDPView').change();
  12. },
  13. failure: function (response) {
  14. alert(response.d);
  15. }
  16. });
  17.  
  18. window.open('GenerateMatrix.aspx', '_blank');
Add Comment
Please, Sign In to add comment