Is there a way I can add controls like a TWebButton to a TWebDBResponsiveGrid? Or have a responsive grid with a TFrame for each record?
A possible way is to create a control and append it to the TWebResponsiveGrid.Items[x].ElementHandle
i.e.
mycontrol := TSomeControl.Create(Owner);
mycontrol.Parent := WebResponsiveGrid;
WebResponsiveGrid.Items[x].ElementHandle.appendChild(mycontrol.ElementHandle);
Thanks Bruno, I'll give it a try.