* v0.2.0 added ability to access the html element for the field sections as displayFields property is availabile on the WMLForm params class however when using fieldsUpdateSubj , the developer must access the displayFields in this manner (not exact
npm install @windmillcode/wml-formts
updateFields(){
this.mainForm.fieldsUpdateSubj.next(new WMLFormFieldsUpdateSubjParams({
fields:[this.filterKeyField,this.filterValueField]
}))
}
listenForFormUpdate(){
return this.mainForm.fieldsUpdatedEvent
.pipe(
takeUntil(this.ngUnsub),
tap(()=>{
this.mainForm.displayFields[0].style ={
display:"flex",
}
})
)
}
listenForFormUpdate()
updateFields()
``