[Vuejs]-How to add event listeners with RevoGrid JSX Custom content render?

0👍

Does this help? You’re right that the JSX syntax is a bit different than regular Vue

https://github.com/vuejs/jsx#directives

<input vOn:click={this.newTodoText} />

0👍

It seems RevoGrid is using JSX to build layout only and does not manage event listeners. It just ignores any non-standard HTML attributes. So I came up with using render functions instead of JSX.

Leave a comment