Custom list - Calendar View - Time Interval

Hi all,
I have a custom list with "Project Start" and "Project End" columns. Then I have created a Calendar View. In the "Time Interval", I select "Project Start" for "Begin"
and "Project End" for "End".
In the programming code, how could I detect the column names that was chosen for "Begin" and "End" of the "Time Interval"? In this case, they are
 "Project Start" and "Project End".
Thanks ^_^

Hi,
According to your post, my understanding is that you want to see the calendar view begin and end time for the time interval.
We can use the SharePoint Manager to view the internal name for the begin and end time for the time interval.
Open SharePoint Manager 2013->click your site->click
Lists->select your list name->click Views->select your calendar view name->click the
Schema Xml to check the internal name for the time interval begin and end.
We can download the SharePoint Manager in here:
http://spm.codeplex.com/
Thanks & Regards,
Jason
Jason Guo
TechNet Community Support

Similar Messages

  • Format List Calendar View Days

    We'd like to format the calendar view of a list not off the data entered for each of the days, but off the actual day of the week.
    For example:
    Saturday and Sunday boxes would be red
    Monday boxes would be blue
    Tuesday-Thursday boxes would be yellow
    Friday boxes would be green
    I'm trying this to at least get the first column/Sunday color coded, but nothing is happening:
    <script type="text/javascript" src="/sites/ProjectSite/SiteAssets/jquery-latest.min.js">
    <script type="text/javascript">
    $(function() {
    var $t;
    var interval = setInterval(function() {
    $t = $("table.ms-acal-month>tbody tr td:nth-child(1)");
    $t.each(function(){
    $(this).style("background-color", "red");
    }, 1000);
    </script>
    Any ideas on how to even start with this?

    I had to add the 'ms-acal-summary-itemrow' class to the tr element as shown below:
    $sun = $("table.ms-acal-month>tbody tr.ms-acal-summary-itemrow td:nth-child(1)");
    $mon = $("table.ms-acal-month>tbody tr.ms-acal-summary-itemrow td:nth-child(2)");
    $fri = $("table.ms-acal-month>tbody tr.ms-acal-summary-itemrow td:nth-child(6)");
    $sat = $("table.ms-acal-month>tbody tr.ms-acal-summary-itemrow td:nth-child(7)");

  • Sharepoint Custom List Mobile view all field values showing empty

    I have a custom list where I have multiple fields like employee id, name, title, department, manager. When I browse this form in PC VIEW all fields are showing properly and read only using 1.7.2.min.js & 0.7.2.js , it is working like a charm, I have
    also one more like where I have SAP Employee Data I can also able to retrieve the data from that particular list and its also working perfectly.
    The problem is that when I browse this list in mobile view all custom list fields showing blank values and enabled which I do not want can you please tell me the solution for this problem, I do not think that there is any problem with jquery or spservice
    version issue, please guide as soon as possible...
    Thanks
    Adnan Amjad

    And check if your mobile view is configured as per http://technet.microsoft.com/en-us/library/ff393832(v=office.14).aspx
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Date and Time column in custom lists - is default time possible?

    I've created a custom list and included a column using the Date and Time field. I have this set up to default to "Today's Date." But, is there any way to also have this default to today's time? While the date will default, the time must be manually
    selected using dropdown boxes.
    We want this field to default to the date and time but also allow users to change the date and time if necessary. This is why we're using this instead of the "Created by" field, which is not editable.
    Has anyone found a solution to this?
    Thanks!

    Set calculated option for default value, and set =NOW():
    [custom.development]

  • Infopath to design WYSIWYG Custom List Views on 2013

    We are migrating to SPO 2013.  Playing with InfoPath 2013.
    I know it's dieing, but InfoPath has always frustrated me.  Some much potential yet so out of touch with what users seem to need IMO.  Far from user friendly enough to let users maintain their own forms too IMO.
    But really my biggest gripe with SharePoint in general is that it misses the mark with Custom lists and Views.
    Why doesn't SharePoint and/or InfoPath address the need for more flexibility and Design options in the Custom List View. My users are constantly looking to build View pages that to reflect paper forms they use to have.  They always seem to
    have to settle for the way the list view looks.  InfoPath does not seem to address Read Only Views of List Data ??
    - No List Mode (View vs Edit)
    - No Label control
    - Field Names do not display unless you hover over the control. 
    - No WYSIWYG drag and drop designer - only grid cells.
    - No easy or clear way to get URL Query string values
    - No way to build complex expression fields, say I want to build a URL Link using some list field data and the ID from the URL query string on the form? Possible?
    - Better/easier way to join and bind in multiple Lists and multiple data sources?
    One other challenge we have is that SSRS can't be integrated into SPO and is being dropped from Azure.  The SSRS designer is leaps and bounds better than InfoPaths IMO.
    Considering SPO 2013, might there be another product or IDE coming in (maybe FoSL) that will address all of these? How about Visio, Excel, PDF
    Thank You.

    Thank You for your response.
    A little of both :)   ... But am very interested in hearing about practical development options.  But the catch is that we are waiting to see if something shows up that will enable users to build these views without development.
    I have been seeing new Apps show up on the o365 store that look promising, but none of them are quite there yet IMO ...  like Ninetex forms, Lightning Data Viewer, BlackCompass Data Viewer, List Designer, OData query Builder.  We've
    actually demoed every single one of them.
    We have also been playing with oData Connections from Excel and Visio web Access Web parts.  We can't get Data connections to refresh from Excel apparently unless we buy Power BI and we are still trying to figure out Visio on SPO.
    I know we can create a SharePoint 2013 App that binds in SPO List data and use .NET controls to arrange them on a page.  But that would put a developer and a deployment process in front of that View.  We can also use SSRS and create a one row report
    - but SPO does not support integrated SSRS and we would have to authenticate  on-Prem SSRS against  ADFS which we have not yet configured here.

  • Get collaboration content (Discussion Board, Blog Posts, Wikki) last view time in SharePoint 2013

    Hi,
    How to get get collaboration content (Discussion Board, Blog Posts, Wikki) last view time in SharePoint 2013. I have tried using SPAudit setting but its not returning
    list item view time. I have enabled the SiteCollection Audit setting for "Opening or downloading documents,
    viewing items in lists, or viewing item properties". I have tried using below code.
    SPSite site = new SPSite(siteURL);
    SPWeb web = site.OpenWeb();
    SPList list = web.Lists[listName];
    SPListItem item = list.GetItemById(itemId);
    SPAudit audit = site.Audit;
    SPAuditQuery query = new SPAuditQuery(site);
    query.RestrictToListItem(item);
    query.AddEventRestriction(SPAuditEventType.View);
    SPAuditEntryCollection coll = audit.GetEntries(query);
    Is there any other way to get last view time in SharePoint
    2013?? or any changes in above code?
    Thanks.

    Hi Patil,
    According to your description, my understanding is that you want to get the last view time of any entities in SharePoint 2013
    How did you do with using Site Collection Audit?
    Below are my testing:
    Click Settings->Site Settings
    Click Site collection audit settings under Site Collection Administration
    On the Audit Log Trimming section, select ‘Yes’ under ‘Automatically trim the audit log for this site?’
    On the Documents and Items section,  select ‘Opening or downloading documents, viewing items in lists, or viewing item properties’
    Click OK
    Click  Audit log reports, click Content viewing under Content Activity Reports
    Then select a location to save a report, click OK
    ‘Operation Completed Successfully’ displayed, and there is a link ‘click here to view the report’, click it.
    Open the report, there were two worksheets in the file. The first one was ‘Audit Data-Table’, it contained the viewing total times. The second one was ‘Report Data 1’, it provided the time when the item was viewed.
    Below is a screenshot about my report.
    Through checking the second worksheet, we can see which items were viewed and the viewed time. Please have a try.
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Set Time Interval with custom fields in generic list with view(SPViewCollection.SPViewType.Calendar)

    I need to set time interval range with custom date fields in sharepoint view SPViewCollection.SPViewType.Calendar. How to do that?
    My code is this:
    System.Collections.Specialized.StringCollection viewFields = new System.Collections.Specialized.StringCollection();
    viewFields.Add("FechaInicio");
    viewFields.Add("FechaFin");
    string query = @"<Query>
    <Where>
    <DateRangesOverlap>
    <FieldRef Name=""FechaInicio"" />
    <FieldRef Name=""FechaFin"" />
    <FieldRef Name=""RecurrenceID"" />
    <Value Type=""DateTime"">
    <Week />
    </Value>
    </DateRangesOverlap>
    </Where>
    </Query>";
    SPView newView = reserva.Views.Add("CalendarView", viewFields, query, 0, true, true, SPViewCollection.SPViewType.Calendar, false);
    "FechaInicio" and "FechaFinal" ara datetime fields in my generic list.
    Thanks.

    Hi,
    According to your post, my understanding is that you want to see the calendar view begin and end time for the time interval.
    We can use the SharePoint Manager to view the internal name for the begin and end time for the time interval.
    Open SharePoint Manager 2013->click your site->click
    Lists->select your list name->click Views->select your calendar view name->click the
    Schema Xml to check the internal name for the time interval begin and end.
    We can download the SharePoint Manager in here:
    http://spm.codeplex.com/
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Time Interval for Daily Calendar in APEX 3

    Hi,
    we're looking at upgrading to Apex 3 and I have a question about the Daily Calendar time interval. Is there a way to change the interval to say, 15 minutes from the default 1 Hour?
    Cheers
    Kofi

    Hello Kofi,
    "Now looking at what I can see on apex.oracle.com, are you saying we'd just have to modify the daily calendar template?"The template only control the look of the calendar, not its functionality. If the default daily view meets your needs, you don't have to define any new templates.
    "I'd imagine that the whatever is creating the tags that will be displayed by the template needs changing to incorporate the other 15 minute cells I would add"Most of the calendar functionality you can control can be defined on the "Calendar Attributes" tab. The most important is the date column. If this column includes reference of time (on top of the date, of course) the APEX engine will automatically associate your entry with the proper "Hour" row. You are not adding cells. You are adding calendar entries. If several of these entries share the same hour slot, APEX will put all of then in the same row.
    The best way to understand it is simply define these entries. As I understand, you have access to apex.oracle.com, so it shouldn't be a problem.
    Regards,
    Arie.

  • Customizing Sharepoint Calendar Week Group View to display multiple weeks in a single row

    Hi,
    SharePoint Calendar's Week Group View is useful for comparing multiple co-worker's schedule, and we have a business needs to be able to view the schedule for with the date range of more than one week at a time between co-workers for planning purposes, is
    there a way (code or no-code) to manipulate the date/week range so that the calendar display more than 7 days in a single row?

    Hi,
    As there is no such OOTB feature, I would suggest that you can change the calendar scope to “Month” or create a Gantt view to display more weeks in a view.
    Or you can try to create a custom calendar web part to meet your requirement.
    Here are some samples of custom calendar web part for your reference:
    http://www.codeproject.com/Articles/108676/SharePoint-Custom-Calendar
    http://gunnarpeipman.com/2009/01/creating-sharepoint-global-calendar/
    https://blog.metrostarsystems.com/2013/10/21/creating-a-custom-sharepoint-calendar-rollup/
    Best regards
    Patrick Liang
    TechNet Community Support

  • How to display the color of time period and the legend in Calendar view?

    Hi,
    Sorry to disturb you guys with a quite simple question.
    I want to do a calendar view to display the period of absence for the portal user. I've setup the iView but it displays neither the color of time period nor the legend.
    The problem is:
    1) If I test with <i>static legend</i> (that is, I input the time period directly in the form instead of using data service),
       a) I could only define <b>one</b> time period, because it's impossible to map the <i>out</i> port of calendar to <i>in</i> port of form on defining the event as 'goto'.
       b) I can't see the color displayd while deploying although there is just one time period! Neither the legend. I' ve given the label and color of the legend and assigned the action as default in design board. Why it doesn't work?
    2) If I test with <i>dynamic legend</i> following the chapter "<i>Display Date on a Calendar</i>" in the <i>Modeler's Guide</i> of VC;
        I assigned @RECORDNR to 'ID legend field', and used BAPI_ABSENCE_GETLIST as dynamic legend data service to edit the legend, and assigned the color for every ID. But neither color nor legend could kindly appear. What's the problem? Is there any error in the edit of entry list of the legend?
    Please help me! Thanks!!!

    Is there any advice?
    I'll greatly appreciate your help!

  • Calendar View: Unable filter Recurring Event by Start/End Time and Group by Recurring Event View

    Hi All,
    I have just found several issues with Calendar View from WSS 3.0:
    Unable to filter by [Start Time] and [End Time]
    I am not sure why these 2 columns doesn't appear in the Filtering column in the View Settings. The workaround found in the internet is to create calculated column for Start Time and and End Time. However, it doesn't work for Recurring Event, the calculated column will show only first recurring event Start Time.
    Unable to use "Group By"
    When I create new view in Calendar using format: "Standard View, with Expanding Recurring Events", there is no option to specify "Group By". Anyone knows how to show all recurring event in List view and grouped by Start Time (or any other column).
    Thank you and apprecate for any idea.

    Hello,
    I got this from a colleague of mine so I can't take credit for it but here might be a possible workaround:
    1. Create two new Columns called Start Filter and End Filter.  Make these columns Calculated Columns with formulas of [Start Time] and [End Time] respectively.  The columns should be of the Date and Time\Date and Time type and should not be displayed on the Default View.
    2. Click Advanced Settings and choose Yes to the question "Allow management of Content Types" in the Content Types section.  Click OK.
    3. Click on the Event Content Type.  Open the two columns created in step 1 and select "hidden" for both of them.  Click OK.
    4. Back at the list settings create a new view or edit an existing view.  When you get to the filter section choose "Show items only when the following is true" and select the following:
    Start Filter
    is less than or equal to
    [Today]
    And
    End Filter
    is greater than or equal to
    [Today]
    5. Click OK to save the view.
    6. Open the List view web part that is displaying the recently changed calendar and change the view to the newly created or newly edited view.  Click Apply, OK.
    -Aseem Nayar
    This posting is provided "AS IS" with no warranties, and confers no rights

  • Embed PDF in Custom list view

    Hi,
    I have a custom list with items containing some columns and a pdf attachment. I want to be able to display the attachment when in display mode for my list item.
    Any suggestions on how to achieve that with InfoPath or SharePoint designer ?
    Thanks in advance.
    Cheers
    Régis Baccaro
    Blog

    What do you mean by "display the attachment when in display mode for my list item"
    If you mean Thumbnail view,
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/8b5aa9fd-b36c-4312-a841-735e2ce51c4d/how-to-display-the-thumbnail-view-of-the-documents-in-sharepoint-document-library?forum=sharepointcustomizationlegacy
    Developing your own solution would potentially provide a better way to accomplish your task, but before setting out on that long road you may want to try the simple customization, it's less time consuming and it will help gauge your customer's interest and
    support.
    Also, there is a wealth of open source code for SharePoint available on CodePlex, you might want to check that out as well.  Here is the linK:
    http://www.codeplex.com/
    Also, here is an interesting project to consider for your task:
    http://enhancedpicture.codeplex.com/
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/2820861a-3f4d-4de2-95ef-55dfa3b5ee51/displaying-a-thumbnail-of-a-pdf-in-a-document-library?forum=sharepointdevelopmentprevious
    If this helped you resolve your issue, please mark it Answered

  • ICal and calendar lists in calendar view

    The calendar lists no longer appear in the calendar view of iCal. I was having a problem so deleted ical from the macbook, then did a complete reinstall with an archive and save old settings, THEN updated all the software, THEN deleted the user account that does not show the calendar lists. THEN went to the admin account which has iCal working well with all views and did a reset of my .mac info so that it was/should be just as the correct one was. THEN set up another user account and reloaded the data on inital sync to overwrite data in the new user account. I thought that all these steps should have my calendar lists back BUT not so! Interestingly when i make the calendar list window smaller the scroll bar appears. Any assistance with this will be appreciated

    There is now a new app doing exactly that. ReplyAll app is a new iPhone app which allows to reply to all attendees of a calendar events or forward it to a new invitee as well as replying by SMS to the event organizer. It was created mainly for users who use their iPhone to manage their events. The app was build based on iOS 7 Look and Feel.https://itunes.apple.com/us/app/replyall/id749454893

  • Why did my calendar view suddenly change? Using iOS 7.1 and I've been using this version for a few weeks with no problem with my calendar. Now the view has changed and I can't view a list mode without seeing the month too

    Why did my calendar view suddenly change in iCal? I've been using ios7 fôr a few weeks now with no problems. Suddenly, without any updates or anything, the calendar view changed and I can no longer view it as a list without having the entire month seen as well.

    Hey Gattypyle,
    Thanks for the question. You simply need to go back to Day/Week view, then tap the list-view icon once more.
    Calendar at a glance - iPhone
    http://help.apple.com/iphone/7/#/iph3d110f84
    View a list of events. In month view, tap to see a day’s events. In day view, Tap the to view a list of events.
    Thanks,
    Matt M.

  • Cannot set view time in Calendar via Applescript

    I use the AppleScript below in an application to capture the weekly calendar view. I would swear, under an OS release before 10.9.5, this would cause the the Calendar view to be set with the top line at 7am of the current day. Now, the Calendar view ignores the time setting. Can anyone suggest whether this is a bug and/or provide a workaround?
    TIA
    set daytoshow to (current date)
    set the time of daytoshow to 60 * 60 * 7
    tell application "Calendar"
      activate
      view calendar at daytoshow
      switch view to week view
      set the visible of the first window to true
    end tell

    Your wife could publish her MobileMe Calendar and then you could subscribe to it on your iPhone.

