Let me give you more details for the 3rd task (permalink).This link I send to a friend and he can open that record right away.
Or in a smilar manner: I have another crm where I insert links that point to some records in nuBuilder.
Or: to show a permalink viewtopic.php?f=15&t=8796&p=14966&hilit=permalink#p14966
This is my form with a copy button. Then there is a button with a copy to clipboard functionality. This will generate a url and copy the permalink to the clipboard.
Code: Select all
function btncopyclicked() {
var url = 'http://mydomain/nuBuilder4/index.php?'+
'f=' + nuCurrentProperties.form_id +
'&r=' + nuCurrentProperties.record_id;
copytoclipboard(url);
}
Thank you for your efforts in advance!