awatif icon indicating copy to clipboard operation
awatif copied to clipboard

Grid: support data of object type

Open madil4 opened this issue 4 months ago • 0 comments

const fields = [
  {
   field:"parameterOne",
   text:"Parameter One",
   editable: { type: "float" }
  },
  {
    field:"parameterTwo",
    text:"Parameter Two",
    editable: { type: "float" }
  },
];
const data = {
  parameterOne: 10,
  ParameterTwo: 30
}

const gridElm = grid({fields,data})

madil4 avatar Oct 08 '24 09:10 madil4