การฝึกอบรม
โมดูล
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.
เบราว์เซอร์นี้ไม่ได้รับการสนับสนุนอีกต่อไป
อัปเกรดเป็น Microsoft Edge เพื่อใช้ประโยชน์จากคุณลักษณะล่าสุด เช่น การอัปเดตความปลอดภัยและการสนับสนุนด้านเทคนิค
Html.Table(html as any, columnNameSelectorPairs as list, optional options as nullable record) as table
แสดงตารางที่มีชุดผลลัพธ์ของการเรียกใช้ตัวเลือก CSS ที่ระบุกับ html
ที่ระบุ อาจมีพารามิเตอร์ของระเบียนที่เลือกได้ options
เพื่อระบุคุณสมบัติเพิ่มเติม ระเบียนอาจมีเขตข้อมูลต่อไปนี้:
RowSelector
แสดงตารางจากค่าข้อความ html ตัวอย่าง
การใช้งาน
Html.Table("<div class=""name"">Jo</div><span>Manager</span>", {{"Name", ".name"}, {"Title", "span"}}, [RowSelector=".name"])\
ผลลัพธ์ของ
#table({"Name", "Title"}, {{"Jo", "Manager"}})
แยก href ทั้งหมดจากค่าข้อความ html ตัวอย่าง
การใช้งาน
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.