1
Help for ParamQuery Pro / Pro subscription remaining days
« on: November 09, 2021, 12:10:12 pm »
Hello, I bought a pro subscription on 2021-02-23, it shows 2021-11-22 as the expiry date in my profile. Is the subscription 1 year?
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.
{
type: 'button',
label: "Export",
icon: 'ui-icon-arrowthickstop-1-s',
listener: function() {
var format = $("#export_format").val(),
blob = this.exportData({
format: format,
nopqdata: true,
render: true
});
if (typeof blob === "string") {
blob = new Blob([blob]);
}
saveAs(blob, "pqGrid." + format);
}
}