views:

667

answers:

2

We have a sharepoint Aspx form that is formatted like an excel spreadsheet. On each row of the form are links that when clicked, launch a script to show new links, allowing the user to add, view, or hide comments. This will appear for each line item clicked on.

We would like to remove the "add comment" link from the script, but cannot find anywhere to do so in both Sharepoint or Sharepoint Designer.

A: 

You can use JavasScript to remove any HTML element, you just need to be able to target it.

See getElementById & getElementsByTagName for targeting and then Node.removeChild for deleting it from the document.

Tim Whitlock
A: 

to remove it via the client side, yes you could try some JS or CSS but you find it hard finding a unique handle. Firebug will help to see if one is available. But chances are you need to take a look at the Schema.xml

you can find this by using Sharepoint Manager http://www.codeplex.com/spm

alternativly look in the onet.xml

nickmorss