How to show data in Pluggable widget

0
Hi,   I’m building an widget which will provide an search option in Dropdown widget. I’m able to show the dropdown here but options are not reflecting   In react, I’m creating the dropdown with the help of this createSelector()-   private createSelector(): any {         return this.props.Attribute ?         createElement("div", { className: "div-wrapper" },         createElement(Select, {             onChange: this.props.handleOnchange,             options: this.props.data,             value: this.props.selectedValue         })         ) : null;             }  
asked
1 answers
0

Please look at the widgets in the marketplace and the code on github, for example searchable selector

 

https://github.com/bsgriggs/mendix9-searchable-reference-selector/blob/master/src/SearchableReferenceSelectorMxNine.tsx

answered