Skip to content

Commit

Permalink
When there is tableSlider checkbox can't taggle state
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksandr Dmitriev committed Mar 17, 2017
1 parent 8a7b15c commit 7f4537b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Eludia/Presentation/Skins/TurboMilk.pm
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -2868,7 +2868,7 @@ sub draw_text_cell {

$html .= '<nobr>' unless $data -> {no_nobr};

if ($has_href) {
if ($has_href && index($data -> {label}, 'type=checkbox') == -1) {

$a_attributes_html = dump_attributes ({
id => $data -> {a_id},
Expand Down Expand Up @@ -2896,7 +2896,7 @@ sub draw_text_cell {
$html .= '</i>' if $data -> {italic} || $options -> {italic};
$html .= '</b>' if $data -> {bold} || $options -> {bold};

if ($has_href) {
if ($has_href && index($data -> {label}, 'type=checkbox') == -1) {

$html .= '</span></a>';

Expand Down

0 comments on commit 7f4537b

Please sign in to comment.