| 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 |