function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Paras JainParas Jain 

Locker Services issue

<td class="slds-cell-shrink" data-label="Select Row" style="width:8%;border: 1px solid #cecfd5;padding: 1px 2px;text-align: center;">
                                                <div aura:id="tycoon"> 
                                                  <!--  <input type="checkbox" name="{!ntwrk.CheckValStatus}" id="{!ntwrk.nwID}" onclick="{!c.testCall}" checked="{!ntwrk.CheckValStatus}" value="{!ntwrk.state}"/>
                                               --> <ui:inputCheckbox aura:id="abcd" name="{!ntwrk.CheckValStatus}"  change="{!c.testCall}" value="{!ntwrk.state+}"/>
                                                                                                                                
                                                
                                                </div>                                                                                                   
                                                <span class="slds-checkbox--faux"></span>
                                                <span class="slds-assistive-text">Select All</span>
                                            </td>  
JS CTR-->

var networkCheck = document.querySelectorAll('#' + 'abcd' + ' input[type="checkbox"]');                                                                                                                                        
    
var networkCheck = component.getElement().querySelectorAll('#' + 'abcd' + ' input[type="checkbox"]');

both the lines are not working and geting null values in "networkCheck ".
Any help would be really grateful.
Rocks_SFDCRocks_SFDC
Do we have any solution for this?

we also want to use "querySelectorAll" in the lightning js controller.

Please let us know if you guys found out any solution for this.