Logo
Logo
Stockholm-icons / Media / Equalizer Created with Sketch.
Stockholm-icons / Layout / Layout-4-blocks Created with Sketch.
Stockholm-icons / General / User Created with Sketch.
3

Card Tools

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.


                        <div class="card card-custom" id="kt_card_1">
                        	<div class="card-header">
                        		<div class="card-title">
                        			<h3 class="card-label">Card Title</h3>
                        		</div>
                        		<div class="card-toolbar">
                        			<a href="#" class="btn btn-icon btn-sm btn-hover-light-primary mr-1" data-card-tool="toggle" data-toggle="tooltip" data-placement="top" title="Toggle Card">
                        			<i class="ki ki-arrow-down icon-nm"></i>
                        			</a>
                        			<a href="#" class="btn btn-icon btn-sm btn-hover-light-primary mr-1" data-card-tool="reload" data-toggle="tooltip" data-placement="top" title="Reload Card">
                        			<i class="ki ki-reload icon-nm"></i>
                        			</a>
                        			<a href="#" class="btn btn-icon btn-sm btn-hover-light-primary" data-card-tool="remove" data-toggle="tooltip" data-placement="top" title="Remove Card">
                        			<i class="ki ki-close icon-nm"></i>
                        			</a>
                        		</div>
                        	</div>
                        	<div class="card-body">
                        		...
                        	</div>
                        </div>
                        

                        // This card is lazy initialized using data-card="true" attribute. You can access to the card object as shown below and override its behavior
                        var card = new KTCard('kt_card_1');

                        // Toggle event handlers
                        card.on('beforeCollapse', function (card) {
                        	setTimeout(function () {
                        		toastr.info('Before collapse event fired!');
                        	}, 100);
                        });

                        card.on('afterCollapse', function (card) {
                        	setTimeout(function () {
                        		toastr.warning('Before collapse event fired!');
                        	}, 2000);
                        });

                        card.on('beforeExpand', function (card) {
                        	setTimeout(function () {
                        		toastr.info('Before expand event fired!');
                        	}, 100);
                        });

                        card.on('afterExpand', function (card) {
                        	setTimeout(function () {
                        		toastr.warning('After expand event fired!');
                        	}, 2000);
                        });

                        // Remove event handlers
                        card.on('beforeRemove', function (card) {
                        	toastr.info('Before remove event fired!');

                        	return confirm('Are you sure to remove this card ?'); // remove card after user confirmation
                        });

                        card.on('afterRemove', function (card) {
                        	setTimeout(function () {
                        		toastr.warning('After remove event fired!');
                        	}, 2000);
                        });

                        // Reload event handlers
                        card.on('reload', function (card) {
                        	toastr.info('Leload event fired!');

                        	KTApp.block(card.getSelf(), {
                        		overlayColor: '#ffffff',
                        		type: 'loader',
                        		state: 'primary',
                        		opacity: 0.3,
                        		size: 'lg'
                        	});

                        	// update the content here

                        	setTimeout(function () {
                        		KTApp.unblock(card.getSelf());
                        	}, 2000);
                        });
                        

