This is a migrated thread and some comments may be shown as answers.

Business Object Card View

4 Answers 101 Views
CardView
This is a migrated thread and some comments may be shown as answers.
Mark
Top achievements
Rank 1
Mark asked on 21 Oct 2019, 03:18 PM

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

Sort by
0
Dimitar
Telerik team
answered on 22 Oct 2019, 08:49 AM

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

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0
Mark
Top achievements
Rank 1
answered on 22 Oct 2019, 09:45 AM

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?

0
Accepted
Dimitar
Telerik team
answered on 22 Oct 2019, 01:40 PM

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

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0
Mark
Top achievements
Rank 1
answered on 23 Oct 2019, 03:52 PM
That is exactly what I wanted, thanks Dimitar
Tags
CardView
Asked by
Mark
Top achievements
Rank 1
Answers by
Dimitar
Telerik team
Mark
Top achievements
Rank 1
Share this question
or