We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
function getKeyValueDataByAjax(keyImplementationId, callback) {
const querydata = { keyImplementationId: keyImplementationId }; const url = getValuesByKeyImplementationIdUrl + encodeQueryData(querydata); $.ajax({ type: "GET", async: true, url: url, contentType: "application/json", dataType: "json", success: callback, error: onError });
};