SmartClient Version: v9.1p_2016-04-15/Pro Development Only (built 2016-04-15)
Google Chrome Version 43.0.2357.125 unknown (64-bit) (any browser)
We have a layout that contain 2 components added as a member. We have another component added to the same layout but as a child. When tabbing through these components in the layout, the component added as a child was not focused as expected. Is it possible to set it up such that the component added as a child would be focused after tabbing out of the last component added as a member? For example, could we modify the tabIndex of the child so that it continues from the last member of the layout?
Using the result of the code below:
- If you start tabbing from "Member 1", it will focus "Member 2". This successfully happens.
- If you press tab from "Member 2", it will not focus "Child 3" because it is not added as a member.
Google Chrome Version 43.0.2357.125 unknown (64-bit) (any browser)
We have a layout that contain 2 components added as a member. We have another component added to the same layout but as a child. When tabbing through these components in the layout, the component added as a child was not focused as expected. Is it possible to set it up such that the component added as a child would be focused after tabbing out of the last component added as a member? For example, could we modify the tabIndex of the child so that it continues from the last member of the layout?
Using the result of the code below:
- If you start tabbing from "Member 1", it will focus "Member 2". This successfully happens.
- If you press tab from "Member 2", it will not focus "Child 3" because it is not added as a member.
Code:
isc.VLayout.create({
ID: "container",
members: [
isc.HStack.create({
ID: "stack",
members: [
isc.Button.create({
title: "Member 1"
}), isc.Button.create({
title: "Member 2"
})
]
})
]
});
container.addChild(isc.Button.create({
left: 200,
title: "Child 3"
}));
Comment