value event

Previous Next

The value event occurs when the value of a custom control (a control with the Type property set to 'custom') becomes programmatically available.

You can use this event to script how the value must be displayed in the custom control.

 

Example

 

$(this).empty().append('<span data-lang="'+ options.value + '">' + 

$.udb.msg.getString(options.value) + ':</span>');

 

 

See Also

Control Events