Change standard view: remove event time

In iCal, a lot of visual space is wasted listing the time of an event. Fortunately, the time is unlisted in some cases (e.g., a half hour event in 'week' view), but for 1 hour events or more, the view of the event description is occluded by the start time. This time listing is redundant and unnecessary, since it is also indicated and easily visible to the left of the day columns in 'week' view, for example. Is there a way to remove the time? Any suggested workarounds so that we can see more of our event descriptions at a quick glance?
thanks in advance.

this is true, but i'm most interested in turning off times in 'week view', since times are already listed via the grid on which events lie. it sounds like a second radio button in Preferences>General should be added, called "Show/Hide event times in week view".
apple, are you listening?

Similar Messages

  • Changing default "From / To" Event time from 12:00AM???

    I've giving up trying to find out how to change the default From / To time for an event to something more reasonable than 12:00am. Does anyone know how to do this, so that when you create an new event, it is created with a time other than the default, without having to go in and override it each time an event is created? Thanks.
    Message was edited by: durrace

    durrace,
    First, refresh the the com.apple.iCal.plist file. You will find the com.apple.iCal.plist file in your Macintosh HD/Users/yourusername/Library/Preferences Folder. Quit iCal, drag the com.apple.iCal.plist file to your Desktop, log out/in or restart.
    Then before restarting iCal, open System Preferences...>Language & Text>Formats>Region: and set/reset the appropriate region.
    ;~)

  • Color Text in Monthly View, and event time

    Before Mavericks, I preferred events text in Calendars monthly view to match the calendar's color.  Now only a dot before item is not as disticntive.  Is there a way to have event text match the dot's color?
    Also, I miss the ability to show event's time in monthly view.
    Bill

    I had the same questions as Bill3; and am still searching for a third-party replacement (thank you Apple for all of the "upgrades" to packaged apps!).
    Now we've left the whole skeuomorphic trend, only to hamper usability?  #1- Function; #1.2- Form (it should be close, but still secondary).
    An option to put the timestamp to the left of the appoointment?  More than just a tiny colored dot?  Shading for the duration of an appointment (especially if "Busy" is selected)?  Month heading centered, or even left-justified; instead of right-justified?
    I work 12-hr shifts, so tend to live in Month View vs Week or Day--just so pumped about degradation of usability.  As annoying as the leather/paper look was, at least it was usable (and with a few tweaks, gone!).
    Sorry.  Just sad to see changes made for the sake of change, rather than improvement.

  • Palm desktop calendar - in month view, event times are in wrong order!

    I use Palm Desktop 4.1.4 on my Windows XP machine (I don't own a PDA). I enter my appointments in Week view and they look fine, but when I go to Month view (I want to print this view), the events for a given day show up in the wrong order!
    For example, on one day I see:
    9a Event
    10:30a Event
    2p Event
    12p Event
    and on the next day I see:
    9a Event
    2p Event
    10a Event
    I tried changing things in Options and Preferences - no luck. I have messed around with it and can't figure out any weird pattern it might be sorting by (I've tried re-entering appointments to see whether it sorts by the last time they were entered/edited, and looked into whether it was sorting by category, length of event name, first digit of the time, length of time, alphabetically by event name, by whether it repeats/has a location/has a note/has an alarm/was entered by clicking once and typing or by right-clicking). It just seems baffling, and it definitely seems like a bug, since of course you'd want your events sorted by time.
    Does anyone know what's going on or have this problem?
    Thanks!
    Post relates to: None

    I had looked at this in response to another post, and didn't notice the same problem. But then I went back further and noticed it sure enough...it's only occasional.
    I haven't done any kind of analysis as you have apparently done, mostly because I don't really use the desktop application except occasionally.
    Thought maybe it sorts repeating events differently than single events, but I've seen it both ways, so that doesn't seem to be it.
    It doesn't bother me enough, but it certainly seems like it would warrant an email support request to Palm, to see if they have an answer.
    smkranz
    I am a volunteer, and not an HP employee.
    Palm OS ∙ webOS ∙ Android

  • How to change the view criteria at run time for af:query

    Hi,
    I've a usecase where I need to change the view criteria of the af:query at run time.
    Use case:
    =======
    1) Consider a check box (Show Emps Under Dept 10) in the query panel when user selects and clicks 'Search' button should show the employees under dept 10. If user searches without selecting the check box, the results should show all the employees in all the departments.
    2) I need to have a check box always in the query panel. Its mandatory.
    The way I implemented:
    ==============
    1) Created a transient variable 'Show Emps Under Dept 10' in the EmployeeVO and also created a bind variable bind_DeptNo.
    2) Create a view criteria 'AllEmployees' which has only the transient attribute as the view criteria item and whose value set to 'false' by default.
    3) Created another view criteria 'EmpUnderDept' which has 'DepartmentId' as the view criteria item and whose value set to the bind variable 'bind_DeptNo'.
    4) Dropped the view criteria 'EmpUnderDept' as the 'af:query' panel in the jspx page.
    5) Overridden the queryListener as '#{EmpBean.empSearch}'
    6) Has the below code in the empSearch method as below. When user selects the check box, applying the other criteria 'EmpUnderDept' and setting the bind variable to '10'.
    public void empSearch(QueryEvent queryEvent) {
    // Add event code here...
    QueryDescriptor queryDesc = (QueryDescriptor) queryEvent.getDescriptor();
    ConjunctionCriterion conCrit = queryDesc.getConjunctionCriterion();
    List<Criterion> criterionList = conCrit.getCriterionList();
    List criterionValues = new ArrayList();
    Object criteriaValue = null;
    int criteriaNo = 0;
    DCBindingContainer bc = (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    FacesContext facesContext = FacesContext.getCurrentInstance();
    for (Criterion criterion : criterionList) {
    AttributeDescriptor attrDescriptor = ((AttributeCriterion)criterion).getAttribute();
    System.out.println("============== attrDescriptor.getName() =================== " + attrDescriptor.getName());
    criteriaValue = ((AttributeCriterion)criterion).getValues().get(0);
    if(criteriaNo==0) {
    Boolean val = (Boolean) ((AttributeCriterion)criterion).getValues().get(0);
    if (val.equals(true)) {
    OperationBinding method = (OperationBinding) ADFUtil.findOperation("ExecuteWithParams");
    if(method!=null) {
    Map params = method.getParamsMap();
    //params.put(key, value)
    method.getParamsMap().put("bind_DeptId", 10L);
    method.execute();
    ADFUtil.invokeMethodExpression( "#{bindings.EmpUnderDeptCriteiaQuery.processQuery}", queryEvent);
    } else {
    //ADFUtil.invokeEL("#{bindings.ExecuteWithParams.execute}");
    ADFUtil.invokeMethodExpression( "#{bindings.AllEmployeesCriteriaQuery.processQuery}", queryEvent);
    But this approach is not working and its always showing all the employees in all the departments.
    Please let me know if there is a way to change the view criteria at run time depending on the values set at run time for one of the view criteria items.
    JDev version am using is '11.1.1.5'
    Thanks,
    Lakshman

    Hi Shay,
    It worked for me without overriding the executeQuery() method in the ViewImpl.java.
    Instead of creating 2 view criteria, I created only one which has both transient variable and the DepartmentId = <bind_DeptId>. With the above code, it worked properly. Now I am using only one view criteria.
    Thank you.

  • I am using iCal 8.0 and I don't know how to include event times along side the event in the monthly view.  help.  :)

    I am using iCal Version 8.0 (2026)
    I have read through responses to a similar question as I am posing, but the recommendations that I've found don't seem to be in the iCal preferences/ general tab.
    Two great solutions that don't seem to be in my preferences winder are: 
    1.  A respondent recommended checking the box 'show event times' on the general/ preferences tab, but that box does not appear in my window
    2.  A second response i found recommended that 'I check box for 'Show time in Month view.' in Under General/ preferences, but that option is not appear either.
    Any other thoughts please

    The grouped yellow pages are a Section (Chapter).
    If you have logical divisions within your documents that fall on page boundaries, do the sensible thing and actually divide them with:
    Menu > Insert > Section Break
    …where you want the separation. Both before and after.
    Moving or removing individual pages is like ripping pages out of a book and/or reshuffling them. It makes sense to relocate or remove entire sections, which are pages connected by their content, but not the individual pages within those that have continuing text both before and after them.
    Peter

  • Is there a way to get event times to show up in monthly view on iCal 7?  There no longer is a box in the preferences to show the times.

    Prior to upgrading to Os X Maverick, I could see the times of all scheduled events on the month view (there was a check box in the iCal options to show the event times).  After upgrading, the times no longer show up and I don't see an option to change it.  Was this an oversight?  It certainly is not an upgrade over the previous version.  It was very helpful to be able to glance at the calender to see the scheduled times rather than having to click on each individual event.

    Sorry.  Only after posting did I see that this question has been asked already and the answer given.  Please ignore this post.

  • Can I change the Lion iCal Monthly View "New Event" from All Day?" Default?

    I have tried all the posted suggestions to change the iCal "new event" preferably in Monthly View from the default of "All Day" but to no avail. This is a current issue so old terminal changes do not seem to work. Anyone have the same issue?

    I also have an issue  with not being able to change  "end times". Four instance if I schedule an event at 9:00 AM iCal defaults to 10:00 AM. I'll click the end time to change it to 4:00 PM  and the time will not change. It defaults back to the same start time or one hour later. I can get the drop down list to appear, but the options are not enough to schedule anything over 3 hours.
    Nor can  change the "add day" default.
    I appreciate any advice/assistance you guys have.
    Thanks!

  • View "event times" on calendar display/window

    How can I view calendar "Evevts times" on display window. They show when I print the month calendar, but can I "view all the times on screen."?

    The iPad has the correct times for the events -the PC is  1 hour earlier.  I thought maybe it was because we originally are from the East Coast and have now moved to Texas, but am now not so sure.
    I did change the Time Zone Support setting on the iPad - it was not toggled , but that made no difference .
    Hoping there are other suggestions.
    Rick

  • Please change the view in the top sites, the 6.1 upgrade has reverted back to a plane two dimensional view, which is a little plain. Can I revert back to an older version via my time capsule save?

    Please change the view in the top sites, the 6.1 upgrade has reverted back to a plain two-dimensional view, which is a little dated. Can I revert back to an older version via my time capsule save? C'mon Apple upgrades supposed to leap into the future not the past. :-(

    Please change the view in the top sites, the 6.1 upgrade has reverted back to a plain two-dimensional view, which is a little dated. Can I revert back to an older version via my time capsule save? C'mon Apple upgrades supposed to leap into the future not the past. :-(

  • Month View - Print Events Without Time

    Is there a way to print events in month view without the time? Alternately, is there a way to print all the words in an all-day event in month view? Sometimes I type a paragraph for an event, and as long as it's a timed event, iCal displays all the words. But if it's an all-day event, iCal only shows the first few words, because it wants to keep it on one line. Printing the time in month view gets in the way sometimes.
    This may be an option that doesn't exist yet, so Apple - help me out please!
    Thanks!
    Mac Pro 2.66 GHz Quad Xeon   Mac OS X (10.4.7)   3 GB RAM

    musetta24,
    Sorry to see that no one replied to your post back in October.
    Normally when I notice that someone posted for the first time in Apple Discussions, I open my reply with - "Welcome to Apple Discussions." With my apologies for the lack of responses, please accept a belated welcome and reply to your question.
    Widowwmaker,
    iCal will not print without displaying the times.
    If you are willing to use the Preview application, you could take a screen shot of your preferred iCal window, and print using the Preview print menu.
    ;~)

  • Help: event times not printing in month view

    ... and yes, I have checked "show time in month view" in preferences, and the event times display on the screen. But on the monthly printout, the times do not appear, only ellipses where the time should be. There should be plenty of space for the information to print, there is white space both at the end of the event line and in the day box. But no times show up at all.
    System data: Mac Mini, OS X 10.4.2, iCal 2.0.3 (1055), Brother MFC 7820N printer.
    This is really awful... I just switched my wife over to the Mac Mini, and calendaring is a big part of what she needs. And she uses month views a lot. If I can't fix this, she'll probably throw the Mac Mini back in my face and I'll be sleeping on the couch. Yes, she cares that much about times printing in month views.
    Mac Mini   Mac OS X (10.4.3)  

    I don't know whether this a "solution" or a work-around, but I did find a way to resolve this problem. I recently started using iCal by transferring appointments from a BlackBerry using the BlackBerry PocketMac software. Although all of the appointment times appeared on the monthly calendar, most of the appointment times were replaced by ellipses when the monthly calendar was printed. It turns out that the times would print only after re-entering the appointment manually. This had to be done completely from scratch, i.e., not by editing the original appointment, or by cutting and pasting the appointment back into the calendar. This is a complete pain, but seems to work. I'd love to hear a better solution...

  • All Event times change with Daylight Savings time

    With the time change associated with daylight savings time (March 8 2008) all my event times were changed by one hour. EG: events that were 8:45 am are now 7:45 am. I have tried using Time machine to restore to pre March 8 status,but an adjustment takes place and the events remain 1 hour ahead. I have looked through the discussions pages and don't even see the issue identified. I have looked through the menu and preference items and find nothing to help.
    I am surprised not to find this a front page topic today, March 9 2008.
    Can anyone offer some help ?
    Bill Mullen

    Michael,
    I never have changed time zones. Are you suggesting I should have time zone support enabled ?
    I just tried turning on Time Zone Support, then restoring my calendar using Time machine. No change here.
    As I mentioned earlier, this same problem occurred in the fall (although I don't remember which way the event times moved), this time they moved forward. At the Fall change I was using a Mac G4, which I used as a target to build this machine. The only thing I can think of that makes me unique (although I'm not in that small of a group) is that I have altered one of the files in iSync to allow iSync to sync calendar events with iCal. The syncing has always worked OK.
    Right now I'm leary of attempting to do anything with iSync. I'm also finding it difficult to believe I'm not one of 10,000 people experiencing the same problem, but I don't see any other posts.
    I found a time zone in south america which returns my times to the correct figure, with time zone support enabled, but that looks like a deeper hole to dig out of.
    Still stuck,
    Bill

  • Change calendar format one event at a time?

    How do Change calendar format one event at a time?

    Use iPhoto>Provide iPhoto Feedback in iPhoto or go here to make a feature request of Apple:
    http://apple.com/feedback

  • How can you view an event's time in the month mode of the calendar without clicking on it?

    How can you view an event's time in the month mode of the calendar without clicking on it?

    bbmca,
    Have you tried enlarging the month view window?

Maybe you are looking for

  • Database Updation and Insertion using Modify Statement

    Hi All, I am using Modify statment for data insertion and updation MODIFY zmpit_ven_bgg_rg FROM TABLE t_ven_bgg . But I am getting error The type of the database table and work area (or internal table) "T_VEN_BGG" are not compatible. I have defined m

  • Wont tune on past apple logo and wont update due to password?

    hi, i am trying to fix my sisters Iphone (i have never any hassle with mine) anyways, it wont turn on past apple logo, i have followed steps on here to update software and it downloads ok but when it trys to flash it to phone it says could not connec

  • Lost wifi connection

    I lost my wifi to my printer I thought it had something to do with comcast I have tried to restore to original defaults and have tried wps reset. I think it is in the ssid something there has changed I have tryng yo figure out how to show the ssid nu

  • SSM 10 - Error opening PAS Administrator

    Hi experts, I'm currently trying to configure a machine with SSM 10, but after I install the Application Server and the Supporting files, when I try to open the PAS Administrator using the "admin" user I get the following error: [http://desmond.image

  • JDBC Connection Help

    Can anyone help me by telling me the syntax of the Class.for.Name and the RegisterDriver classes for the case of using an Orcle thin driver. I know how to connect via a JDBCODBC bridge. Also Pls tell me of a suitable java oracle thin driver.