ltwCalendar
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Codewalkers ForumsProjectsltwCalendar

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Codewalkers Forums Sponsor:
  #16  
Old March 27th, 2006, 05:27 AM
mootinator mootinator is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 76 mootinator User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 3
RE: 2 issues...please help.

Well, as of today, I made some improvements to the daily view, and the weekly view (use calendar.php?display=week) now appears to handle the dates properly. I still don't have any brilliant ideas on how to display potential overlapping events in the weekly view, so that is why it is still very similar to the month view.

Reply With Quote
  #17  
Old March 28th, 2006, 11:33 PM
Anonymous Anonymous is offline
Registered User
Codewalkers God 35th Plane (22000 - 22499 posts)
 
Join Date: Apr 2007
Posts: 22,309 Anonymous User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 25
thanks

Awesome!!.

daily view-looks fantastic.

Weekly view-looks great. For overalapping events, can you do somehting like draw a thick line for events side by side spanning different times and on mouseover, a tool-tip should say what it is is (javascript?). Upon clicking any one line-it should take a pop-up window with event detail.

How about adding time on the left side of 'sunday' so that it would go along with what I said above. Right now, there are no times for weekly view.

PDF-creation link is also missing in weekly view. Was that intentional?

thanks so much for your efforts.

drb

Reply With Quote
  #18  
Old March 29th, 2006, 06:49 PM
mootinator mootinator is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 76 mootinator User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 3
RE: thanks

Quote:
How about adding time on the left side of 'sunday' so that it would go along with what I said above. Right now, there are no times for weekly view.

PDF-creation link is also missing in weekly view. Was that intentional?
drb


I will add the time, and yes the PDF link was left out intentionally, as it needs to be implemented separately. In many respects though, the PDF implementation will be easier, because I won't have to worry about how it looks in certain non standards-compliant browsers. (IE6)

Reply With Quote
  #19  
Old April 2nd, 2006, 10:36 PM
Anonymous Anonymous is offline
Registered User
Codewalkers God 35th Plane (22000 - 22499 posts)
 
Join Date: Apr 2007
Posts: 22,309 Anonymous User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 25
RE: 2 issues...please help.

I can't seem to figure out how to put a link next to (previous and next month links) for a weekly view and list view. Which file should I edit please? can i specify it open in new window?

Thanks,
(can I overwrite 4.21 after security fix with all weekly, daily features that you have done here?)


drb

Reply With Quote
  #20  
Old April 3rd, 2006, 01:02 AM
mootinator mootinator is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 76 mootinator User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 3
RE: 2 issues...please help.

I merged the 4.2.1 changes into the branch for you, so you can get all the correct files from the repository.

To edit the html for the month edit ltwdiplaymonth.php, for week ltwdisplayweek.php

You can specify any link open in a new window by using the a target.

eg: <a href="something.php" target="_empty">Target</a> Opens a new window

target="nextmonth" reuses a single window.

Reply With Quote
  #21  
Old April 3rd, 2006, 02:56 AM
Anonymous Anonymous is offline
Registered User
Codewalkers God 35th Plane (22000 - 22499 posts)
 
Join Date: Apr 2007
Posts: 22,309 Anonymous User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 25
RE: 2 issues...please help.

sorry I am unable to figure it out.

I put the following code:
<a href="http://mydomain.com/calendar/calendar.php?display=list">List view</a><a href="http://mydomain.com/calendar/calendar.php?display=week">Weekly view</a>

in ltwdisplaymonth.php in line 149 where the codes are as follows:
<table height="50" width="100%">
<tr><td width="25%" align="left">&nbsp;</td>

I put it the codes instead of "&nbsp;"

it gave me some parse error in line 149 and calendar did not come at all.

Am i doing something wrong?

thanks,

drb

Reply With Quote
  #22  
Old April 3rd, 2006, 06:29 PM
Anonymous Anonymous is offline
Registered User
Codewalkers God 35th Plane (22000 - 22499 posts)
 
Join Date: Apr 2007
Posts: 22,309 Anonymous User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 25
RE: 2 issues...please help.

You have to escape the " character if it appears in a quoted block of text:

eg:
<a href="target.php">

Reply With Quote
  #23  
Old April 3rd, 2006, 09:06 PM
Anonymous Anonymous is offline
Registered User
Codewalkers God 35th Plane (22000 - 22499 posts)
 
Join Date: Apr 2007
Posts: 22,309 Anonymous User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 25
RE: 2 issues...please help.

It worked!
Thanks,
i put the URL as:
http://mydomain.com/calendar/calendar.php?display=week

Now I got another aesthetic issue:
I would like to color code several things (categories) and would like to refer those color codes in the footer.php .

