Questions tagged [ng2-smart-table]

ng2-smart-table is smart table used in web development API

ng-smart-table is a smart table used in web development API like Angular 2+. It is simple to use. It performs CRUD operations easily with provided back-end support. It can sort data quickly. Table contains actions like Insert, Edit, Delete. Further documentation can be found on ng-smart-table

253 questions
0
votes
1 answer

Unable to search into custom rendered cells in Angular ng2-smart-table

One side-effect of rendering a "custom" field is that the global search is no longer able to work in it. I believe this happens because the cell starts out as a json Object and then I render just one string in that object. As a consequence, the…
TheDude
  • 1,421
  • 4
  • 29
  • 54
0
votes
1 answer

Ng2-smart-table - Angular 2 - Columns and same name

Following are the columns of my table, i got just this part of the code products: { title: 'Prodotto', filter: false, class: "colonneTabella", width: "15%", …
Jamil89
  • 165
  • 3
  • 14
0
votes
4 answers

Angular 2: Load data using Server data source into my ng smart table

Has any one figure out on how to load the server data from the ng2-smart table plugin of Angular2. I have few products data that is retrieved from Node API and Im able to display the same onClick event in the browser log. I need to display the same…
phyme
  • 331
  • 2
  • 11
  • 25
0
votes
1 answer

Mean stack: display products into ng smart table

Im trying to display the product data using ng2-smart-table plugin. I am able to get the products in the browser log, but i need to display the same onChange of a drop down value. \app\components\layout\blank-page\blank-page.component.html
phyme
  • 331
  • 2
  • 11
  • 25
0
votes
0 answers

Angular 2 dynamically load data

I browsed around a bit to see if there is a way using which I can render my component with a partially populated object. I am hitting an api where it returns 1000's of records and I was wondering if there was a way using which I can load a table…
Sadiq Ali
  • 1,272
  • 2
  • 15
  • 22
0
votes
1 answer

angular2 smart table is not working

angular2 smart table is not showing the table. I have followed the link git hub app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from…
Sarat
  • 271
  • 5
  • 22
0
votes
1 answer

How can I implement table footer of ng2-smart-table?

I’m now implementing ng2-smart-table in my application. I want to display table footer below the table for additional information such as Sum Amount, Discount Amount and so on. This is my code in typescript file settings = { columns: { …
iPatz
  • 47
  • 1
  • 9
0
votes
2 answers

How to push custom array object in ng2 smart table

https://github.com/akveo/ng2-smart-table In settings object,we define structure to show fields like name, title etc.I want to assign object to columns directly. Object contains fields only.settings = { editable: false, mode: 'inline', add:…
swamiag
  • 1
  • 1
  • 4
0
votes
1 answer

New column in ng2-smart-table created from Object datatype

Does anyone know how to create new column from Object datatype ? How I able to to do it ? Code of my setting and data below for more clearly understanding Thanks in Advance! private settings = { columns: { firstName: { title:…
Sebastien
  • 85
  • 2
  • 7
0
votes
1 answer

Can't use ng2-smart-table in angular 2 project

Steps to create a new angular 2 project: ng new myapp cd myapp npm i ng2-smart-table --save And change the app.module.ts: import { Ng2SmartTableModule } from 'ng2-smart-table'; // ... @NgModule({ imports: [ // ... …
Bagusflyer
  • 12,675
  • 21
  • 96
  • 179
-2
votes
1 answer

complex data in - ng2 smart table

I am using ng2-smart-table for the tabular representation of data received over rest response. But one of the elements is complex. The intention is to display categoryName under category column. category: {id: 1, categoryName: "category 1", active:…
Renjith
  • 1,122
  • 1
  • 19
  • 45
-2
votes
1 answer

why ng2-smart-table doesn't work in Internet Explorer 11?

It doesn't display. "dependencies: "array.from": "^1.0.3", "babel-polyfill": "^6.23.0", "babel-runtime": "^6.23.0", devDependencies: "babel-plugin-transform-runtime": "^6.23.0"," I also added above dependencies.
Hardik
  • 106
  • 9
-3
votes
1 answer

How to custom row when I create row has checkbox in ng2-smart-table?

I want when I create new row, In Status columns is checkbox. In Image is Input text
1 2 3
16
17