Hi there,
we are trying to set some aria-states on FormItems. If i'm replacing the first DynamicForm from this sites and replace it with the form in the codeblock, the ariaStates are not rendered into the input-field.
https://smartclient.com/smartclient-...ariousControls
same case with the latest version 14 https://smartclient.com/smartclient/...ariousControls
As far as I understood it should be possible (https://smartclient.com/smartclient-...Item.ariaState), and it worked on multiple Canvas elements like Img (https://smartclient.com/smartclient-...ch%3DariaState).
Is there something wrong with my definition?
Best regards
we are trying to set some aria-states on FormItems. If i'm replacing the first DynamicForm from this sites and replace it with the form in the codeblock, the ariaStates are not rendered into the input-field.
https://smartclient.com/smartclient-...ariousControls
same case with the latest version 14 https://smartclient.com/smartclient/...ariousControls
Code:
isc.DynamicForm.create({
ID: "form1",
width: 620,
colWidths: [190, "*"],
fields: [
{name: "text", title:"Test Aria State Here", type:"text", hint: "A plain text field", wrapHintText: false,
ariaState: { "required": true, "describedby": "usernameDesc" }}
],
values: { slider: 4 }
});
Is there something wrong with my definition?
Best regards
Comment