Bootstrap Card Class

Alex Onsman
Updated on 18-Jun-2020 09:07:37

359 Views

To create a card in Bootstrap, use the .card class and add card body as well −   Basic card You can also set the Bootstrap card title and card footer using the card-title and card-title class respectively.The following is the code to create a Bootstrap card −ExampleLive Demo       Bootstrap Example                          Demo Card          This is the body of the card.    

Data Preview Option in HANA Modeling View in SAP HANA

SAP ABAP Expert
Updated on 18-Jun-2020 09:05:24

620 Views

Once HANA Modeling view is activated, you can use Data Preview option to analyze the data in HANA Modeling view. To see Data Preview, you can right-click on View name → Data PreviewYou can also click on the icon as shown in below snapshot:

Bootstrap 4 Float Left Class

Alex Onsman
Updated on 18-Jun-2020 09:05:18

2K+ Views

Use the float-left class in Bootstrap to float an element to the left.To place it on the left −   I am on the left.   I am on the left. You can try to run the following code to implement the float-left class −ExampleLive Demo   Bootstrap Example             Text   The following text is on the left:       I am on the left.  

Wrap Flex Items in Reversed Order in Bootstrap

Alex Onsman
Updated on 18-Jun-2020 09:03:19

297 Views

To wrap flex items in reverse order on different screen sizes, you need to use the flex-*wrap-reverse class.The class gives options to reverse and wrap flex items on small, medium, large, and extra large screen sizes −Small Screen Size (flex-sm-wrap-reverse)   Goal 1   Goal 2   Goal 3   Goal 4   .   .   . Large Screen Size (flex-lg-wrap-reverse)   Goal 1   Goal 2   Goal 3   Goal 4   .   .   . You can try to run the following code to work with flex-*wrap-reverse class −ExampleLive Demo   ... Read More

Check Column Properties in an Attribute View in SAP HANA

John SAP
Updated on 18-Jun-2020 09:02:41

258 Views

This can be easily checked in Details pane. You need to select column name for which you want to check Properties of a column → right click → Properties

Float an Element to the Right with Bootstrap 4

Alex Onsman
Updated on 18-Jun-2020 09:00:40

215 Views

If you want to float an element on the right, you need to use the float-right class.Set it on the right −   The text is on right! Let us see an example to float element on the right −ExampleLive Demo   Bootstrap Example                 Guidelines           The text is on right!       This is demo text.      

HTML DOM Geolocation Position Property

AmitDiwan
Updated on 18-Jun-2020 08:59:53

209 Views

The HTML DOM Geolocation coordinates property is used for getting a user’s device position and altitude on earth. The user have to approve that he/she wants to give coordinates before this property could work. This is done so that users privacy isn’t compromised. This can be used for tracking various devices location.PropertiesFollowing is the position property −Note − The below properties are read-only −PropertyDescriptionposition.coordsTo return a coordinates object having information like latitude, longitude, altitude, and speed of the device on the earth. It also has an accuracy value describing how accurate the measurements are in meters.position.timestampTo representing the time and ... Read More

Performance Analysis of an Attribute View in SAP HANA

SAP Developer
Updated on 18-Jun-2020 08:59:49

446 Views

In SAP HANA Modeling, you have an option of switching to Performance Analysis mode. This is used to check if Joins in Attribute view are meeting with performance optimized joins and cardinality based on data in the table.You can see 2 options when you select Performance Analysis mode:Join Details:This defines Join type used and proposed cardinality based on data in the tableData Source Details:Defines table type, partition type and a number of rows in tables.

Create a Grid of Cards Using Bootstrap 4 Card Deck Class

David Meador
Updated on 18-Jun-2020 08:58:09

693 Views

Use the card-deck class in Bootstrap to form a grid of cards with equal width and height.Set the cards inside the following div −   Let us set the grid of cards now in the card-deck class −           Nothing new!   You can try to run the following code to implement the card-deck classExampleLive Demo       Bootstrap Example                               Demo Messages     Note: Resize the browser to check the effect.                             Nothing new!                                      Warning! Compile-time error!          Check again!                             We won!            

Bootstrap Hidden BS Tooltip Event

David Meador
Updated on 18-Jun-2020 08:56:19

279 Views

The hidden.bs.tooltip event in Bootstrap fires when the tooltip is hidden −$("[data-toggle='tooltip']").on('hidden.bs.tooltip', function(){   alert('Tooltip is completely hidden now.'); });The data-toggle attribute is set before as shown below −   Timings You can try to run the following code to implement the hidden.bs.tooltip event −ExampleLive Demo       Bootstrap Example                             Event     Here tooltip will be displayed using the "Show" buttpn and can be hidden using the "Hide" button.     Timings ... Read More

Advertisements