InputDate Component issue in JDeveloper11g Preview3

Hi All,
We have developed an Application in JDeveloper11g Preview1 and Migrated this Application to JDeveloper11g Preview3 . During Migration we have removed the .adf folder from the application.
The InputDate Component is not working Properly. The Problem is when ever we are changing the year of the Date component by clicking on the arrow it is not getting reflected.
If we are changing the year manually then it is working properly.
If we are changing the Months in the Date Component it is working properly.
We are facing a problem with the valueChangeListener of the InputSpin Box it is not working properly. if we are deleting the value from the spin box and changing it manually then the valueChangeListener is working but if we are clicking on the arrow of the spin box then the valueChangeListener is not getting Called. May be this is the same problem of the spin box I am facing in the Date Component.
Please help me out in solving this problem
Thanking You,
Madhavi.

Hi Frank,
Thanks for your Suggestion.
I have done the same thing as you have suggested, but I am facing the Same Problem with the SpinBox component.
If I am manually changing the value of the SpinBox then the valueChangeListener is getting called.
If I am changing it with the help of the arrow buttons besides the SpinBox then the valueChangeListener is not getting called.
This is the Code that I have written for SpinBox in JSPX page
<af:inputNumberSpinbox label="Label 1"
binding="#{backing_untitled1.inputNumberSpinbox1}"
id="inputNumberSpinbox1"
valueChangeListener="#{backing_untitled1.fireSpinBoxValueChange}"
minimum="0" autoSubmit="true"/>
This is the Code that I have written in the Backing Bean related to the SpinBox
public void setInputNumberSpinbox1(RichInputNumberSpinbox inputNumberSpinbox1) {
this.inputNumberSpinbox1 = inputNumberSpinbox1;
System.out.println(inputNumberSpinbox1.getValue());
public RichInputNumberSpinbox getInputNumberSpinbox1() {
return inputNumberSpinbox1;
public void fireSpinBoxValueChange(ValueChangeEvent valueChangeEvent) {
// Add event code here...
System.out.println("in Value change event for SpinBox");
I think the same SpinBox is being used for the inputDate Component that is why we are facing the same problem in selecting the Year of the DateComponent.
Thanking You,
Madhavi.

Similar Messages

  • How to switch af:inputDate component to Thai (Buddhist) Calendar ?

    Hi all,
    i have the following problem:
    I have ADF/ADF Faces application and want to prepare it for THAI support.
    One of the issues which i have with this, is to turn the application to support Thai Calendar.
    I succeed to change the dates comming from the Business Components by setting locale on the following places:
    //Set Binding Ctx Locale
    Locale userLocale = new Locale("th", "TH");
    bindCtx.setLocaleContext(new DefLocaleContext(userLocale));
    //Set JSF Locale
    UIViewRoot uiRoot = fctx.getViewRoot();
    uiRoot.setLocale(userLocale);
    However , this doesn't influence af:inputDate component. It still continue to show me current date as by normal Calendar.
    Can somebody help with this ?
    Thanks in advance,
    Krasimir

    chk this
    Picking month with af:inputDate
    <af:inputText id="antecipadaPostergada" value="#{attrs.value}" contentStyle="width:65px">
    <f:convertDateTime pattern="MM/yyyy"/>
    <af:validateDateTimeRange minimum="2011-01-01" maximum="2011-12-01"/>
    </af:inputText>

  • Changing the default icon of a af:inputDate component

    Hi,
    I want to change the icon of an af:inputDate component.
    I discovered two solutions, but they are imcomplete solution.
    Solution 1:
    af|inputDate::launch-icon-style{
    background-image: url("../images/icone_calendario_menor.gif");
    af|inputDate::launch-icon-style:hover{
    background-image: url("../images/icone_calendario_menor.gif");
    af|inputDate::launch-icon-style:active{
    background-image: url("../images/icone_calendario_menor.gif");
    Problem: When I press the icon whith the mouse button and wait still appear a default icon while mouse button is pressioned.
    Solution 2:
    af|inputDate::launch-icon{
    content: url("../images/icone_calendario_menor.gif");
    width: 16 px;
    height: 16 px;
    af|inputDate::launch-icon:rtl{
    content: url("../images/icone_calendario_menor.gif");
    width: 16 px;
    height: 16 px;
    Problem: This solution works on Internet Explorer, but in Mozilla Firefox the new icon cover partially the default image but still possible to see a piece of the defaul icon.
    Observation: My new icon is 16 x 16 pixels.
    I believe that the solution 1 is better, but i think is missing a piece of code, there is a billion of icon states, core, busy, compact, depressed, selected , etc.
    Thanks,
    Victor Jabur
    Edited by: user4579872 on Apr 26, 2010 5:29 PM

    Check this doc http://download.oracle.com/docs/cd/E15523_01/apirefs.1111/e15862/toc.htm#StandardPseudoClasses
    It shows all pseudo classes available.
    Timo

  • Validate Date Range in inputDate component

    Hi
    I am using JDev 11.1.1.2.0
    I have an inputDate component which on click i need to give dates from today to future dates not passed dates.
    So i have included 'validate date time range' component in the inputDate component and in the minimum property i have declared 'adf.currentDate' using expression builder and set the maximum as Jan 31,2099.
    But when i execute my application i am able to select passed dates using the inputDate component, please help how can i check the date using a validator in inputDate component.
    Thanks
    Sudeep

    ya i had tried with that property too....
    i have declared minValue as adf.currentDate and on that it changes the value of maxValue to current date in Jan 3,2012
    i have convertDatetime component in my inputDate to display the selected date in certain format.
    It gives error as the format doesnot matches with the convertDatetime and inputDate component.
    How can i use the minValue and maxValue of inputDate component?
    the component:-
    <af:inputDate
    label="Planned Termination Date"
    id="id2"
    value="#{modifyuser.pterminationdate}"
    valueChangeListener="#{modifyuserfields.plannedTermDate}"
    minValue="adf.currentDate" maxValue="2099-12-31">
    <af:convertDateTime pattern="dd-MMM-yyyy"/>
    </af:inputDate>

  • Custom component issue

    Custom component issue
    According to customer requirements, we want to get such an effect in the development of custom components:
    Drag and drop custom components to the Flex builder work area, it can generate more than the default properties, not just generate "x", "y" attribute.
    【Details are as follows】
    We design a custom panel "CustomPanel.mxml" in the project development, then drag it into the workspace in the Flex builder development environment.
    View the source code found that it can only generate "x", "y" attribute in default. That is:
    <ns2:CustomPanel x="105" y="74">
    </ns2:CustomPanel>
    【Issue】
    How can we do that when drag the 'custom component' into Flex builder workspace,  we can generate "layout" attribute in addition to "x", "y" attributes?
    That is:
    <ns2:CustomPanel x="105" y="74" layout="absolute">
    </ns2:CustomPanel>
    【Note】
    The following code will be generated when the "panel component comes with Flex builder environment" is dragged into workspace.
    <mx:Panel x="121" y="134" width="250" height="200" layout="absolute">
    </mx:Panel>
    How it is done?

    I am sorry to bother you again.
    I have tried the web site content, but it can't helped!
    There is a custom component called 'Basket', source code is as follows:
    package picnic
    import mx.containers.Panel;
    public class Basket extends Panel
      public function Basket()
       super();
       layout = "vertical";
       setStyle("backgroundColor", 0x00FFFF);
       setStyle("horizontalAlign", "center");
    Here it is worked when the attribute "layout" is set to "vertical", but it isn't when "layout" is set to "absolute" !
    When the property is set to "absolute" phenomenon is as follows:
    Drag component such as 'Button' into "picnic component". It will automatically go to the top left corner position,
    just like the 'layout-attribute' is not set.
    Why is there such a phenomenon?

  • Subcontracting Component  Issue Error

    HI,
    i am creating Sub contracting Purchase order.component qty is issued for unlimited, accepted for PO.
    my option is Po Parent qty against Component issued Excess qty not Allowed.
    Purchase Order Qty A: 100Pc
    Child Qty               B : 100PC
    Issued qty             B :150 Pc is Allowed.
    this Child qty are maintained for BOM.
    Plz, Explain and Advise the Issue.
    By,
    Jeevan

    Dear,
    You can not issue the quanity more than the BOM component quantity with respective to the PO.
    Transaction ME2O uses the component quantities from the individual purchase order items. However, it does not set up a stock based on purchase orders (POs). The system therefore does not assign POs directly to quantities either. The evaluation of the SC stock is therefore always a cumulative analysis of all the requirements of a material over time. The "Closing Stock" for each material displays whether there is excess stock or a stock undercoverage at that time, or whether requirements and stock are balanced.
    You can set up the SC stock with larger quantities than component requirements exist at that time. This option is often used if, for example, you want to set up buffer stocks for the subcontractor for subcontracting works that frequently recur.
    Hop clear to you.
    Regards,
    R.Brahmankar
    Edited by: R Brahmankar on May 19, 2009 12:26 PM

  • Setting the inputdate component on user's time and date in JDeveloper 11g.

    Can somebody help me non this? I was wondering on how will I get the user's time and date as the default time and date for my inputdate component because it always shows the server's date and time on where my application is placed.

    This is what I did:
    <afh:head title="EvCore Suppression"
    <afh:script text="function dateTime()
    var d = new Date();
    var t_date = d.getDate(); // Returns the day of the month
    var t_mon = d.getMonth(); // Returns the month as a digit
    var t_year = d.getFullYear(); // Returns 4 digit year
    var t_hour = d.getHours(); // Returns hours
    var t_min = d.getMinutes(); // Returns minutes
    var t_sec = d.getSeconds(); // Returns seocnds
    }" </afh:script>
    </afh:head>
    but there's an erorr near <afh:script, it says that "Using HTML script tag can result in subtle/hard to diagnose bugs, trh;script should be used instead. Recommended attriibute 'type' is missing."
    I tried to change my code based on the recommendation but it still generate an error on the same place and the same recommendation.

  • Negative Component Issue

    Hi
    It is mentioned in the oracle inventory management material that There are different ways we can receive inventory in to stock: for instance from manufacturing shop floors by :
    - Component Return
    - Negative Component Issue
    - Assembly Return
    My question is:
    what is "Negative Component Issue" ? and how could it be performed?
    Thanks
    Walid

    HI,
    negative component issue is used to issue negative components from job to inventory.
    they are normally used in denoting by products that are produced in a job when performing a job, and usually by products are returned to inv from job.
    so negative component issue type is used.
    is it clear?

  • Af:inputdate population issue

    HI ,
    Using jdev11.6 .
    on page loads af:inputdate field will populate some date , but issue is, as soon as user click on the input date component , the default calender date selection always going to the current date ,not populated date.
    Please let us know is there ways ,calender component shows the populated date , not default current date .?
    thanks

    Hi,
    I have done using the below format. I have set the initial date value in the Constructor.
         this.setDat(new SimpleDateFormat("dd/MM/yyyy").parse("22/12/2013"));
    On the UI, i have the value of the date:
         <af:inputDate label="Date" id="id1" value="#{viewScope.flNum.dat}"/>
    I can see the same date set, and also when i get the popup, after clicking on the icon, i can see the same date highlighted.
    My JDEV: 11.1.1.6.0
    Thanks,
    Pandu

  • Show Time only in inputDate component

    Hi,
    I have a requirement to show Time only field, and later update this Time to the a Date field in the database with this time portion only.
    I used the convertDateTime on the inputDate as follows:
    <af:inputDate label="Start Date" id="id1" required="true"
    binding="#{pageFlowScope.calEntryBean.startDate}"
    visible="true"
    partialTriggers="soc4">
    <af:convertDateTime pattern="HH:mm"
    timeZone="#{session_resourceProfile.userTimeZone}"/>
    </af:inputDate>
    It is displaying the Time correctly, but when launch the date picker, it still shows the calendar plus the time selection. Since the patterm is "HH:mm", the date in the calendar popup is incorrect. Is there any way to hide the calendar and shows only the time selector?
    Please advise.
    Thanks.
    -Mina

    I tried using convertDateTime under inputText component. It works fine displaying the time portion correctly with the timezone converted too, but when getting the time value from the inputText when saving, it is one hour off. Somehow it has some issue,s suspecting it's the winter and summer time, so there is one hour off.
    Hence, I was trying to see if there is any other solutions.
    Thanks.
    -Mina

  • Partial Submit type something for InputDate Component?

    Hi,
    I am using Build JDEVADF_11.1.1.3.PS2_GENERIC_100408.2356.5660. I have an ADF table inside my page fragement. One of the column inside table is of InputDate type. Whenever I am clicking input date my complete page fragment gets initialised or refreshed. I don,t want that because I have a method which is getting executed because of it again and again which is giving problem to me. Is their any Partial Submit type anything for Input Date component to resolve this.
    Regards,
    Vik

    As a tree stamps it's children (nodes) and each node can be different, a tree as such don't partial submit. The node content however can issue a partial submit.
    You can also add an other component as partial trigger target in the node selection listener using
    // PPR refresh a jsf component
    AdfFacesContext.getCurrentInstance().addPartialTarget(UIComponent);Timo

  • SAP R/3 application component issue

    Hi all,
    My issue: SAP R/3 application component hierarchy node in RSA6 got saved in $TMP package as local object. When iam transporting the request from Dev to QA this hierarchy is not getting transported and all the application components in ECC QA are assigned under not defined node as individual node.
    Not only this when i replicate the data sources in BI side in QA these data sources are replicated but come under unassigned nodes because of the missing main node.
    So can any body help me in removing this main node from the $TMP folder and save this in a transpotable package to transport that to QA ECC and the same to replicate in BI.
    Regards,
    Prabhakar.

    Hi Markus,
    This issue iam facing in ECC side. Unless untill i transport this application component hierarchy all my application components in ECC QA will be under a not defined nodes.
    So please suggest me the approach to resolve this issue.
    Regards,
    Prabhakar.

  • Ibase/Component issue while creating a message from satillite system

    Hi experts,
    we have implemented the service desk functionality in solution manager system.
    User is able to create message in solution manager directly.
    While creating message from a satellite system IBASE/component fields are filled with incorrect values.
    Because of this user unable to create message from satillite system.
    Has someone any ideas where we do some settings to get correct Ibase/Component values while creating message from satillite system?
    Thank you in advance,
    Babu

    Hi  Babu,
    For Creating messages in SOLMAN make sure that in T code SM30  under the table BCOS_CUST data is maitained
    OSS_MSG     W     NONE     CUST620     1.0
    First your should make your solman ready for posting issues within.
    Then connect it to ECC systems and try posting issues there.
    Do not user Tcode NOTIF_CREATE for posting issues  always use HELP- Create Support message.
    Thanks
    Nand

  • LOADER COMPONENT ISSUE

    I noticed that when using the Loader component in Flash 8 -
    the following issue:
    I have a thumbnail gallery that uses the Loader component to
    view the large image.
    when i view the site in fire fox it works perfectly (scaling
    the content and centering it within the loader component shape)
    but when i view it in IE - no scaling or centering occurs!!??
    any idea why this is happening and how i can rectify
    it?

    Hey why don't you try adjusting the permissions and hot
    linking protection on your servers control panel? This might be the
    problem.

  • Import Fail crm 2011 to crm 2013 Legacy component issue

    Hi All
    We are getting issues during organization import from crm 2011 to crm 2013 , the error is 
    "We have detected the presence of legacy component(s) during upgrade, these components are not supported in Dynamics CRM 2013. Please refer to upgrade log file C:\Users\Administrator\AppData\Roaming\Microsoft\MSCRM\Logs\LegacyFeatureCheck.xml
    for more information."
    when we check log file it shows the error "ISV folder under CRM Website contains one or more files"
    Even we removed everything from ISV folder , Iframe urls from app , solution which is using ISV urls ,plugins and custom workflows but still the error is same
    Please help to resolve this issue .
    Thank you
    Sharique

    Hi,
    Please refer below blog having details about "Removal of the 2007 Endpoint and Legacy Features"
    http://blog.simonjackson.info/2013/07/whats-changing-in-crm-2013-from-sdk.html
    The following legacy Microsoft Dynamics CRM 4.0 features will be removed or will no longer be supported in the next major product release:
    ISV folder support for custom web applications
    Microsoft Dynamics CRM 4.0 plug-ins
    Microsoft Dynamics CRM 4.0 client-side scripting
    Microsoft Dynamics CRM 4.0 custom workflow activities
    Also you can download a tool that can detect legacy feature on your server
    http://go.microsoft.com/fwlink/p/?LinkID=309565
    Entire documentation is available at below article.
    http://msdn.microsoft.com/en-us/library/dn281891.aspx
    Hope this helps.
    Ajay Chawla

Maybe you are looking for

  • Major Aperture Issue - MBPR

    I recently bought a MBPR and bought the newest version of Aperture as i have been using it for years. One day I went to open the software (i think i may have also done an update) and it provided me with this error code - Process:         Aperture [16

  • DNG Converter changes my file names

    What is the correct setting for keeping original the names when converting RAW files? When I try the default "Document Name" it replaces the first letter of the original file number with an underscore (_). In place of P1010036.RW2, for instance, it p

  • I can't open OLT and OTM

    Iam new to oats,i have installed oats in my system and were working everything properly.Unfortunately today when i was trying to open OLT and OTM,it is showing some error.The error is a message "Error 404--Not Found From RFC 2068 Hypertext Transfer P

  • Single-App Subscription

    I would like to have a single app subscription, however I see that requires as CS3-6 serial number. Is there any way I can subscribe to Photoshop CC without the aforementioned serial number?

  • " file is missing

    I'm running FCP6 on a macbook pro. I've moved a project from my MacPro system (running FCP6) so that I can work on it while I'm on the road. I moved the "project title" media folder from the capture scratch into a new capture scratch folder on the dr