Bugs item #900148, was opened at 2004-02-19 10:06
Message generated for change (Comment added) made by danielbzh
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=376685&aid=900148&group_id=22866

Category: Nukes
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Daniel Le Berre (danielbzh)
Assigned to: Nobody/Anonymous (nobody)
Summary: Poll question (title) does not show up

Initial Comment:
It looks like it is not related to the theme used. 

----------------------------------------------------------------------

>Comment By: Daniel Le Berre (danielbzh)
Date: 2004-03-17 08:36

Message:
Logged In: YES 
user_id=969476

Why is that code commented in CVS?

The title still does not appear on today's CVS snapshot.

----------------------------------------------------------------------

Comment By: Alex Almero (aalmero)
Date: 2004-03-03 03:15

Message:
Logged In: YES 
user_id=973353

get the source from cvs and edit PollBlock.java. add the 
following code below in render method

     try {
         //get poll title from poll module
         String pollTitle = (String) server.invoke(
            PollsModule.OBJECT_NAME,
            "getPollTitle",
            new Object[]{pollId},
            new String[]{Integer.TYPE.getName()});
         output.text("<b>" + pollTitle + "</b>");
      }
      catch (Exception ex)
      {
         output.text("Cannot retrieve poll title.");
         output.printPage(page);
         log.error("Cannot retrieve poll title.", ex);
         return;
      }
hth,
alex


----------------------------------------------------------------------

Comment By: Alex Almero (aalmero)
Date: 2004-03-03 03:15

Message:
Logged In: YES 
user_id=973353

get the source from cvs and edit PollBlock.java. add the 
following code below in render method

     try {
         //get poll title from poll module
         String pollTitle = (String) server.invoke(
            PollsModule.OBJECT_NAME,
            "getPollTitle",
            new Object[]{pollId},
            new String[]{Integer.TYPE.getName()});
         output.text("<b>" + pollTitle + "</b>");
      }
      catch (Exception ex)
      {
         output.text("Cannot retrieve poll title.");
         output.printPage(page);
         log.error("Cannot retrieve poll title.", ex);
         return;
      }
hth,
alex


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=376685&aid=900148&group_id=22866


-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to