rjsf-material-ui icon indicating copy to clipboard operation
rjsf-material-ui copied to clipboard

It doesn't work to remove for custom Ui Widget.

Open honestydeveloper opened this issue 5 years ago • 1 comments

Hi Everyone! I have customized ArrayFieldTemplate as UiSchema.

`const newUiSchema = {
      parents: {
        items: {
          'content': {
            'students': {
              'items': {
                'content': {
                  "ui:widget": props => {
                    return (
                      <StudentComponent value={imageFileProps.value} onChange={props.onChange} />
                    )
                  }
                }
              }
            }
          }
        }
      }
    };`

It's array json schema. If I am going to remove StudentComponent then the last StudentComponent is removed.

honestydeveloper avatar Dec 09 '19 18:12 honestydeveloper

when call of onDropIndexClick, it doesn't work correctly.

honestydeveloper avatar Dec 10 '19 20:12 honestydeveloper