Hi, I am trying to filter a subgrid associated with account through javascript, but every time it can not find the subgrid, "getelementbyid"should be subgrid name, right?
function subgridFilter(){
debugger;
var grid = document.getElementById("accountcasessgrid");
if(grid == null){
setTimeout(subgridFilter, 2000); }
else{ alert("success"); } }









