Filter Card
Design System - Filter Card component

// Sample code
<FilterCard
addClose
equalWidthButtons
layoutType="vertical"
onClose={function noRefCheck(){}}
onPrimaryPressed={function noRefCheck(){}}
onSecondaryPressed={function noRefCheck(){}}
primaryActionLabel="ApplyFilters"
secondaryActionLabel="Clear Filters"
title="Filter"
>
<LabelFieldPair vertical>
<TextBlock body="Name" />
<TextInput type="text" />
</LabelFieldPair>
<LabelFieldPair vertical>
<TextBlock body="Value" />
<TextInput type="text" />
</LabelFieldPair>
<LabelFieldPair vertical>
<TextBlock body="Gender" />
<RadioButtons
alignVertical
name="gender"
onSelect={function noRefCheck(){}}
options={[
{
code: 'M',
name: 'Male'
},
{
code: 'F',
name: 'Female'
},
{
code: 'O',
name: 'Others'
}
]}
optionsKey="name"
style={{
width: '100%'
}}
/>
</LabelFieldPair>
</FilterCard>
Anatomy

Variants


Properties


Property Configuration Table
Property
Value
Default
Property
Value
Default
Usage Guide


Change log
Date
Number
Notes
Design Checklist
Last updated
Was this helpful?