--- title: Clear Button nav_title: Clear Button tags: demo --- {% from "demo.njk" import demo %} {% from "macro_config.njk" import config_table %} {% set label %} {% endset %} {% set html %} {% endset %} {{ demo( label, html, script) }} {% set label %} {% endset %} {% set html %} {% endset %} {{ demo( label, html, script) }}

Plugin Configuration

{{ config_table([ { name:'html', desc:'

A callback that returns an html string used to create the button

', type:'callback', default:'function(data){\n return `
×
`;\n}', highlight:true }, {name:'title',desc:'

The value of the title attribute on the close button

',type:'string',default:'Clear All'}, {name:'className',desc:'

The CSS class name of the close button

',type:'string',default:'clear-button'} ]) }}