latest version

Built-in Option TypesΒΆ



Here is a complete list of all built-in option types with all available parameters for each option.

Some option types have custom javascript events. The events are triggered on elements with .fw-option-type-{type} class. Some events send data that can be accessed this way:

jQuery('.fw-option-type-demo#fw-option-demo')
    .on('fw:option-type:demo:custom-event', function(event, data){
        console.log(data);
    });