sorry for late reply...
I need to display card in " Carousel" container with next / previous navigation. Please check the below link for Carousel which I need to add card inside the carousel container.
https://getbootstrap.com/docs/4.0/components/carousel/
Note:-
Each Carousel container contain six card
Total card is 30 card,so It requires 5 carousel container
sorry I have another requirement in card.
I need to add popupmenu in card in right side. Please check the below screencast.
|
<div class="control-section">
<div class='row e-card-layout'>
<div class="col-lg-4">
<SfCard>
<CardHeader Title="Hong Kong" SubTitle="Mon, 12.30 PM, Mostly Sunny">
<SfDropDownButton IconCss="e-icons e-profile">
<DropDownMenuItems>
<DropDownMenuItem Text="Dashboard" IconCss=@DASHBOARD></DropDownMenuItem>
<DropDownMenuItem Text="Notifications" IconCss=@NOTIFICATION></DropDownMenuItem>
<DropDownMenuItem Text="User Settings" IconCss=@SETTINGS></DropDownMenuItem>
<DropDownMenuItem Text="Log Out" IconCss=@LOGOUT></DropDownMenuItem>
</DropDownMenuItems>
</SfDropDownButton>
</CardHeader>
<CardContent>
. . .
. . .
</CardContent>
<CardContent EnableSeparator="true"></CardContent>
<CardFooter>
. . .
. . .
</CardFooter>
</SfCard>
</div>
</div>
</div> |
Sorry
I have another below clarification in card
I have an list datasource which contains 5 column and 12 rows.The column contains Below fields
1.Product Image
2.Product Name
3.Product Color
4.Product price
5.Expiry Date
I would like to show product Image in left side
And other field should show in right side.
Please help how to do this..
|
<SfCard Orientation="CardOrientation.Horizontal">
<CardStacked>
<CardContent>
<table class="card-template-wrap">
<colgroup>
<col style="width:75px">
<col style="width:calc(100% - 75px)">
</colgroup>
<tbody>
<tr>
<td><div>Title :</div></td>
<td><div>@card.Title</div></td>
</tr>
………………….
</tbody>
</table>
</CardContent>
</CardStacked>
</SfCard> |