Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Click the Edit Screen Script link. Write the following SIL script code in the appeared panel will appear in which you will panel

Code Block
languageactionscript3
titleScreen Script Code
boolean isDisabled = false;
string [] ret = BA_createInput("Send to", "admin@kepler-rominfo.com", isDisabled);
ret = arraysConcat(ret, BA_createInput("CC", "", isDisabled));
ret = arraysConcat(ret, BA_createInput("Subject", "Your issue email title", isDisabled));
ret = arraysConcat(ret, BA_createTextArea("Email body", "Write your email here", isDisabled));
ret = arraysConcat(ret, BA_createFileUpload("Attachments", isDisabled));
return ret;

...