How to add Upload into a Grid editor column

Hi,

I am using Grid of V14. I set up an editor for grid column as the demo suggested. I would like to bind a Upload component to one of the editor column, so that the upload operation could be enabled during editing mode. However, the binder.bind could only binds HasValue field. Any advices of how I can do this?

Best regards,
Joey

You need to create a custom component that implements HasValue<ValueChangeEvent<V>, V> and contains an Upload. Once you figure out what V is in your case - this is quite dependent on your business logic - then you can implement the HasValue interface’s methods in a way that suits you.