Hi,
is it possible to localize a control by it's id?
I know that i can localize a textbox with a localization-object like this:
{
"de-DE": {
"textbox": {
"placeholder": "Suchen ..."
}
}
}
This works fine. But what if i have multiple textboxes?
Every textbox has the same placeholder text.
Can i somehow access each textbox via id in the localization-object?
I tried to do it like this:
"textbox.id['inputSearch']": {
"placeholder": "Suchen ..."
}
But this does not seem to work.
Is there a way to set the localization for each control individually.
Thank you.