Card Tools

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.


                        <div class="card card-custom" id="kt_card_2">
                        	<div class="card-header">
                        		<div class="card-title">
                        			<h3 class="card-label">Card Title</h3>
                        		</div>
                        		<div class="card-toolbar">
                        			<a href="#" class="btn btn-icon btn-sm btn-primary mr-1" data-card-tool="toggle" data-toggle="tooltip" data-placement="top" title="Toggle Card">
                        			<i class="ki ki-arrow-down icon-nm"></i>
                        			</a>
                        			<a href="#" class="btn btn-icon btn-sm btn-success mr-1" data-card-tool="reload" data-toggle="tooltip" data-placement="top" title="Reload Card">
                        			<i class="ki ki-reload icon-nm"></i>
                        			</a>
                        			<a href="#" class="btn btn-icon btn-sm btn-warning" data-card-tool="remove" data-toggle="tooltip" data-placement="top" title="Remove Card">
                        			<i class="ki ki-close icon-nm"></i>
                        			</a>
                        		</div>
                        	</div>
                        	<div class="card-body">
                        		...
                        	</div>
                        </div>
                        

                        // This card is lazy initialized using data-card="true" attribute. You can access to the card object as shown below and override its behavior
                        var card = new KTCard('kt_card_1');

                        // Toggle event handlers
                        card.on('beforeCollapse', function (card) {
                        	setTimeout(function () {
                        		toastr.info('Before collapse event fired!');
                        	}, 100);
                        });

                        card.on('afterCollapse', function (card) {
                        	setTimeout(function () {
                        		toastr.warning('Before collapse event fired!');
                        	}, 2000);
                        });

                        card.on('beforeExpand', function (card) {
                        	setTimeout(function () {
                        		toastr.info('Before expand event fired!');
                        	}, 100);
                        });

                        card.on('afterExpand', function (card) {
                        	setTimeout(function () {
                        		toastr.warning('After expand event fired!');
                        	}, 2000);
                        });

                        // Remove event handlers
                        card.on('beforeRemove', function (card) {
                        	toastr.info('Before remove event fired!');

                        	return confirm('Are you sure to remove this card ?'); // remove card after user confirmation
                        });

                        card.on('afterRemove', function (card) {
                        	setTimeout(function () {
                        		toastr.warning('After remove event fired!');
                        	}, 2000);
                        });

                        // Reload event handlers
                        card.on('reload', function (card) {
                        	toastr.info('Leload event fired!');

                        	KTApp.block(card.getSelf(), {
                        		overlayColor: '#ffffff',
                        		type: 'loader',
                        		state: 'primary',
                        		opacity: 0.3,
                        		size: 'lg'
                        	});

                        	// update the content here

                        	setTimeout(function () {
                        		KTApp.unblock(card.getSelf());
                        	}, 2000);
                        });
                        

Card Tools

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.


                        <div class="card card-custom" id="kt_card_3">
                        	<div class="card-header">
                        		<div class="card-title">
                        			<h3 class="card-label">Card Title</h3>
                        		</div>
                        		<div class="card-toolbar">
                        			<a href="#" class="btn btn-icon btn-circle btn-sm btn-light-primary mr-1" data-card-tool="toggle">
                        			<i class="ki ki-arrow-down icon-nm"></i>
                        			</a>
                        			<a href="#" class="btn btn-icon btn-circle btn-sm btn-light-success mr-1" data-card-tool="reload">
                        			<i class="ki ki-reload icon-nm"></i>
                        			</a>
                        			<a href="#" class="btn btn-icon btn-circle btn-sm btn-light-danger" data-card-tool="remove">
                        			<i class="ki ki-close icon-nm"></i>
                        			</a>
                        		</div>
                        	</div>
                        	<div class="card-body">
                        		...
                        	</div>
                        </div>
                        

                        // This card is lazy initialized using data-card="true" attribute. You can access to the card object as shown below and override its behavior
                        var card = new KTCard('kt_card_3');

                        // Toggle event handlers
                        card.on('beforeCollapse', function (card) {
                        	setTimeout(function () {
                        		toastr.info('Before collapse event fired!');
                        	}, 100);
                        });

                        card.on('afterCollapse', function (card) {
                        	setTimeout(function () {
                        		toastr.warning('Before collapse event fired!');
                        	}, 2000);
                        });

                        card.on('beforeExpand', function (card) {
                        	setTimeout(function () {
                        		toastr.info('Before expand event fired!');
                        	}, 100);
                        });

                        card.on('afterExpand', function (card) {
                        	setTimeout(function () {
                        		toastr.warning('After expand event fired!');
                        	}, 2000);
                        });

                        // Remove event handlers
                        card.on('beforeRemove', function (card) {
                        	toastr.info('Before remove event fired!');

                        	return confirm('Are you sure to remove this card ?'); // remove card after user confirmation
                        });

                        card.on('afterRemove', function (card) {
                        	setTimeout(function () {
                        		toastr.warning('After remove event fired!');
                        	}, 2000);
                        });

                        // Reload event handlers
                        card.on('reload', function (card) {
                        	toastr.info('Leload event fired!');

                        	KTApp.block(card.getSelf(), {
                        		overlayColor: '#ffffff',
                        		type: 'loader',
                        		state: 'primary',
                        		opacity: 0.3,
                        		size: 'lg'
                        	});

                        	// update the content here

                        	setTimeout(function () {
                        		KTApp.unblock(card.getSelf());
                        	}, 2000);
                        });
                        

