I'm struggling to determine if I can include an array in the data tag within my client JS code. Here's a snippet of the code:
$.ajax({
url: '/mobiledoc/jsp/aco/Beneficiary/ptmmview.jsp',
data: {
"action":"savePatientRecords",
"ptId":strPtId,
"PatientVal":PatientVal,
"Qid":Qid,
"QType":QType
"Array" : ??
},
dataType: 'text',
type: 'post',
success: function (responseMsg) {
// gets the response message back from server
loadMilestoneData();
alert(responseMsg);