akveo / ng2-smart-table

Angular Smart Data Table component
https://akveo.github.io/ng2-smart-table/
MIT License
1.63k stars 877 forks source link

Input overlaps it's containing cell #165

Open mag1971 opened 7 years ago

mag1971 commented 7 years ago

All inputs are overlapping their containing cell, right hand side, and unable to find a way to override with css in local app.

screen shot 2017-02-11 at 20 02 22
tadashi-aikawa commented 7 years ago

It reproduced in my environment, too.

image

My settings

this.settings = {
    columns: {
        path: {title: 'Path'},
        status: {title: 'Status'},
        queries: {title: 'Queries'},
        oneUrl: {title: r.summary.one.host, type: 'html'},
        otherUrl: {title: r.summary.other.host, type: 'html'}
    },
    actions: {
        add: false,
        edit: false,
        "delete": false
    }
};

Template

<ng2-smart-table [settings]="settings"
                 [source]="tableSource"
                 (userRowSelect)="showDetail($event.data); sidenav2.open()"
>
</ng2-smart-table>

Dependencies

  "dependencies": {
    "@angular/common": "^2.3.1",
    "@angular/compiler": "^2.3.1",
    "@angular/core": "^2.3.1",
    "@angular/forms": "^2.3.1",
    "@angular/http": "^2.3.1",
    "@angular/material": "^2.0.0-beta.1",
    "@angular/platform-browser": "^2.3.1",
    "@angular/platform-browser-dynamic": "^2.3.1",
    "@angular/router": "^3.3.1",
    "@types/scalike": "0.0.27",
    "aws-sdk": "^2.9.0",
    "core-js": "^2.4.1",
    "hammerjs": "^2.0.8",
    "ng2-smart-table": "^0.5.3-0",
    "rxjs": "^5.0.1",
    "scalike": "0.0.7",
    "ts-helpers": "^1.1.1",
    "zone.js": "^0.7.2"
  },
  "devDependencies": {
    "@angular/compiler-cli": "^2.3.1",
    "@types/aws-sdk": "0.0.42",
    "@types/jasmine": "2.5.38",
    "@types/node": "^6.0.62",
    "angular-cli": "1.0.0-beta.26",
    "codelyzer": "~2.0.0-beta.1",
    "jasmine-core": "2.5.2",
    "jasmine-spec-reporter": "2.5.0",
    "karma": "1.2.0",
    "karma-chrome-launcher": "^2.0.0",
    "karma-cli": "^1.0.1",
    "karma-jasmine": "^1.0.2",
    "karma-remap-istanbul": "^0.2.1",
    "protractor": "~4.0.13",
    "ts-node": "1.2.1",
    "tslint": "^4.3.0",
    "typescript": "~2.0.3"
  }