Skip to Main Content

DevOps, CI/CD and Automation

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

oj-table multiple checkbox checked is not behaving as it should

Hi Folks,
Looks like bug in 8.2.0 version
If i add selection-mode='{"row": "multiple"}'Then checkbox listener will not invoke and multiple checkbox is not working but if hold ctrl and hover over the checkbox set then multiple checkbox checked is working. This is really strange bug and hard to find the cause and it might be regression.  

<template slot="checkTemplate" data-oj-as="cell">

     <oj-checkboxset 

             on-value-changed='[[checkboxListener]]'

             value='[[handleCheckbox(cell.key)]]'

              class='oj-checkboxset-no-chrome oj-selection-checkbox'

             :id="[['table_checkboxset' + cell.key]]"

             :data-row-key="{{cell.row.xyz}}"

             >

       <oj-option :id="[['table_checkbox' + cell.key]]" aria-label="[['Checkbox Select Row ' + cell.row.xyz]]" value="checked"></oj-option>

     </oj-checkboxset>  

   </template>

This will not trigger

 on-value-changed='[[checkboxListener]]'

If i remove selection-mode='{"row": "multiple"}' then multiple checkbox is working and on ctrl + hover is not working but I am pretty sure if i am not passing the row multiple then it should not select multiple checkbox. 
I am referring this link : https://www.oracle.com/webfolder/technetwork/jet-810/jetCookbook.html?component=table&demo=checkboxSelectableTable

This post has been answered by indraraj26-Oracle on Dec 20 2021
Jump to Answer

Comments

Post Details

Added on Dec 20 2021
1 comment
238 views