You are viewing limited content. For full access, please sign in.

Question

Question

Customize Drafts Window in Forms

asked on March 3, 2023

We are trying to change the "save as draft" popup window (where you enter name and email).   The issue is that we would like it to be in French for some Forms and English for others (so it either has to be local to the process or have some code to switch it based on some indicator).  Does anyone know if /how this can be done?

In the screenshot, all the english words (Email, Draft name, Save and the top message) would need to be in French.

Many thanks!

draft window.PNG
0 0

Answer

SELECTED ANSWER
replied on March 3, 2023

This should get you started...

Tested in Version 11.0.2212.30907 Classic Designer: 

$(document).ready(function() {
  
  $('.draft-btn').click(function() {
    $('#draftPage .modal-title').text('New Title');
    $('#draftPage .form-group:first').text('New Description');
    $('#draftPage .saveresumeinfo').first().text('New Field Label');
  });
  
});

 

2 0

Replies

You are not allowed to reply in this post.
You are not allowed to follow up in this post.

Sign in to reply to this post.