Questions tagged [nebular]

A toolkit which provides a set of native Angular (Not AngularJS 1.x) components, themeable components, authentication and security layers.

Nebular is a set of essential modules for application.

The purpose of the modules is to solve generic tasks faster and more efficient so that you can focus on business logic and leave routine behind.

What is Nebular and where to start with it ?

353 questions
4
votes
1 answer

Nebular - after login not getting token payload properly

I am using nebular and laravel API with NbPasswordAuthStrategy and NbAuthJWTToken class, as follwoing: NbAuthModule.forRoot({ strategies: [ NbPasswordAuthStrategy.setup({ name: 'email', token: { class: NbAuthJWTToken, …
Muhammad Sultan
  • 473
  • 5
  • 19
3
votes
1 answer
3
votes
3 answers

How to pass and receive object in component to NbDialog component nebular ngx-admin?

I want to pass object to NbDialogComponent and how to get object from NbDialogComponent. Anyone say, Is way correct? I try this way for pass object, Component file: import { NbDialogService } from "@nebular/theme"; constructor(private…
Ragu
  • 772
  • 9
  • 29
3
votes
1 answer

How to pass data to Angular component using Nebular dialog Component?

I'm trying to send my objectData from a componentA, to DialogComponent to edit object info. ComponentA opens the dialog and passes the data like this: export class ComponentA implements OnInit { constructor(private dialogService: NbDialogService)…
3
votes
0 answers

How to install new ngx-admin Material Themes?

I have .NET Core Akveo NGX Admin bundle and I'd like to know how to install new Material Themes in my current application. Anyone can help?
JdMV
  • 116
  • 4
3
votes
1 answer

Akveo Nebular Angular Theme update 5.0 error

did a regular npm install to 5.0 from 4.0 and this keeps happening `../node_modules/@nebular/theme/components/accordion/accordion-item.component.d.ts:35:9 - error TS1086: An accessor cannot be declared in an ambient context. 35 set disabled(val:…
Sevensnake
  • 119
  • 1
  • 2
  • 14
3
votes
2 answers

change width of columns from Nebular NbTreeGridComponent

how can you change the width of the columns of an Nebular NbTreeGridComponent? In the docs, they mention equalColumnsWidth, which default value is 'false'. However, my columns remain equal width, no matter what I do.. here's my code html:
WIMA
  • 53
  • 5
3
votes
1 answer

How to unchecked and check the Nebular Check box dynamically after rendering

I am using a nebular theme checkbox in the Angular 8 App. Enable i am updating the checkbox using "enable_checked" Boolean .When the component loaded it…
3
votes
1 answer

How to programmatically set selected index in Nebular nb-stepper?

I am experimenting with the nb-stepper component, and would like to set the selectedIndex in my angular component. When specifying two-way binding on [(selectedIndex)] after refreshing my activities, the nb-step is not updated to show the selected…
Todd Worden
  • 193
  • 1
  • 3
  • 9
3
votes
1 answer

Nebular theme overwrite theme variables

I was trying to overwrite the corporate theme variables (nb-action colors) by setting the corresponding variables in my theme.scss file. It looks as follows: @import '~@nebular/theme/styles/theming'; @import…
Rene
  • 31
  • 1
  • 3
3
votes
2 answers

Default checked true in Nebular?

I am trying to make the default checked button in ngx. In the component.ts file I am having the following script options = [ { value: 'URL', label: 'URL' , checked: true}, //checked true not working { value: 'UPLOAD', label: 'Upload File'…
mkHun
  • 5,891
  • 8
  • 38
  • 85
3
votes
3 answers

How to collapse menu item in a sidebar in nebular NBmenu, when clicked outside or another menu item

I am using nebular menu , in my sample project . I have a scenario as following. I have suppose 4 menu items in the sidebar , and each menu item has say 4 to 5 sub menus. eg. menu 1 submenu 1 submenu 2 menu 2 submenu 1 submenu 2 …
Chetan Birajdar
  • 461
  • 9
  • 22
2
votes
1 answer

NbChat component doesn't show and NullInjectorError in console, no idea how to fix

I'm attempting to use Nebular to setup a chat to display a static array of messages. Currently, when I try to just do as shown in the doc here, I get the error ERROR Error: Uncaught (in promise): NullInjectorError:…
2
votes
1 answer

How can I make nb-layout-column center and max width fixed

I am working with Nebular on an Angular app, and I want to have a single column without a header and footer. I am also using Tailwind for my CSS and I want to center the column and also add max width to it. Currently I have something like…
2
votes
1 answer

Nebular Tree Grid Drag and Drop rearranging Nodes

I'm looking for a solution for Nebular Tree Grid drag and drop option for rearranging hierarchical table data. Example for nested Nodes (in my case the hierarchy is a little bigger): 1 Chapter 1.1 Element 1.2 Element 2 Chapter 2.1 Element My…
CrazyEight
  • 147
  • 1
  • 18
1
2
3
23 24