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

Category: Nukes
Group: None
>Status: Closed
>Resolution: Fixed
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 09: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 04: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 04: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


-------------------------------------------------------
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
_______________________________________________
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to