New UI - How to set values in Reminder and Duration Fields

Posted by Meryk on 16-Nov-2015 04:06

Hi,

I have an object with an event, so I am using two fields Reminder (of data Type Reminder) and Duration (of data Type Duration).

How do I set the values in those fields as I need default values set on load? I tried the kendo select method on the combobox of those fields, but it is saying that the combobox is undefined.

Maybe rbf_setFieldValue? But how do I specify the values then ?

Thanks

Meryem

All Replies

Posted by Mohammed Siraj on 16-Nov-2015 04:37

For Page, you can define an onload event handler. See Obj Def -> Pages -> Edit Page -> Properties, to define callback handlers.

Example Handler Definition:

function onloadHandler() {

 try {

   rbf_setFieldValue('duration', 90 * 60 * 1000); //value in milliseconds

   rbf_setFieldValue('reminderMin', 20 * 60 * 1000);  //value in milliseconds

 }

 catch (err) {

   rb.newui.util.logErrorToConsole(err);

 }

}

Note: Always prefer to use client-side API & not directly work with kendo widgets. Only in case where client-side API is not available to perform a given task opt for working with kendo controls. This way there will never be any compatibility issues when moving onto latest release.

This thread is closed