September 2017
Intermediate to advanced
408 pages
9h 25m
English
Let us now write our first processing script code that will enable the functionality to store the values of the checkboxes in the UI page in the system properties we just defined. The processing script is written while defining the UI page and is executed when we submit the form in the UI page.
Open the UI page named app_properties that we created earlier in the chapter. Scroll to the processing Script field and write the following code:
//set the value of the check_weather_from system property gs.setProperty("x_8940_travel_book.check_weather_from", check_weather_from); //set the value of the check_weather_destination sys property gs.setProperty("x_8940_travel_book.check_weather_destination", check_weather_destination); ...Read now
Unlock full access