This is a space where the community of Teamwork users can ask for support, explanations,
and also vote up or down questions, answers and feature requests.
>> Back to Teamwork's site.

Could you please advice how to add end date column into the list resulted from search events in agenda view? I know dev modification is required. Could you tell where and what should be modified?

regards Mike

asked Feb 05 '10 at 14:04

Mike%202's gravatar image

Mike 2
713


You need to add two lines in agendaList.jsp:

to

  lh.addHeaderFitAndCentered(pageState.getI18n("EDIT_SHORT"));
  lh.addHeader(pageState.getI18n("START"),"event.schedule.start");

add

   lh.addHeader(pageState.getI18n("END"),"event.schedule.end");

and to

<td><%=event.getSchedule()!=null ? JSP.w(event.getSchedule().getStartDate()) : "!!! EVENT WITHOUT SCHEDULE !!!"%></td>

add

<td><%=event.getSchedule()!=null ? JSP.w(event.getSchedule().getEndDate()) : "!!! EVENT WITHOUT SCHEDULE !!!"%></td>

Actually this will make it in main release 4.4.

answered Feb 08 '10 at 09:49

Pietro%20Polsinelli's gravatar image

Pietro Polsinelli ♦♦
4617212

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Tags:

×23

Asked: Feb 05 '10 at 14:04

Seen: 365 times

Last updated: Feb 08 '10 at 09:49

| Teamwork faq | about | contact us | Teamwork blog | Teamwork documentation | feedback always welcome