Hello Eric,
I'm going to take you up on your offer. And Thank You.
I've got the "visual Status" column up ( as above).
I've loaded up the following script in the CEWP source Editor:
<script type=”text/javascript”>
//ORIGINAL CONCEPT, CHRISTOPHE HUMBERT
//
// Convert HTML text to Graph in SharePoint Calculated Column
// Author: Christophe Humbert
// Site: http://pathtosharepoint.wordpress.com/
// Feedback and questions: [email protected]
//
var theTDs = document.getElementsByTagName(“TD”);
var 1=0;
var TDContent = “ “;
while (1 < the TDs.length)
{
try
{
TDcontent = the TDs [1] . innerText | | the TDs [1] . textContent;
if ((TDContent.indexOf(“<DIV”) == 0) && (TDcontent.indexOf
(“</DIV>”) >= 0)) {
theTDs [1] . innerHTML = TDContent;
}
}
catch (err) { }
1=1+1;
}
</script>
<script type=”text/javascript”>
// TURN OFF FILTERING – PAUL GRENIER
//
// Turn Off Filtering Capabilities in Specific Columns
// Author: Paul Grenier, AutoSponge, Administrator: Stump the Panel
// Site: http://autosponge.spaces.live.com/default.aspx
// Feedback and questions:
http://www.endusersharepoint.com/STP/topic.php?id=345&page=2
//
_spBodyOnLoadFunctionNames.push(“filterOff”);
function filterOff ( ) {
var a = [‘Visual Status’ , ‘High Priority’];
var tags = document.getElementsByTagName(“TABLE”) ;
for (var 1=0; 1 < tags.length; 1++) {
if (tags [1] . textContent) {
var name = tags [1] . textContent;
}else{
var name = tags[1] . innerText; //for IE
}
if (name in oc(a)){
tags[1] .setAttribute(“Filterable”,”FALSE”);
}
}
}
function oc(a)
{
var o = {};
for(var 1=0;1<a.length;1++)
{
o[a[1]]=’’;
}
return o;
}
</script>
and I'm showing text on my list still (no graph).
If possible, can you take a moment to see if my script is correct or is there something else I need to add?
Thank You so much.
dave m.