ngx-datatable Questions
2
Solved
I try to append my custom css to ngx-datatable cell.
<ngx-datatable-column
*ngFor="let column of tableOptions.columnDefs"
[cellClass]="'my-custom-cell'"
...
Css for my-custom-cell :
.my-...
Bats asked 9/11, 2017 at 9:56
3
Solved
I've set up a table using the swimlane/ngx-datatable in an angular 4 application. The table uses the property scrollbarV since it's necessary as a requisite. I want to do exactly as in the example ...
Flown asked 21/2, 2018 at 13:13
1
I overwrote the css for ngx-datatable's datatable-body-cell-label class to allow the contents to wrap when printing. However, as an unwelcome side-effect, wrapped text is getting cut-off when the p...
Puente asked 3/6, 2020 at 19:25
2
Solved
I am currently having issues with getting the ngx-datatable to have the proper css. I have this within my css file to import the proper css.
@import '@swimlane/ngx-datatable/release/index.css';
@...
Astragalus asked 24/5, 2017 at 19:16
6
Solved
I'm storing the column widths of my ngx-datatable inside a database. I get these values using an AJAX call.
How can I set these values for the datatable?
What I've tried:
setting the [width] p...
Anemophilous asked 12/1, 2018 at 14:36
3
Solved
I've got a little problem adding more then one prop to column in ngx-datatable:
columns = [
{ prop: 'semesterName', name: 'סמסטר', resizeable: false },
{ prop: 'eventName', name: 'מפגש', resizea...
Baranowski asked 25/7, 2017 at 6:1
4
Solved
I am building an angular2 web application and I have a ngx-datatable element.
The columns (header) names are numbers.
Is there any way that I can edit those names in view?
After search I could no...
Pyongyang asked 10/10, 2017 at 7:50
5
Solved
I would like to format a date column as a short date in Angular 2 NGX Datatable.
Here is the HTML:
<ngx-datatable
[rows]="toDos"
[columns]="columns">
</ngx-datatable>
Here is th...
Skipbomb asked 30/3, 2017 at 20:41
2
I'm having two issues with using row-detail in ngx-datatable.
rowIndex is not working. I found a github issue describing the problem but it was supposedly fixed around v. 10.0.2 and I'm using 11.1...
Colostomy asked 14/12, 2017 at 0:55
3
I am using ngx-datatable inside my Angular application.
I was wondering if it is possible to use vertical scrolling together with automatic row height. This means that if the text insde a cell of t...
Roughhew asked 2/11, 2018 at 12:48
4
I have a table (ngx-datatable) in which I want to define an "actions" column in which buttons will then be placed for CRUD operations.
Creating the column and placing the buttons worked, but I hav...
Grooved asked 14/6, 2019 at 4:51
3
Solved
i am using ngx-datatable in my angular project.
Columns are -> "Estimated Production Rate", "Wk1Rate", "WK2Rate", "WK3Rate".
I applied Wrapping for text using css so that to accommodate text - "E...
Thetos asked 22/1, 2019 at 11:34
2
My form array html mark up works perfectly,
(shortened snapshot)
<div formArrayName="partners">
<div class="row" *ngFor="let ctrl of this.patientRestrationForm.get('partners').controls;...
Summersummerhouse asked 11/3, 2018 at 3:14
8
I've been trying to get this working with no luck. I've been referencing these resources for help:
http://swimlane.github.io/ngx-datatable/#filter
https://github.com/swimlane/ngx-datatable/blob/mas...
Hypoacidity asked 14/7, 2017 at 15:6
2
I'm looking for a way to add columns to a ngx-datatable "dynamically" but I am not able to find a way. What I am trying to accomplish is some sort of calendar. To keep it simple let's say I've got ...
Arabist asked 13/6, 2017 at 18:33
2
Solved
I'm creating a reusable datatable using ngx-datatable and I would like to have dynamic components rendered inside the row detail. The datatable component receives a component class as an argument f...
Lutanist asked 26/12, 2019 at 7:57
4
Solved
I'm working on an Angular 2 project.
I use ngx-datatable to display a list of users:
<ngx-datatable class="material"
[rows]="rows"
[columnMode]="'force'"
[headerHeight]="40"
[footerHeight]="40"...
Lanceolate asked 6/9, 2017 at 7:20
4
Solved
This question might have answers already as I have seen some, which were not helped me to solve the issue. My issue is rowClass in ngx-datatable is not working for me.
Datatable code - test.compon...
Congeries asked 28/3, 2018 at 10:15
2
Solved
I'm filtering my table with an input and am wanting to reset the table to the first page whenever the filter is updated. Right now the table shows and the filtering works but the table page doesn't...
Vesicate asked 13/4, 2017 at 19:10
3
I am new to angular and ngx datatable. how to get row data on mouse click event
onClick(event) {
// I need to get row data here
}
Alfredoalfresco asked 21/8, 2018 at 13:0
1
Requirement:
Showing dynamic data using ngx-datatable and use paging using page id
Description :
I have a dynamic data where I am displaying it using the ngx-datatable in angular and here every...
Marita asked 21/4, 2019 at 14:0
1
I am using Ngx-datatable with Angular.
https://github.com/swimlane/ngx-datatable
Its loading data without any problems.
The problem I have is ngx-datadatable is rendering whenever I move the mou...
Phony asked 22/1, 2018 at 8:16
2
Solved
I'm using ngx-datatable with the bootstrap theme. I can't find or figure out how to change the styling for when the mouse is hovered over a cells?. In this example it goes grey
http://swimlane.git...
Lavonia asked 17/2, 2018 at 11:53
1
Solved
I'm just following the demo to show a simple datatable. Here is my code:
columns = [
{name: 'ID', prop: 'id'},
{name: 'Street Address', prop: 'address.street'},
{name: 'Suburb', prop: 'a...
Northeast asked 12/5, 2018 at 3:54
2
Solved
I need to remove the padding from ngx-datatable header cells and body cells.
My actual solution looks like this:
.datatable-body-cell {
padding: 0 !important;
}
.datatable-header-cell {
paddin...
Until asked 9/5, 2018 at 7:30
1 Next >
© 2022 - 2024 — McMap. All rights reserved.