View Single Post
  #2 (permalink)  
Old June 25th, 2007, 07:36
satya_m satya_m is offline
Junior Member
 
Join Date: May 2007
Location: Singapore
Posts: 26
Thanks: 0
Thanked 1 Time in 1 Post
Groans: 0
Groaned at 0 Times in 0 Posts
Rep Power: 0
satya_m is on a distinguished road
Re: Modify the Results screen of contacts

The results page that you see now is the common glog results page GlogResultsPage.xsl. The framework redirects you to this page after successfully saving the record. If you want to remove the the buttons here, you will have to do it in the GlogResultsPage.xsl. But as this xsl is a common xsl, You should not touch this. Only way is to create your own results xsl and show this custom results xsl on successfully saving the record.

You can do this in the ContactSaveServlet.

eg: From glog/webserver/sku/SkuEventSaveServlet.java

d.appendChild(d.createProcessingInstruction("xml-stylesheet", "href=\"status/SkuEvents.xsl\" type=\"text/xsl\""));

Let me know if you need any help
Reply With Quote