Skip to main content

Search and Top Navigation

#15367 new bug ()

Opened January 24, 2020 12:31PM UTC

Last modified April 10, 2020 11:26PM UTC

Checking problem for Checkbox in Tabs

Reported by: DDE31 Owned by:
Priority: minor Milestone: none
Component: ui.checkbxoradio Version: 1.12.1
Keywords: Cc:
Blocked by: Blocking:
Description

I have a problem when using a checkbox input in a tabs.

If the checkbox is originally checked, the "check image" is not the normal one. It look like a "^".

If the checkbox originally NOT checked, the "check image" is the normal one. and it run OK.

If have tried several solutions, but everytime I use Checkboxradio with Tabs, I have the same problem.

Any idea to solve this ?

thanks for your job, it's great !

Attachments (0)
Change History (1)

Changed April 10, 2020 11:26PM UTC by carsongee comment:1

I have this same issue. The unfortunate workaround I went with was:

$('#checkbox').checkboxradio().change(function() {
  $(this).siblings('.ui-state-hover').removeClass('ui-state-hover')
})