Vaadin 14.4.0 Grid TemplateRenderer

Hello,
is it possible to get the input value from the following Event inside the TemplateRenderer?

grid.addColumn(TemplateRenderer.<TestData>of("<input on-input='inputEvent' value='[[item.v]
]'></input> ")
				.withProperty("v", data -> data.toString()).withEventHandler("inputEvent", data -> {
					System.out.print("How to get the changed input?");
				}));

Best
Jan

This looks like quite the same case as this slightly older answer that I wrote: https://vaadin.com/forum/thread/18442143/18448100

brilliant, thank you!