Home
last modified time | relevance | path

Searched refs:tabIndex (Results 1 – 25 of 26) sorted by relevance

12

/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-universal-attributes-focus.md31 ## tabIndex<sup>9+</sup>
33 tabIndex(index: number)
45tabIndex大于0的组件,则tab键走焦只会在tabIndex大于0的组件内按照tabIndex的值从小到大并循环依次走焦。若没有配置tabIndex大于0的组件,则tabIndex等于0的组…
78 …仅在初次创建容器节点第一次获焦时生效。<br/>默认值:false<br/>**说明:** <br/>必须与[tabIndex](#tabindex9)联合使用,当某个容器设置了tabIndex,…
241 该示例通过配置defaultFocus可以使绑定的组件成为页面创建后首次获焦的焦点,配置groupDefaultFocus可以使绑定的组件成为tabIndex容器创建后首次获焦的焦点,配置focus…
282 .tabIndex(1) // 该Column组件为按TAB键走焦的第一个获焦的组件
310 .tabIndex(2) // 该Column组件为按TAB键走焦的第二个获焦的组件
362 .tabIndex(3) // 该Column组件为按TAB键走焦的第三个获焦的组件
374 首次按TAB键,焦点切换到tabIndex(1)的容器上,且自动走到其内部的groupDefaultFocus绑定的组件上:
378 第二次按TAB键,焦点切换到tabIndex(2)的容器上,且自动走到其内部的groupDefaultFocus绑定的组件上:
[all …]
/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_4.0.11.2/
H A Dchangelogs-arkui.md29 ## cl.arkui.4 焦点tabIndex走焦方式由非循环走焦更改为循环走焦。
32 4.0.10.2版本之前,焦点tabIndex走焦方式为非循环走焦
34 4.0.10.2版本及之后,焦点tabIndex走焦方式为循环走焦
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-universal-attributes-focus.md31 ## tabIndex<sup>9+</sup>
33 tabIndex(index: number)
45tabIndex** values are present, only these components are reachable through sequential focus naviga…
78 …r>**NOTE**<br>This parameter must be used together with [tabIndex](#tabindex9). When **tabIndex** …
241 …component as the initial focus after the container with the specified **tabIndex** is created. **f…
282 ….tabIndex(1) // The column is the initial component to have focus in sequenti…
310 ….tabIndex(2) // The column is the second component to have focus in sequentia…
362 ….tabIndex(3) // The column is the third component to have focus in sequential…
374 … for the first time, the focus switches to the container that matches **tabIndex(1)** and automati…
378 …for the second time, the focus switches to the container that matches **tabIndex(2)** and automati…
[all …]
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_4.0.11.2/
H A Dchangelogs-arkui.md29 ## cl.arkui.4 Change of Focus Navigation for tabIndex
32 In versions earlier than 4.0.10.2, the focus navigation for **tabIndex** is not cyclic.
34 In 4.0.10.2 and later versions, the focus navigation for **tabIndex** is cyclic.
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/focusable/
H A Dfocusable_component.h196 void SetTabIndex(int32_t tabIndex) in SetTabIndex() argument
198 tabIndex_ = tabIndex; in SetTabIndex()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/tab_bar/
H A Drender_tab_content.cpp42 int32_t tabIndex = controller_ ? controller_->GetIndex() : 0; in Update() local
43 if (tabIndex >= contentCount_) { in Update()
45 tabIndex = controller_->GetIndex(); in Update()
47 currentIndex_ = tabIndex; in Update()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/focus/
H A Dfocus_node.h186 void SetTabIndex(int32_t tabIndex) in SetTabIndex() argument
188 tabIndex_ = tabIndex; in SetTabIndex()
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/filter/source/
H A Dfilter.ets233 .tabIndex(colIndex === 0 ? this.rowIndex : -1)
363 .tabIndex(-1)
514 .tabIndex(this.rowIndex)
591 .tabIndex(-1)
993 .tabIndex(index === 0 ? this.multiFilters.length : -1)
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/filter/interfaces/
H A Dfilter.js447 ListItem.tabIndex(colIndex === 0 ? this.rowIndex : -1);
915 Image.tabIndex(-1);
1052 Text.tabIndex(this.rowIndex);
1210 Text.tabIndex(-1);
2258 ListItem.tabIndex(index === 0 ? this.multiFilters.length : -1);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/event/
H A Dfocus_hub.h846 void SetTabIndex(int32_t tabIndex) in SetTabIndex() argument
851 focusCallbackEvents_->tabIndex_ = tabIndex; in SetTabIndex()
H A Dfocus_hub.cpp2702 int32_t tabIndex = 0; in ToJsonValue() local
2710 tabIndex = hub->GetTabIndex(); in ToJsonValue()
2718 json->PutExtAttr("tabIndex", tabIndex, filter); in ToJsonValue()
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/counter/interfaces/
H A Dcounter.js1637 Row.tabIndex(0);
1878 Row.tabIndex(0);
2726 TextInput.tabIndex(0);
2873 TextInput.tabIndex(-1);
3011 TextInput.tabIndex(-2);
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/counter/source/
H A Dcounter.ets1148 .tabIndex(0)
1350 .tabIndex(0)
1908 .tabIndex(0)
2050 .tabIndex(-1)
2184 .tabIndex(-2)
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.2-beta2/
H A Djs-apidiff-arkui.md120 | ArkUI | CommonMethod | tabIndex(index: number): T; | 新增 |
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_component/src/
H A DArkXComponent.ts175 tabIndex(index: number): this {
H A DArkSpan.ts531 tabIndex(index: number): this {
H A DArkComponent.ts3896 tabIndex(index: number): this {
/ohos5.0/docs/en/release-notes/api-diff/v3.2-beta2/
H A Djs-apidiff-arkui.md120 | ArkUI | CommonMethod | tabIndex(index: number): T; | Added|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_component/export/
H A DarkComponent.d.ts105 tabIndex(index: number): this;
540 tabIndex(index: number): this;
1588 tabIndex(index: number): this;
/ohos5.0/docs/zh-cn/application-dev/ui/
H A Darkts-common-events-focus-event.md641 设置当前容器组件的id标识,设置当前容器组件是否为焦点组。焦点组与tabIndex不能混用。
/ohos5.0/docs/en/application-dev/ui/
H A Darkts-common-events-focus-event.md647 …s whether the container is a focus group. Focus groups should not be mixed with **tabIndex** usage.
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkweb/
H A Dts-basic-components-web.md264 …le](../apis-arkui/arkui-ts/ts-universal-attributes-focus.md#focusable)、[tabIndex](../apis-arkui/ar…
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H A DarkComponent.js3745 tabIndex(index) { method in ArkComponent
10114 tabIndex(index) { method in ArkSpanComponent
25503 tabIndex(index) { method in ArkXComponentComponent
/ohos5.0/docs/en/application-dev/reference/apis-arkweb/
H A Dts-basic-components-web.md264 …e](../apis-arkui/arkui-ts/ts-universal-attributes-focus.md#focusable), [tabIndex](../apis-arkui/ar…
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-Release to v3.2-Release/
H A Djs-apidiff-arkui.md1665 |跨平台能力有变化|类名:CommonMethod;<br>方法or属性:tabIndex(index: number): T;<br>旧版本信息:|类名:CommonMethod;<br>方法or…

12