Hi, I was wondering if someone could help.
I want to create a layout/cardview of a single record, I tried this via layout groups but they don't really fit side by side.
Has this been done before?
4 Answers, 1 is accepted
Hi Mark,
Which part of the layout in the image are you trying to create with the card view?
If you want to recreate the entire page I would suggest using a more complex control like RadDock. Perhaps the different parts can be created with the card view.
I am looking forward to your reply.
Regards,
Dimitar
Progress Telerik
Hi Dimitar,
It is really the entire page I want to create, enclosed in a scrollable panel. However with RadDock, can they be static and have multiple label controls inside them?
Hi Mark,
Yes, you can disable the DragAndDrop and remove the close buttons with the following code:
foreach (var item in radDock1.DockWindows.ToolWindows)
{
item.AllowedDockState = AllowedDockState.Docked;
item.ToolCaptionButtons = ToolStripCaptionButtons.None;
}
You can add any other controls in the ToolWindows as well.
I hope this helps. Please let me know if you have additional questions.
Regards,
Dimitar
Progress Telerik