My dilemma revolves around an AspxFileManager. I am attempting to distinguish a file when it is loaded by adding a class that places a border around the element. My initial attempt using
.attr('style', 'border: 10px!important');
was unsuccessful due to being overridden by ASPx.CreateImportantCssText
.
Is there a way to override this CSS or utilize a client-side event to change the style attribute after the page has completely loaded? I have experimented with:
$(window).on('pageshow', func)
$(window).on('pageload', func)
as well as utilizing the EndCallback
for the fileManager
.