I know this is a messy one, but I am not so good at html. I simply copied and paste multiple instances of
<tr><td align="center" colspan="2">
Calendar provided by <a href="http://codewalkers.com/" target="_blank">Codewalkers</a>.
</td></tr>

And then tried to specify color code. It would be better if the cell has a specified background color. I am not sure, how to do that. can somebody please help me out?

thanks,

drb

Reply With Quote
  #24  
Old April 4th, 2006, 02:25 PM
JStevenT JStevenT is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: Monroe, MI - USA
Posts: 47 JStevenT User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 3
RE: RE: 2 issues...please help.


Quote:
Now I got another aesthetic issue:
I would like to color code several things (categories) and would like to refer those color codes in the footer.php .


I made a similar change at http://truelifecenters.org/ltwCalendar/calendar.php

I added a table and colored it according to the catergories color. That way individuals can look for specific catergories by color.

Reply With Quote
  #25  
Old April 5th, 2006, 11:00 PM
Anonymous Anonymous is offline
Registered User
Codewalkers God 35th Plane (22000 - 22499 posts)
 
Join Date: Apr 2007
Posts: 22,309 Anonymous User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 25
RE: 2 issues...please help.

Thanks so much. I will follow your method.

Mootinator,
I found a small bug (?)...when i am entering an event for future months in when month view has that month say august, after successfully entering an event, it reverts back to the current month. Is there a way to stop this?

I guess one can easily add event for future months with a current month view, but it beats the purpose, if one is unable to see what events have been entered in a future month.

Hope my explanation is clear.

Thanks,

drb

Reply With Quote
  #26  
Old April 6th, 2006, 06:14 AM
mootinator mootinator is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 76 mootinator User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 3
RE: 2 issues...please help.

That should be fixed in 4.2.1. Did you get the updated files?

Reply With Quote
  #27  
Old April 7th, 2006, 10:01 PM
Anonymous Anonymous is offline
Registered User
Codewalkers God 35th Plane (22000 - 22499 posts)
 
Join Date: Apr 2007
Posts: 22,309 Anonymous User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 25
RE: 2 issues...please help.

I simply overwrite the files. right? Sorry,I missed it upgrading.
Hope it doesn't alter/delete any events that I already have.

pl. let me know.

Thanks,

drb

Reply With Quote
  #28  
Old April 10th, 2006, 05:04 AM
mootinator mootinator is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 76 mootinator User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 3
RE: 2 issues...please help.

Yes, you just copy over the files.

You probably want to avoid copying over your ltw_config file and/or ltw_header/ltw_footer if you have made changes to those.

Reply With Quote
  #29  
Old April 10th, 2006, 06:20 PM
Anonymous Anonymous is offline
Registered User
Codewalkers God 35th Plane (22000 - 22499 posts)
 
Join Date: Apr 2007
Posts: 22,309 Anonymous User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 25
my 2 cents

Hi mootinator,
Just thought to share this with you.
hope you are aware of this www.schedulebook.com

Your software is quite close to be like that. Kudos to your efforts and sharing to people like me.

Thanks,

drb

Reply With Quote
  #30  
Old April 11th, 2006, 05:42 PM
mootinator mootinator is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 76 mootinator User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 3
RE: my 2 cents

Thanks, but I didn't write it, I've just been contributing lately ;)

Reply With Quote
Reply

Viewing: Codewalkers ForumsProjectsltwCalendar > 2 issues...please help.


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump




 Free IT White Papers!
 
How to Present Effectively Online
This white paper offers practical and actionable advice on the key steps that any presenter should consider as they plan and execute a Webinar or online meeting.

Request Your Free Technology Downloads!
 
Open Source Security Myths
Open Source Software (OSS) is computer software whose source code is available to the general public with relaxed or non-existent intellectual property restrictions (or arrangement such as the public domain), and is usually developed with the input of many contributors.

Request Your Free Technology Downloads!
 
Power and Cooling Capacity Management for Data Centers
This paper describes the principles for achieving power and cooling capacity management.

Request Your Free Technology Downloads!
 
Scalable, Fault-Tolerant NAS for Oracle - The Next Generation
For several years NAS has been evolving as a storage alternative for Oracle databases, and for good reason: NAS is quite often the simplest, most cost-effective storage approach for Oracle. Learn about the benefits that HP's approach to scalable NAS brings to Oracle environments in this comprehensive white paper.

Request Your Free Technology Downloads!
 
Understanding Web Application Security Challenges
This white paper discusses many common threats and preventive measures for Web application security, and explains what you can do to help protect your organization.

Request Your Free Technology Downloads!
 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 




© 2003-2009 by Developer Shed. All rights reserved. DS Cluster 4 Hosted by Hostway
For more Enterprise Application Development news, visit eWeek