Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=3587390
By: harish7447

Hi All

Its me again. Update to the above thread:

My Wrapper.java [Decorator] code to the above is:

public class Wrapper extends TableDecorator {

        public Wrapper() {
                super();
        }

        public String getLink2() {
                System.out.println("Breakpoint 1");
                ListObject object = (ListObject) getCurrentRowObject();
                if (object != null) {
                        int id = object.getId();
                        System.out.println("Breakpoint 2");
                        return "<a href=\"userAction.do?id=" + id
                                        + "&action=edit\">Edit</a> | "
                                        + "<a href=\"userAction.do?id=" + id
                                        + "&action=delete\">Delete</a>";

                } else {
                        System.out.println("Null Breakpoint 3");
                        return null;
                }
        }
}

When i run my Display tag JSP page, only the "Breakpoint 1" is displayed on
my tomcat console. It just hangs after that, even "Null Breakpoint" is
not displayed.

Please advice

Regards

Harish



______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=249318


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
_______________________________________________
displaytag-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/displaytag-user

Reply via email to