Ivan Furnadjiev

Results 97 comments of Ivan Furnadjiev

Yes... the row height is calculated on the client and send to the server with the next request. I can only suggest a workaround here (re-layout the editor with timerExec):...

The `timerExec` is only needed to start a server push request and trigger another UI request with updated item "height" property. The actual delay here is not important. Of course,...

About the workaround: To eliminate editor flickering when resizing it, you can create the editors in `timerExec` instead of calling `layout`.

Did you try the workaround? Can we close this issue as wontfix?

Snippet to reproduce the issue: ```java package main; import org.eclipse.jface.bindings.keys.KeyStroke; import org.eclipse.jface.fieldassist.ContentProposalAdapter; import org.eclipse.jface.fieldassist.IContentProposal; import org.eclipse.jface.fieldassist.IContentProposalListener; import org.eclipse.jface.fieldassist.IContentProposalProvider; import org.eclipse.jface.fieldassist.TextContentAdapter; import org.eclipse.rap.rwt.application.AbstractEntryPoint; import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.Text;...

That's currently not possible.

There is no an easy way to disable the week numbers on the client-side widget (Calendar.js), but in general it's possible. It will also require a new RWT specific API...

We have to consider using `pointer` events instead of `mouse` events on low DOM level everywhere in the RAP framework. Browser compatibility: https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent

Change in EventHandler.js: "mouseover" -> "pointerover" "mousemove" -> "pointermove" "mouseout" -> "pointerout" "mousedown" -> "pointerdown" "mouseup" -> "pointerup"