Default Collapsed

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.


                        <div class="card card-custom card-collapsed" data-card="true" id="kt_card_4">
                        	<div class="card-header">
                        		<div class="card-title">
                        			<h3 class="card-label">Card Title</h3>
                        		</div>
                        		<div class="card-toolbar">
                        			<a href="#" class="btn btn-icon btn-sm btn-light-primary mr-1" data-card-tool="toggle">
                        			<i class="ki ki-arrow-down icon-nm"></i>
                        			</a>
                        			<a href="#" class="btn btn-icon btn-sm btn-light-success mr-1" data-card-tool="reload">
                        			<i class="ki ki-reload icon-nm"></i>
                        			</a>
                        			<a href="#" class="btn btn-icon btn-sm btn-light-danger" data-card-tool="remove">
                        			<i class="ki ki-close icon-nm"></i>
                        			</a>
                        		</div>
                        	</div>
                        	<div class="card-body">
                        		...
                        	</div>
                        </div>
                        

                        // This card is lazy initialized using data-card="true" attribute. You can access to the card object as shown below and override its behavior
                        var card = new KTCard('kt_card_4');

                        // Toggle event handlers
                        card.on('beforeCollapse', function (card) {
                        	setTimeout(function () {
                        		toastr.info('Before collapse event fired!');
                        	}, 100);
                        });

                        card.on('afterCollapse', function (card) {
                        	setTimeout(function () {
                        		toastr.warning('Before collapse event fired!');
                        	}, 2000);
                        });

                        card.on('beforeExpand', function (card) {
                        	setTimeout(function () {
                        		toastr.info('Before expand event fired!');
                        	}, 100);
                        });

                        card.on('afterExpand', function (card) {
                        	setTimeout(function () {
                        		toastr.warning('After expand event fired!');
                        	}, 2000);
                        });

                        // Remove event handlers
                        card.on('beforeRemove', function (card) {
                        	toastr.info('Before remove event fired!');

                        	return confirm('Are you sure to remove this card ?'); // remove card after user confirmation
                        });

                        card.on('afterRemove', function (card) {
                        	setTimeout(function () {
                        		toastr.warning('After remove event fired!');
                        	}, 2000);
                        });

                        // Reload event handlers
                        card.on('reload', function (card) {
                        	toastr.info('Leload event fired!');

                        	KTApp.block(card.getSelf(), {
                        		overlayColor: '#ffffff',
                        		type: 'loader',
                        		state: 'primary',
                        		opacity: 0.3,
                        		size: 'lg'
                        	});

                        	// update the content here

                        	setTimeout(function () {
                        		KTApp.unblock(card.getSelf());
                        	}, 2000);
                        });
                        

Notifications 24 New

Quick Actions finance & reports

User Profile 12 messages

Recent Notifications
Stockholm-icons / Home / Library Created with Sketch.
Another purpose persuade Due in 2 Days
+28%
Stockholm-icons / Communication / Write Created with Sketch.
Would be to people Due in 2 Days
+50%
Stockholm-icons / Communication / Group-chat Created with Sketch. -27%
Stockholm-icons / General / Attachment2 Created with Sketch.
The best product Due in 2 Days
+8%
System Messages
Top Authors Most Successful Fellas
+82$
Popular Authors Most Successful Fellas
+280$
New Users Most Successful Fellas
+4500$
Active Customers Most Successful Fellas
+4500$
Bestseller Theme Most Successful Fellas
+4500$
Notifications
Stockholm-icons / Home / Library Created with Sketch.
Another purpose persuade Due in 2 Days
+28%
Stockholm-icons / Communication / Write Created with Sketch.
Would be to people Due in 2 Days
+50%
Stockholm-icons / Communication / Group-chat Created with Sketch. -27%
Stockholm-icons / General / Attachment2 Created with Sketch.
The best product Due in 2 Days
+8%
Customer Care
Reports
Memebers
Stockholm-icons / Navigation / Up-2 Created with Sketch.

Select A Demo