Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
d62c7cd9
D
Docs
项目概览
OpenHarmony
/
Docs
1 年多 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
d62c7cd9
编写于
3月 26, 2022
作者:
O
openharmony_ci
提交者:
Gitee
3月 26, 2022
浏览文件
操作
浏览文件
下载
差异文件
!2607 内源演练问题修改
Merge pull request !2607 from LiAn/master
上级
62129a64
1a39a617
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
17 addition
and
18 deletion
+17
-18
zh-cn/application-dev/reference/apis/js-apis-enterprise-device-manager.md
...n-dev/reference/apis/js-apis-enterprise-device-manager.md
+2
-2
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-textinput.md
...n-dev/reference/arkui-ts/ts-basic-components-textinput.md
+14
-15
zh-cn/application-dev/reference/arkui-ts/ts-container-rowsplit.md
...plication-dev/reference/arkui-ts/ts-container-rowsplit.md
+1
-1
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-enterprise-device-manager.md
浏览文件 @
d62c7cd9
...
...
@@ -477,7 +477,7 @@ enterpriseDeviceManager.setEnterpriseInfo(wantTemp, enterpriseInfo)
setEnterpriseInfo(admin: Want, enterpriseInfo: EnterpriseInfo): Promise
<
boolean
>
设置设备管理员应用的企业信息,使用
callback
形式返回是否设置成功。
设置设备管理员应用的企业信息,使用
Promise
形式返回是否设置成功。
**系统能力:**
SystemCapability.Customation.EnterpriseDeviceManager
...
...
@@ -487,7 +487,7 @@ SystemCapability.Customation.EnterpriseDeviceManager
| 参数名 | 类型 | 必填 | 说明 |
| -------------- | ---------------------------------------------- | ---- | ------------------------ |
| admin |
[
Want
](
js-apis-featureAbility.md#Want类型说明
)
| 是 | 设备管理员应用 |
| enterpriseInfo |
[
EnterpriseInfo
](
#EnterpriseInfo
)
| 是 | 设备管理员应用的
厂商
信息 |
| enterpriseInfo |
[
EnterpriseInfo
](
#EnterpriseInfo
)
| 是 | 设备管理员应用的
企业
信息 |
**返回值:**
...
...
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-textinput.md
浏览文件 @
d62c7cd9
...
...
@@ -25,7 +25,7 @@ TextInput(value?:{placeholder?: string controller?: TextInputController})
| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述 |
| -------- | -------- | -------- | -------- | -------- |
| placeholder | string | 否 | - | 无输入时的提示文本。 |
| controller
<sup>
8+
</sup>
|
[
TextInputController
](
#textinputcontroller
sup8sup
)
| 否 | - | 设置TextInput控制器。 |
| controller
<sup>
8+
</sup>
|
[
TextInputController
](
#textinputcontroller
8
)
| 否 | - | 设置TextInput控制器。 |
## 属性
...
...
@@ -60,6 +60,18 @@ TextInput(value?:{placeholder?: string controller?: TextInputController})
| InputType.Number | 纯数字输入模式。 |
## 事件
| 名称 | 功能描述 |
| -------- | -------- |
| onChange(value:
string)
=
>
void | 输入发生变化时,触发回调。 |
| onSubmit(callback:
(enterKey:
EnterKeyType)
=
>
void) | 回车键或者软键盘回车键触发该回调,参数为当前软键盘回车键类型。 |
| onEditChanged(callback:
(isEditing:
boolean)
=
>
void)
<sup>
(deprecated)
</sup>
| 输入状态变化时,触发回调。 |
| onEditChange(callback:
(isEditing:
boolean)
=
>
void)
<sup>
8+
</sup>
| 输入状态变化时,触发回调。 |
| onCopy
<sup>
8+
</sup>
(callback:(value:
string)
=
>
void) | 长按输入框内部区域弹出剪贴板后,点击剪切板复制按钮,触发回调。
<br/>
value:复制的文本内容。 |
| onCut
<sup>
8+
</sup>
(callback:(value:
string)
=
>
void) | 长按输入框内部区域弹出剪贴板后,点击剪切板剪切按钮,触发回调。
<br/>
value:剪切的文本内容。 |
| onPaste
<sup>
8+
</sup>
(callback:(value:
string)
=
>
void) | 长按输入框内部区域弹出剪贴板后,点击剪切板粘贴按钮,触发回调。
<br/>
value:粘贴的文本内容。 |
### TextInputController<sup>8+</sup>
TextInput组件的控制器。
...
...
@@ -68,7 +80,7 @@ TextInput组件的控制器。
```
controller: TextInputController = new TextInputController()
```
#### c
ontroller.c
aretPosition
#### caretPosition
caretPosition(value:
number): void
...
...
@@ -80,19 +92,6 @@ caretPosition(value: number): void
| value | number |是 | - |设置输入光标的位置。
<br/>
value:从字符串开始到光标所在位置的字符长度。 |
## 事件
| 名称 | 功能描述 |
| -------- | -------- |
| onChange(value:
string)
=
>
void | 输入发生变化时,触发回调。 |
| onSubmit(callback:
(enterKey:
EnterKeyType)
=
>
void) | 回车键或者软键盘回车键触发该回调,参数为当前软键盘回车键类型。 |
| onEditChanged(callback:
(isEditing:
boolean)
=
>
void)
<sup>
(deprecated)
</sup>
| 输入状态变化时,触发回调。 |
| onEditChange(callback:
(isEditing:
boolean)
=
>
void)
<sup>
8+
</sup>
| 输入状态变化时,触发回调。 |
| onCopy
<sup>
8+
</sup>
(callback:(value:
string)
=
>
void) | 长按输入框内部区域弹出剪贴板后,点击剪切板复制按钮,触发回调。
<br/>
value:复制的文本内容。 |
| onCut
<sup>
8+
</sup>
(callback:(value:
string)
=
>
void) | 长按输入框内部区域弹出剪贴板后,点击剪切板剪切按钮,触发回调。
<br/>
value:剪切的文本内容。 |
| onPaste
<sup>
8+
</sup>
(callback:(value:
string)
=
>
void) | 长按输入框内部区域弹出剪贴板后,点击剪切板粘贴按钮,触发回调。
<br/>
value:粘贴的文本内容。 |
## 示例
...
...
zh-cn/application-dev/reference/arkui-ts/ts-container-rowsplit.md
浏览文件 @
d62c7cd9
...
...
@@ -40,7 +40,7 @@ RowSplit()
struct RowSplitExample {
build() {
Column() {
Text('The sec
ant
line can be dragged').fontSize(9).fontColor(0xCCCCCC).width('90%')
Text('The sec
ond
line can be dragged').fontSize(9).fontColor(0xCCCCCC).width('90%')
RowSplit() {
Text('1').width('10%').height(100).backgroundColor(0xF5DEB3).textAlign(TextAlign.Center)
Text('2').width('10%').height(100).backgroundColor(0xD2B48C).textAlign(TextAlign.Center)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录