S
Sri Harsha
Guest
Hi, Firstly, Sorry for a late response. (as you post is dated before the 4.0 release, Im assuming this is for classic UI. The below suggestion(s) are valid only for the classic UI) I had a look at your requirement and unfortunately i dont think there is no straight forward or out-of-box way to achieve this. When a view chages, an Ajax call gets the table content and replace the appropriate div. So, the javascript component of the page does not execute everytime the view changes. May be you can try adding something like below (where 120551 is the cell id of the list view) $('#ld_120551').bind('DOMNodeInserted', function() { $("a:contains(' ')").hide(); $("img[src*='checkmark.png']").attr('src',' '); }); which will execute everytime the DOM changes. (PS: this event is not supported in IE. I checked in Chrome and it was giving the result you are looking for) However, if you switch to the New UI, there can be other ways where you can try adding a listener to the grid and perform simlar actions. Hope this helps you. Please let us know the feedback or dif you have anything else on this. Regards, Harsha.
Continue reading...
Continue reading...