Pages UI
v5.0.1 - Pages Angular
Search
⌃K

Quick View

Importing

First import it to your app module or any submodule as you wish
import { SharedModule } from './@pages/components/shared.module';
@NgModule({
declarations : [SidebarComponent,...]
imports: [SharedModule,...]
})
export class AppModule(){}

Example

HTML
<pg-quickview></pg-quickview>

Location

This component is located in @pages/components/quickview
It does not have an ngOutlet for adding content in. Use the quickview.component.html

How to toggle

Include the Toggle service as mention here to any external component us wish
Then use the following function to open
toggleQuickView()