Home
last modified time | relevance | path

Searched refs:commentText (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/docs/zh-cn/application-dev/ui/
H A Dui-js-building-ui-layout-comment.md6 …以使用input组件实现输入留言的部分,使用text组件实现留言完成部分,使用commentText的状态标记此时显示的组件(通过if属性控制)。在包含文本完成和删除的text组件中关联click…
13 <div if="{{!commentText}}">
17 <div if="{{commentText}}">
72 commentText: false,
75 this.commentText = !this.commentText;
/ohos5.0/docs/en/application-dev/ui/
H A Dui-js-building-ui-layout-comment.md7commentText to mark the **Text** component (controlled by the if attribute). Associate the click e…
13 <div if="{{!commentText}}">
17 <div if="{{commentText}}">
72 commentText: false,
75 this.commentText = !this.commentText;
/ohos5.0/commonlibrary/ets_utils/js_api_module/convertxml/test/
H A Dtest_convertxml.cpp228 napi_value commentText = nullptr; variable
232 …EXPECT_EQ(napi_get_named_property(env, element, op.comment.c_str(), &commentText), napi_status::na…
237 convertXml->DealNapiStrValue(env, commentText, commentTextStr);
/ohos5.0/commonlibrary/ets_utils/js_api_module/xml/
H A Djs_xml.cpp1373 std::string commentText = ParseDelimiterInfo(tagText_.COMMENT_DOUBLE_DASH, returnText); in ParseComment() local
1379 text_ = commentText; in ParseComment()