Can I replicate this Table in Wix Studio?

image

I’m looking to recreate the fee structure design from the image and integrate it with a CMS in Wix Studio. Presently, the tables in Wix Studio follow a standard column and row format. Would implementing a design like this require custom code?

Hi, Denzel_Witbooi !

Basically, I think you can do it by adding a table element on the Wix Studio page, editing the design of the table, and inserting item data into it. There are probably two ways to insert the data, but even if you use Velo code, I don’t think it’s difficult.

Simple Example from the URL below

import wixData from "wix-data";

// ...

wixData
  .query("myCollection")
  .find()
  .then((results) => {
    $w("#myTable").rows = results.items;
  });

https://dev.wix.com/docs/velo/api-reference/$w/table/rows

1 Like