학습
모듈
Author a basic formula that uses tables and records in a Power Apps canvas app - Training
Learn how to author a basic formula that uses tables and records in a Power Apps canvas app.
Html.Table(html as any, columnNameSelectorPairs as list, optional options as nullable record) as table
제공된 html
대해 지정된 CSS 선택기를 실행한 결과가 포함된 테이블을 반환합니다. 추가 속성을 지정하기 위해 선택적 레코드 매개 변수인 options
제공할 수 있습니다. 레코드에는 다음 필드가 포함될 수 있습니다.
RowSelector
샘플 html 텍스트 값에서 표를 반환합니다.
사용량
Html.Table("<div class=""name"">Jo</div><span>Manager</span>", {{"Name", ".name"}, {"Title", "span"}}, [RowSelector=".name"])\
출력
#table({"Name", "Title"}, {{"Jo", "Manager"}})
샘플 html 텍스트 값에서 모든 href를 추출합니다.
사용량
Html.Table("<a href=""/test.html"">Test</a>", {{"Link", "a", each [Attributes][href]}})
출력
#table({"Link"}, {{"/test.html"}})
학습
모듈
Author a basic formula that uses tables and records in a Power Apps canvas app - Training
Learn how to author a basic formula that uses tables and records in a Power Apps canvas app.