1
ParamQuery Pro Evaluation Support / I purchased the licenece how can i get the pro sdk
« on: March 30, 2020, 11:38:07 am »
My conpany purchased the licenece and give me the Transaction ID, how can i get the pro sdk?
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
editor: {
type: "textbox",
init: function(ui) {
var tableID = ui.$cell.parent().parent()[0].id;
var $inp = ui.$cell.find("input");
$inp.autocomplete({
//.....
change: function(event, obj) {
updRow[ui.dataIndx] = obj.item.label;
if (nmeMapping) {
$.each(nmeMapping, function(i) {
if (obj.item[this])
ui.rowData[i] = obj.item[this];
else if (obj.item.extraInfoMap)
ui.rowData[i] = obj.item.extraInfoMap[this];
else
ui.rowData[i] = ''
});
}
}
})
}