I have Angular ui-grid in one of the columns I have used cell template the code is given below
cellTemplate: '<div class="ui-grid-cell-contents" > <input name="files" id="files" type="file" /></div>'
I want to find the input control of type file through jquery code given below
var k = $("input[type='file']");
But this is not working it cannot find the control inside grid but if the control is placed outside grid the above code finds it any idea how to find any control inside the grid.