Malfunctioning of Calendar control of N79

My calendar control is not working.

Hi Reddy,
From your description, my understanding is that you want to provide a hyperlink for the title of calendar.
You could accomplish your requirement with jQuery, please refer to this code below:
<script src="https://code.jquery.com/jquery-1.11.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
// please refer to this screenshot below to get your selector, and replace the google with your hyperlink
$("table[id$='Calendar1']>tbody>tr>td>table>tbody>tr>td[align='center']")[0].innerHTML = "<a href='http://www.google.com'>" + $("table[id$='Calendar1']>tbody>tr>td>table>tbody>tr>td[align='center']")[0].innerHTML + "</a>"
</script>
Please refer to the screenshot below to get your selector:
Best Regards,
Vincent Han
TechNet Community Support
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
[email protected]

Similar Messages

  • Using 'Calendar' control type in prompt - not available

    Hi All,
    I am trying to setup a simple from and to date prompt that can be used in my reports to set the to and from date range for filtering the fact data that is returned. Following a number of blogs and articles on this it seems pretty straightforward. I have setup two static presentation variables on the rpd (startdate and enddate respectively) and I have started to create the prompt in answers that will be used by a number of different reports.
    My issue is that, all the articles I have seen indicate the use of the 'Calendar' control type when setting up the prompt. I however only have the following control type options for the prompt *(Edit Box, Drop Down List, Multi-Select)*. I do not see Calendar. Does this need to be initialized in any way to make it available .. ie move the calendar.js file somewhere so I can use the calendar control?
    example instructions: http://obiee101.blogspot.com/2009/03/obiee-between-dates-prompt.html
    Thanks,
    K

    Figured it out. The fields I was using in the prompts were character fields representing dates 'YYYY-MM-DD'. In order for the Calendar control option to become visible the fields selected as part of the prompts need to be of date or timestamp data type.
    Thanks,
    K
    Edited by: user_K on Apr 20, 2010 12:47 PM

  • SSRS 2008 R2 Calendar Control not working and report not refreshing on pressing enter in Chrome.

    SSRS 2008 R2 Calendar Control not working and report not refreshing on pressing enter in Chrome.

    SSRS reports are always best viewed in IE and the report result what you see in IE always will not be same and consistent in thirdy party browswers.
    So consider using IE as workaround.
    Also please refer:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/2188de10-cff9-4e24-b14f-da5121f1c4a4/ssrs-calender-control-not-visible-in-chorme-on-server?forum=sqlreportingservices
    Workaround here:
    http://www.rajbandi.net/Fixing-SSRS-Report-Viewer-control-date-picker-in-Google-chrome/
    -Vaibhav Chaudhari

  • How to make users to select the date from calendar control my making the date field read only in date time control in external list in sharepoint 2010

    How to make users to select the date from calendar control only, by my making the date text field read only (don't want to let users type the date) in date time control in external list in sharepoint 2010. I am looking for a solution which can
    be done through sharepoint desginer / out of the box.
    thanks.

    Congratulate you got the solution by yourself. I am new to a
    WinForms calendar component, I feel so helpless on many problems even I'd read many tutorials. This question on the
    calendar date selection did me a great favor. Cheers.

  • How to set a pop up calendar control in pdf  form using javascript?

    I'd like to add a pop up calendar control in a PDF form using Adobe Javascript.
    The user should be able to select a date from the calendar control.
    Awaiting a solution at  the earliest.

    Let's say I did provide you with a solution... Wouldn't that be a "third-party solution" as well?
    These tools are not compiled, you know. You have direct access to their source-code and can make sure they don't do anything else beside what they're supposed to do.

  • What is the best practice for using the Calendar control with the Dispatcher?

    It seems as if the Dispatcher is restricting access to the Query Builder (/bin/querybuilder.json) as a best practice regarding security.  However, the Calendar relies on this endpoint to build the events for the calendar.  On Author / Publish this works fine but once we place the Dispatcher in front, the Calendar no longer works.  We've noticed the same behavior on the Geometrixx site.
    What is the best practice for using the Calendar control with Dispatcher?
    Thanks in advance.
    Scott

    Not sure what exactly you are asking but Muse handles the different orientations nicely without having to do anything.
    Example: http://www.cariboowoodshop.com/wood-shop.html

  • SQL SSRS 2008 DateTime Calendar Control and Oracle 10g Data Source

    Hello. I am creating reports in SSRS 2008 using the calendar control for a date range. Let's say we select a start date of 3/3/2012. This parameter is sent into my SQL statement in the WHERE clause which is executed against an Oracle 10g database. All syntax has to be in SQL that Oracle understands, so no CONVERT or CAST.
    The format of the date is throwing an error "ORA-01843: not a valid month" when I try to use the following:
    SELECT *
    FROM TABLE
    WHERE STARTDATE >= TO_DATE('3/03/2012', 'MM/DD/YYYY')
    I get ORA-01722: invalid number when I try the following:
    SELECT *
    FROM TABLE
    WHERE STARTDATE >= >= TO_CHAR('3/03/2012', 'MM/DD/YYYY')
    I cannot find a way to format the date parameter in SQL Server SSRS before it gets to the SQL to be executed in Oracle.
    Please help.
    Thanks,
    Sunny

    920616 wrote:
    sb92075: I am showing you how Oracle renders the date if I do a simple select from the table from which I am trying to pull data. You are right, it sure doesn't prove anything other than how the date looks right out of the Oracle database, but hopefully, it will give a clue as to how I need my SSRS date parameter to work.
    Hans Forbrich:
    I get ORA-01722: invalid number when I try the following:
    SELECT *
    FROM TABLE
    WHERE STARTDATE >= TO_CHAR('3/03/2012', 'MM/DD/YYYY')
    Solomon:
    It works. The problem is getting the parameter '3/3/2012' into a usable format for Oracle.
    Let's assume an application is sending in '3/3/2012' which will be used in an Oracle query (no PL/SQL allowed, nor can I create functions, stored procedures, etc - only straight up SQL). How can I prepare the parameter to successfully do the compare on the Oracle Date field?
    12:50:23 SQL> select TO_CHAR('03/03/2012', 'MM/DD/YYYY') from dual;
    select TO_CHAR('03/03/2012', 'MM/DD/YYYY') from dual
    ERROR at line 1:
    ORA-01722: invalid number
    12:51:00 SQL> ed
    Wrote file afiedt.buf
      1* select TO_DATE('03/03/2012', 'MM/DD/YYYY') from dual
    12:51:20 SQL> /
    TO_DATE('03/03/2012
    2012-03-03 00:00:00

  • Date format for ipc calendar control in configuration UI

    Hi
    Does anyone know how to change the format of the date in the calendar control of the configuration UI? Currently when I try to configure a product in the b2c webshop or through SAPGUI, my date characteristics display in MM/DD/YY rather than DD/MM/YY. I have checked the usual suspects (default date format of WEBLOGIN user, logged in customer, my user) and all are set to DD/MM/YY. I could not find a setting in the XCM either.
    Can anyone point me in the right direction?
    Thanks
    Mike

    Hi Mike,
    Date display property is part of user settings for User ID.
    Go to transaction SU3
    Go to Default tab and adjust the date formats.
    Best Regards,
    Pratik Patel
    <b>Reward with Points!</b>

  • How to mark days in calendar control.

    hi all ,
    i try to mark(color) sevral days Programmatically  in month calendar control(.net) but not sucsess.

    The SetSelectionRange colors are tied to the TitleBackColor and TitleForeColor. I'm not sure how much customization you can get access to. You would have to dig deeper into Microsoft's documentation.
    As a side note, this form is updated through Windows themes so if that is running you may not see any changes happen. See the following link for reference:
    http://msdn.microsoft.com/en-us/library/9ctzxs7w%28v=vs.110%29.aspx
    You can disable this through Windows Services if you want to test it. A quick google search will walk you through it.
    David C

  • Problem with calendar control in report preview

    I am using Crystal Reports XI.
    When I preview reports containing a date/time parameter the calendar control does not work. Clicking on it brings up a JavaScript error box indicating that the page has an error and whether I want to continue running scripts on the page.
    This started happening after I installed the stand alone CR viewer.
    Uninstalling the viewer did not help.
    Please help!
    Regards
    Lawrence

    Hi,
    Unfortunately there is no exact solution fot this issue. but still try replacing prompt.dll which is located in
    C:\Program Files\Business Objects\Common\3.5\bin
    with the working one.
    hope for the best
    Regards,
    Harry.

  • Change the calendar control's error message

    I have a number of calendar controls which are used to pick dates, however they all have the ability to key the date in and if you enter an invalid format for the date value, they raise the "Conversion Error Occurred" error which displays on screen in the message box.
    I want to replace this error with something more user friendly. I have tried adding messages to a bundle and defining the bundle in the app config, but it does not seem to work.
    Anyone got any ideas how to do this?
    ta
    b

    hi juergen
    i had a look at that but the "conversion error occurred" message for the calendar does not seem to be defined in the themes
    i think it is actually a jsp validation message, but i can't figure out how to make it change
    i will keep looking i suppose
    b

  • To get Calendar control  in Design Mode

    Can any one help me regarding Calendar control is not available in Toolbar . how to get Calendar control to kept that control beside in to EditBox.we wanted like open that Calendar "POP-UP" window in our SAP-B1 application.Canu  plzz respond that Calendar control asap with your more suggestions.Calendar is their in Menu Bar but their is no Drag & Drop availability is n't their.
    Regards
    ANAND

    I suggest that you export a regular (= "system") B1 form to XML and take the information from there.
    Unfortunately Screen Painter seems not to be up-to-date yet.
    Regards,
    Frank

  • Calendar control

    I like the calendar controls for date fields in LCD. One of our editors however doesn't like that when he clicks on a date field the calendar pop up control appears outside the field and overlaps the adjacent field. I don't have a problem with it. But he thinks it is misleading and is insisting that I shorten the field so it appears that the pop up control is inside the field. The result is now I have to add a line object to fill in the gap left in the border which I think is unnecessary form clutter.
    I want to know if the way these calendar controls are set up bothers anyone else? If I remember right they used to be inside the field in earlier versions of LCD.

    Hi Karuna,
    Please post your question in
    ASP.NET forum where you could get better responses.
    Thanks for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Calendar control modification

    Hello experts,
    We are creating a custom fiori application in which we need to modify the calendar control.
    our requirement is as shown below;
    What we have achieved is :
    1. background color using
    calendar.toggleDatesType([ "2013/04/12" ], sap.me.CalendarEventType.Type07, true);
    2. meaning of colors using CALENDAR LEGEND.
    What we need now :
    1. Custom labels below date
    2. On click of date open an Action sheet to select few actions. for e.g Regularize the attendance
    I have also found that using extend() method we can extend existing controls.
    I have also gone through the below links
    Documentation/AdvancedTopics/OnTheFlyControlDefinition – SAPUI5 Wiki (TIP CORE User Interface)
    Documentation/AdvancedTopics/OnTheFlyControlExample – SAPUI5 Wiki (TIP CORE User Interface)
    Documentation/AdvancedTopics/CompositeControl – SAPUI5 Wiki (TIP CORE User Interface)
    Still struggling to extend a calendar control. please help.
    Regards,
    KK

    Got the solution .
    I have used onAfterrRendering() method of sap.ui.core.Control.
    code:
    calendar = new sap.me.Calendar({
      dayHeight:80,
      monthsPerRow : 1,
      currentDate : "2013/04/30",
    calendar.onAfterRendering = function(oEvent) {
      var divs = $('.sapMeCalendarMonthDays').children();
      var i;
      var length = divs.length;
      var classes;
      for(i=0;i<length;i++)
      classes = $(divs[i]).attr('class');
      $(divs[i]).append('<br/><span style="width:100%;display:block;font-size:0.5em;font-weight:bold; color:green">In:10:30</span><span style="width:100%;display:block;font-size:0.5em;font-weight:bold; color:green">Out:06:30</span>');
    //check the condition
    if(i==3)
      $(divs[i]).addClass('sapMeCalendarType04');
    out put.

  • Calendar Control Date Input Field

    Hi All,
    1) Is there any (easy) way to place a calendar control next to a date input field for date entry help (just like in JS)?
    2) If yes, how could we make the calendar help popup language-dependent ?
    Thanks for all the help...
    H2

    From the help menu in your Developer studio choose:
    SAP Web AS Documentation,
    SAP Web Dynpro applications
    Then go to
    Core development tasks,
    View, programming UI
    UI elements guide.
    Alternatively, on the left hand side you can search for any Web Dynpro class (e.g. IWDContextNode) and acces the Web Dynpro API.
    Good luck, Roelof

Maybe you are looking for

  • Crystal 8 Web Component Server ond Windows Server 2003 and IIS 6

    I am trying to get Crystal 8 Web Component and Page Server to run on Windows 2003 Server with IIS 6. I have done the following: Added the .cri and .rpt ISAPI extension mappings Have Cache ISAPI extentions selected Deselected "verify that file exists"

  • [GTX 560Ti] Artifacts and Crashes.

    I'll try to make this as painless as possible for it has been a huge pain in the rear for me. I've owned this card since April 2011 and since the very first time I used it to play games it worked GREAT!! Later on that same night I used it to watch a

  • Running a Captive Runtime debug build through flash builder

    Is there a way to launch a debug configuration through Flash Builder that has the captive run time built in? I am developing and testing an app for android devices that do not have the newest version of the Air Runtime, some of the devices require ca

  • Creating UDA for a dimension member

    Hi All, when I am creating UDA for a dimension member in my planning application I get the following error. The associated dimension ID has not been set for this property. Do you want to create the association now? Can anyone please let me knwo wahts

  • CS3 document won't print in CS5

    I created an InDesign document in CS3 in Windows and opened it in CS5 on the Mac. It looks fine but when I attempt to print it, the dialog box does not appear. I can open and print other documents but this one doesn't want to cooperate. Anyone have a