Forum Discussion
chicks
13 years agoRegular Contributor
I'm using find and FindChild extensively, typically specifying objecttype and a unique parameter such as id string, namePropStr
e.g.
function memberPortal_Panel_RetailerAds() { return memberPortal().findChild(new Array("ObjectType","idStr"),new Array("Panel","teamRetMem"),FIND_DEPTH) } ;
My experience has been that it does not take "too long" however, it does seem like it takes longer than it 'should' e.g. 2-3 seconds to find a login button !!
I've been wondering whether namespace mapping is faster or if there's a way to speed things up.
I do NOT use row index or column index as a find property ever. I try to access the table and then specify the cell rather than using a find.
e.g.
function memberPortal_Panel_RetailerAds() { return memberPortal().findChild(new Array("ObjectType","idStr"),new Array("Panel","teamRetMem"),FIND_DEPTH) } ;
My experience has been that it does not take "too long" however, it does seem like it takes longer than it 'should' e.g. 2-3 seconds to find a login button !!
I've been wondering whether namespace mapping is faster or if there's a way to speed things up.
I do NOT use row index or column index as a find property ever. I try to access the table and then specify the cell rather than using a find.