Maybe you are looking for

  • How do I get my apps and pics off my 3gs to my 4

    just upgraded to the apple 4, but have photos on the 3 GS and some apps too that I really don't want to lose...can someone tell me how I can get the stuff off the old iphone and onto the new one?

  • How to Connect to MacOSX from Linux/Solaris ?

    I know you can 1. ssh to a Mac machine. 2. VNC to a Mac machine. Is there a way to connect from Unix to MacOSX ? Something like XDMCP to Mac machine. Requirement: 1. GUI Login to MacOSX in a new session, from Unix. Or 2. Open a Xcode window running f

  • Status of the woritems

    For one of the workitems(swi2_freq:workflow log)  i see the status Reserved(Selected) But the person initiated that WI is terminated When does the Workitem get the status reserved And in SAP can we check when and who could have changed the status of

  • Virtual Host (localhost) + Wamp 2.1

    Hello I'm trying to test a local URL like xxxxx.localhost or loclahost / xxxxxxx This does not work. I read this post related to this topic: http://blogs.adobe.com/edgeinspect/2012/06/19/shadow-xip-io-virtual-hosts-workflow-simplif ied/ But I do not

  • ICal Broke?

    My iCal stopped working for the most part. I still get an email message I've preprogrammed but when I open iCal there is nothing in the far left area, name of calendars, etc., and I cannot access, add, or delete anything. I cannot close, diminish, et