Convert lowercase value to uppercase

Tags: #<Tag:0x00007f8b23ddc920>

Hi,

I have a requirement that, if the user types in lowercase I have to convert it to uppercase while typing itself means on each key press if the value is in lowercase I have to change it to uppercase. Do we have any hook to achieve this, or can you please help me how I can achieve this in handsontable.

Regards,
Bala

Hey @ebalasubramanian24

it looks like you need to construct a custom editor. When it comes to callbacks you’d need beforeKeyDown.

Okay, Thank you… I am not sure how to write custom editor, can u please share me a demo of custom editor to implement my requirement in angular 6.

here https://stackblitz.com/edit/angular-handsontable-custom-editor?file=app%2Fapp.component.ts is a sample of a custom editor inside a Angular app, lines 7-18 and defined by 30 line.