How to show events on frontier calender

171 views
Skip to first unread message

pranshu.s...@lemosys.com

unread,
Aug 28, 2013, 1:06:59 AM8/28/13
to jquery-front...@googlegroups.com
I am just a newbie with this please tell me the basics to show agenda items on calender ....

pranshu.s...@lemosys.com

unread,
Aug 28, 2013, 5:41:05 AM8/28/13
to jquery-front...@googlegroups.com
How to get agenda events from database using ajax call i need that array ....plz help if you get what i wanted

Marcel Motta

unread,
Sep 5, 2019, 6:32:59 PM9/5/19
to jQuery Frontier Calendar
Try this way:

   while(rs.next()) {
                   
                    sb.append("Event ID:").append(rs.getInt("evtid")).append(";");
                    //evtID = (rs.getInt("evtid"));
                   System.out.println(rs.getInt("evtid"));
                 sb.append("Created By:").append(rs.getString("evtcreatorid")).append(";");
                 //evtCreatorID = (rs.getString("evtcreatorid"));
                 sb.append("Event Start Date:").append(rs.getString("evtstartdate")).append(";");
                 //evtStartDate = (rs.getString("evtstartdate"));
                 System.out.println(rs.getString("evtstartdate"));
                 sb.append("Event End Date:").append(rs.getString("evtenddate")).append(";");
                // evtEndDate = (rs.getString("evtenddate"));
                 System.out.println(rs.getString("evtenddate"));
                 sb.append("Event Description:").append(rs.getString("evtdescription")).append(";");
                 //evtDescription = (rs.getString("evtdescription"));
                 sb.append("BackgroundColor:").append(rs.getString("evtbackgroundcolor")).append(";");
                 //evtBackgroundColor = (rs.getString("evtbackgroundcolor"));                
                 sb.append("ForegroundColor:").append(rs.getString("evtforegroundcolor"));
                 //evtForegroundColor = (rs.getString("evtforegroundcolor"));
                 sb.append("|");
                    
                }
               
                out.println(sb);

Marcel Motta

unread,
Sep 6, 2019, 9:52:46 AM9/6/19
to jQuery Frontier Calendar
Or without using StringBuilder sb:


 while(rs.next()) {
     out.println("Event ID:" + rs.getString("evtCreatorID")+ ";Created By:" +rs.getString("evtCreatorID") + ";Event    Start Date:" + rs.getString("evtStartDate")+ ";" +  "Event End Date:" + rs.getString("evtEndDate")+ ";" + "Event Description:"+ rs.getString("evtDescription")+ ";" + "BackgroundColor:" +rs.getString("evtbackgroundcolor")+ ";ForegroundColor:"+ rs.getString("evtForegroundColor") + "|");

Chandu Singh

unread,
Jun 17, 2021, 4:44:52 AM6/17/21
to jQuery Frontier Calendar
Hi marcel,
can you please help me
events are still not showing on calendar   please tell me what changes do i need to make on jsp page

Marcel Motta

unread,
Dec 13, 2021, 7:12:42 AM12/13/21
to jQuery Frontier Calendar
I have another,

I can send you, it's not so good as Frontier, but works 

marceldsmotta   gmail dot com
Reply all
Reply to author
Forward
0 new messages