Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..
2021-06-08 05:02 PM
Hi Team,
Can someone please guide me how to start using custom object.
Thanks
Muhammad Alam
2021-06-08 05:15 PM - edited 2021-06-08 06:24 PM
Hi Muhammad
You can search for code in this user community, Archer Custom Objects - RSA Link
A small custom object primer can be found here, Custom Objects And You - RSA Link - 520124
For your ask, why does it matter that the user click Save first before clicking Save and Close (which is exactly what Save does but also exits the record)?
Advisory Consultant
2021-06-24 08:43 AM - edited 2021-06-24 08:44 AM
Hi Muhammad,
this should do it:
<script type="text/javascript">
Sys.Application.add_load( function() {
if(getRecordId()== 0) {
$('#master_btnSave1').css('display', 'none');
}
});
</script>
Kind regards,
Daniel