Changelog
- 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 manner)
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()
-
v0.2.1
- fixed an issue where WMLForm#updateFields was undefined
-
v0.3.0
- removed matcard module and used simple glassmoprhish to activate wml-card