Tabindex on radzen components

Hi there!

I need to set the tab index of various inputs on my view, I've tried adding the "tabindex" attribute to the textbox components, unfortunately, this doesn't work because Radzen adds the attribute to the rz tag instead of the input tag. Is there a way to make this work?

Thanks in advance!

No, this isn't supported at the moment.

I handled the situation in this way:

Added the (keydown.Tab) attribute to the components I want to specify the next Element to focus after tab and as the value, I set the function this.tabSpecificElement($event, ElementId)

tabSpecificElement(event, nextElementId): void {
    event.preventDefault();
    const nextElementToFocus = <HTMLInputElement>document.querySelector(nextElementId);
    nextElementToFocus.focus();
}

This does the job!