question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

the checkbox is not visible for selection

See original GitHub issue

I’m submitting a … (check one with “x”)

[ x] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, post on Stackoverflow or Gitter

Current behavior the checkbox is not visible for selection. it is added but invisible

Expected behavior I need checkbox selection.

Reproduction of the problem

What is the motivation / use case for changing the behavior?

Please tell us about your environment:

  • Table version: 11.3.0

  • Angular version: angular 5.x

  • Browser: [all | Chrome XX | Firefox XX | IE XX | Safari XX | Mobile Chrome XX | Android X.X Web Browser | iOS XX Safari | iOS XX UIWebView | iOS XX WKWebView ]

  • Language: [all | TypeScript 2.9.x| ES6/7 | ES5]

Issue Analytics

  • State:open
  • Created 4 years ago
  • Comments:9

github_iconTop GitHub Comments

1reaction
halilpolathalilcommented, Sep 26, 2019

You can provide custom template cells which implements any kind of checkbox.

For example, I do use the official Angular Material library in order to provide custom checkboxes to my cell template.

<ng-template #columnButton2 let-row="row" let-value="value" let-isSelected="isSelected" let-onCheckboxChangeFn="onCheckboxChangeFn" ngx-datatable-cell-template>
   <mat-checkbox [disabled]="disabledInput" [color]="'accent'" [checked]="checkedInput" (change)="onCheckboxChangeFn.call(undefined, $event)"></mat-checkbox>
</ng-template>

You can check how to pass custom cell templates at the official docs.

Cheers!

It is not work. My checkbox template can not be applied. The checkbox style of ngx template is applied automatically. I cant Not change the style of checkbox.

0reactions
anthony-btcommented, Sep 27, 2019

I had the same issue. Sometime I need to use “ng-deep::” to be sure to override the CSS style.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Display of selected checkboxes not working in javascript
Here is something a little bit more clean: function displayHobbies() { let HobbiesInput = [ document.getElementById('dancing'), document.
Read more >
Checkmarks not visible on forms - WordPress.org
I have a couple WPForms on my site. For the sections with checkboxes, the checkmark is not visible when selected. The checkmarks seem...
Read more >
Checkbox Selected (Tick Mark) is not visible on the form
Resolution · 1. Open the custom theme record (sys_ux_theme) that is being used on the instance. (check the value of the system property...
Read more >
How to check a checkbox which is not visible?
First verify the checkbox is already selected or not by using the if condition. Use this below code boolean iconEnabled = driver.
Read more >
checked - CSS: Cascading Style Sheets - MDN Web Docs
The user can engage this state by checking/selecting an element, ... visibility: visible; } /* Style the button when the checkbox is checked ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found