Passing parameters to vaadin-client components

Hello,
for custom client-side error handling, we would like to pass parameters to vaadin-client components e.g.:

  • XhrConnection
  • FileDowloaderConnector
  • VUpload
    Please is there a standard way to do this from server side?
    Thank you

No ideas plz?

I don’t think there’s a standard way, it just needs to be implemented class by class. At least XhrConnection is created by GWT.create, so it could perhaps be replaced by GWT deferred binding: http://www.gwtproject.org/doc/latest/DevGuideCodingBasicsDeferred.html

Thank you, i ll have a look at it.