Domen Dolar - 2016-04-12

In RASD you can writte your own program code (you can replace all generated code too).

PL/SQL programming language is used for core programming in program. You can write your own code in:

  • TRIGGERS. You can replace or add some of your own code or replace generated one. We have many PRE, POST, ON triggers. You create then in program "Triggers" where you chose specific one.
  • Procedure, Functions. You can create then in "Triggers" page where you select "PL/SQL procedure:". If you would like to make access of these functions to others programs you can choose "public ".
  • SQL statements (or some part of them). You can writte code in program "Fields on Block" where you can write SQL code or in program "Form" where you can choose SQL Editor () by the block.

JavaScript programming language is for programing on interface. You can change or add code in special part in RASD in "FORM_JS" tag. You have acess to it from program "CSS, JS source" -> "Form CSS, JS" -> "FORM_JS". General javascript code is stored in "CSS, JS source" -> "General CSS, JS" -> "rasd/rasd.js".

CSS settings is for setting the interface. You can change or add code in special part in RASD in "FORM_CSS" tag. You have acess to it from program "CSS, JS source" -> "Form CSS, JS" -> "FORM_CSS". General javascript code is stored in "CSS, JS source" -> "General CSS, JS" -> "rasd/rasd.css".