diff options
-rw-r--r-- | demos/tizen-winsets/widgets/list/list-normal_anchor.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/demos/tizen-winsets/widgets/list/list-normal_anchor.html b/demos/tizen-winsets/widgets/list/list-normal_anchor.html index fd70b1d5..9a0438ad 100644 --- a/demos/tizen-winsets/widgets/list/list-normal_anchor.html +++ b/demos/tizen-winsets/widgets/list/list-normal_anchor.html @@ -453,6 +453,18 @@ window.history.back(); } }); + $( ".ui-li-text-sub" ).on ( "vclick" , function( event ) { + var targetParent = $( event.target ).parent(), + checkboxradio = targetParent.find( ".ui-checkbox" ); + + if ( !checkboxradio.length ) { + checkboxradio = targetParent.find( ".ui-radio" ); + } + + if ( checkboxradio.length ) { + checkboxradio.children( "label" ).trigger( "vclick" ); + } + }); }); $( "#genlist-normal" ).on( "pagebeforehide" , function() { //unbind callbacks to the H/W keys |