I think the easiest way to handle this would be to use JQuery to change the value of the title. I don't have an iMIS site + profile readily available with the Dues item, so I can't construct the JQuery, but it might look something like this:
$(document).ready(function(){
$("#DuesDivID").empty().html('My new title for the Dues header');
});
You could also create a custom .NET web control that changes the label, but I think JQuery would be easier to do.
And like most technical solutions, there are probably plenty of other ways to do the same thing.
I think the easiest way to
I think the easiest way to handle this would be to use JQuery to change the value of the title. I don't have an iMIS site + profile readily available with the Dues item, so I can't construct the JQuery, but it might look something like this:
$(document).ready(function(){ $("#DuesDivID").empty().html('My new title for the Dues header'); });You could also create a custom .NET web control that changes the label, but I think JQuery would be easier to do.
And like most technical solutions, there are probably plenty of other ways to do the same thing.
Cheers,
James / Bursting Silver