Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
390 views
in Technique[技术] by (71.8m points)

typescript - How can I change the default widget for a type/format in react-jsonschema-forms

I want react-jsonschema-forms (rjsf) to render a custom widget for each {type: 'string', format: 'duration'} field and an other one for {type: 'number', format: 'currency'}.

With react-jsonschema-forms (rjsf) as I can overwrite/exchange the Widgets used by the form as documented:

    const widgets = {'TextWidget': MyFanycTextWidget}
    return <Form {...props} widgets={widgets} />

But since TextWidget is used for many type/format combinations, this is too much.

I could overwrite the widgets used by using ui:schema, but for that I would have to new the shape of the jsonschemata used in advance (which I do not).

Internally rjsf conatains a niche type/format mapping in widgetMap.

Is there an way to overwrite / monkeypatch / extend this? Or an other aproach?

question from:https://stackoverflow.com/questions/65891781/how-can-i-change-the-default-widget-for-a-type-format-in-react-jsonschema-forms

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...