Date field is always disabled in qlist form

Hi,
  We are using Qlistform(quest webpart), and observed that when I include a date time field(new form), date field's calendar popup is greyed out, But I can only change the time, but not the date.  Any resolution for this?
Thanks,
Poonam

Can you try deactivating the web part in a test site collection, or one that doesn't have any work you want to make live and see if this reverts to the normal behaviour.  This way you'll be able to see if the error can be attributed to that product.
I'd also suggest downloading
SharePoint Manager 2010 and seeing what property that field has been set to.
Quest also maintain a community form which you might want to consider posting into. 
http://communities.quest.com/community/sharepointforall/customization?view=discussions#/?filter=answered
Steven Andrews
SharePoint Business Analyst: LiveNation Entertainment
Blog: baron72.wordpress.com
Twitter: Follow @backpackerd00d
My Wiki Articles:
CodePlex Corner Series
Please remember to mark your question as "answered" if this solves (or helps) your problem.

Similar Messages

  • The data fields in a filled-out PDF form disappeared after a crash.  Is there any way to restore the lost entries?

    Adobe Reader crashed while I had a filled-out Adobe PDF form open.  When I reopened the file, I found that all of the data that had been entered into the form fields had disappeared.  Is there any way to restore the data that is missing?
    I note that the "Restore" command in the Adobe Reader file menu is not available (grayed out).
    Thanks for your time.

    Hi a2jc4life,
    maybe you can restore your deleted profile with this tool
    http://www.chip.de/downloads/FileRestorePlus_29645008.html

  • The date field does not appear on my form

    On my saved form, the date fields do not reveal the calendar icon to select a date like it does on the test form. The date field is instead a free text field. Can somebody explain what happened to the date field?
    Thank you.

    Hi,
    If the form is saved as pdf, the date picker is not support in pdf.
    Regards,
    Perry

  • Can Acrobat auto populate a date field upon digital signature of a form?

    We use several fillable forms with digital ID signature fields.  A business rule requires a date field next to the signature field.  Is it possible to define the date field to auto populate once the user signs the form?  I can't check this in Acrobat since I only have the reader.

    Hi,
    The short answer is yes, but of course you'll need to get Acrobat to edit the PDF file.
    Generically, here is what  you are looking to do:
    Open the Digital Signature Properties dialog
    Select the Signed tab
    Select the This script executes when the field is signed radio button
    Click the Edit button
    Add the code snippet below to the JavaScript editor
    Click the OK button on the JavaScript editor
    Click the Close button on the Digital Signature Properties dialog
    // JavaScript code to add the date at signing time
        var currentTime = new Date()
        var month = currentTime.getMonth() + 1
        var day = currentTime.getDate()
        var year = currentTime.getFullYear()
        var signingTime = day +"/"+month+"/"+year  //Modify into your preferred format
        var f = this.getField("Text1");  //Modify the field name as necessary
        f.value = signingTime;
    Good luck,
    Steve

  • Assigning a time to a date item results always in 00:00 (Forms 6i)

    Hi,
    in Forms 6i I have a date item (called time) with the format mask hh24:mi.
    If I enter at runtime a time in that field (eg. 08:00) everything is fine.
    But if I assign the time to that item programmatically with
    :block.time := to_date('08:00','HH24:MI');
    or with
    :block.time := to_date('01.01.2002 08:00','DD.MM.YYYY HH24:MI');
    the displayed time is always "00:00".
    Any hints on this?
    Thanks in adcance,
    Marco.

    Hello,
    Are you sure the item type is DATETIME ?
    Francois

  • Grouping by Date Field Weekly Always starts on a Sunday, Can I change this

    Post Author: mikazza
    CA Forum: General
    Hi,
    I have a report which groups sales by the date they were made dailly, it also has another group which sits above this and groups these same sales by week so I can get a weekly sales figure aswell.  All this works ok but the weekly bit always starts on a Sunday, is there any way to change this to start on a Monday instead?
    Many thanks in advance
    Michael

    Post Author: mikazza
    CA Forum: General
    It's okay,
    Found the answer....
    I created a group on a formula:  datepart("ww",{TRANSACTION.TRANSACTION_DATE},crMonday)
    and when creating this group I clicked customise group name field and entered this formula:
    totext({TRANSACTION.TRANSACTION_DATE}-dayofweek({TRANSACTION.TRANSACTION_DATE},crMonday)+1, "dd/MM/yyyy")
    This basically sets the start date of the week to Monday, change crMonday to whatever day you want to start from then.

  • How do I auto fill a date field for an Adobe form?

    Hi. I am new to Acrobat. I would like to have Acrobat auto fill today's date in a date field when I open an acrobat form. I check the forum help and it indicated that I associate this javascript text to the field:
    var f = this.getField("Today"); if (f.valueAsString=="") f.value = util.printd("mm/dd/yyyy", new Date());
    However, when I try it out, nothing happens.
    Any clue as to what I am doing wrong?
    - Michael

    Hi M. Krebs,
    Is there a text field in the PDF labeled "Today" and set as a date field? And does the Date Options format set for the field match what is in the JavaScript (mm/dd/yyyy)?
    Best,
    Sara

  • Creating a date field that autogenerates when form is opened but the date is fixed upon signing.

    Hi,
    I have been creating a series of PDF forms on Adobe XI Pro that are designed to be filled in using Adobe Reader (hence are saved as Adobe Reader Extended). Once the form is complete there are signature fields that the user digitally signs which then deactivates specific form fields from further editing. Alongside the signature field I have got a date field which, at the moment, is using JavaScript to auto-generate the current date upon opening. However, the issue I am having is that I want this date field to be fixed when the form is signed, rather than updating again when the form is next opened. Is this possible?
    The document JavaScript that I am currently using to generate the date is as follows:
    this.getField("PR_Date1").value = util.printd("dd/mmm/yyyy", new Date());
    But obviously this is independent of the date field.
    I am very new to Adobe in general so I don't have much of an idea about how to go about doing this. Could somebody please help me to do this if it is possible?
    Thank you
    KC

    Hélène-
    Thanks for the detail regarding validation script, but I still am having a problem with it.
    I have tried what you told me (remove reset the value) the popup no longer appears when the form is opened. But the validation does not seen to be working. It is not working either in the validate or exit event. This is what I have now on that text field.
    ----- form1.#subform[0].Y::exit - (JavaScript, client) ---------------------------------------------
    //Verify year is current or year+1
    var today = new Date();
    var year = today.getFullYear();
    if (this.rawValue == year || this.rawValue == year+1)
    app.alert("Year is invalid.\n\nOnly current or next year is valid.");
    ----- form1.#subform[0].Y::validate - (JavaScript, client) -----------------------------------------
    //Final verification
    ScriptObject.ValidateField(event.target, this);
    This final verification script I have taken from the samples on the
    LiveCycle Developer Center (Validating field content in a form hosted in Adobe Acrobat).
    The alert only displays when 2007 or 2008 is entered. I am really confused now. I thought I had a handle on this with your explanation.
    I do not know where to go now. The Object Pallet is setup as:
    Field Tab
    Allow Plain Text Only and Limit Length are checked with a Max Chars: 4. Edit Pattern: 99999
    Value Tab
    Type: User Entered - Required
    Validation Pattern: 9999
    Validation Script Message is checked - in Message box Invalid Year.
    Binding Tab
    Default Binding: Normal
    Data Format: Plain Text
    I am hoping that you can explain what I have wrong.
    Thanks so much,
    Confused Nancy

  • Disabled input date field

    Dear Techies,
    i am using BSP with page flow logic.
    I have a date field, my requirment is i have to mandate the usage of date field only through the calander help which is provided by the input field, it should be disabled by the keyboard entry only for dat field.
    I disabled the input field on page load by using java script, and the input field is working fine, the changed value is appearing but the changed value is not being stored in the value attribute.
    When i debug the javascript is overriding the disabled property, please help me how can this be achieved.
    Regards
    Imran.

    hye Bhavana,
      Thanks for the patience.
    My requirement is:
    i should have an input field of type date, which should not be input enabled but it should accept values from the calender help. That means user should select only date from calender, but he should not be in a position change or enter values from keyboard.
    For this i have followed this approach.
    i have my htmlb tag for input.
    <htmlb:inputField id       = "tx"
                            value    = "<%= date %>"
                            showHelp = "X"
                            type     = "date" />
    And i have javascript which will disable it at the client side. This will only disable the input from a keyboard, but when i select date from calander it appears in the input field which is as per my requirment.
    Now when i am going for any eventing, the value in the input field is initialized. This is my problem. I want the input field to retain its value.
    If i dont use the javascript and make it enabled input field, i dont have a problem in rendering the change in date.
    So please give me any solution through the approach or i dont mind any new solution.
    Hope it is clear and once again appriciate your effort in understanding.
    Awaiting your response.
    Regards
    Imran.

  • What purpose is the Data field in the registry on an individual file extension exclusion in Endpoint Protection?

    File extension exclusions for System Center Endpoint Protection are at
    HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Microsoft Antimalware\Exclusions\Extensions
    and consist of a REG_DWORD value, named as a file extension such as .mdf, and a corresponding Data element, which always appears to be 0x00000000
    Can this data value ever be anything else, and if so, what are the possible values and their meanings? If not, I'm curious why not just make it a REG_SZ and leave it blank, rather than a data type that requires a value.

    The data field is always 0x00000000. I think other values would be ignored. Only the Name field seems to be important.
    The funny thing is that the exclusion entry can be a REG_SZ and it will work just the same. In fact, if you use the tool that creates a GPO to deploy EP policy instead of using ConfigMgr, the entries are created as REG_SZ instead of DWORD.
    I'm not sure why both methods are used, but the antimalware engine seems to interpret them the same.

  • Document date field (GOHEAD-BLDAT) setting in transaction MIGO

    Hi,
    I want to set field GOHEAD-BLDAT as blank in Transaction MIGO but not defaulted by the system date (sy-datlo). I have used transaction OMJX to set this fields in required status, but this field  in transaction MIGO didnu2019t run as I expected.
    How can I set up this field blank ?
    Regards.

    Hi,
    In the R/3 Standard for transaction MIGO, the Posting date field is
    always defaulted by the system date (sy-datlo) because it is hardcoded
    in the program.
    You can check it in the main program SAPLMIGO, source code of LMIGOKH1:
          IF ps_gohead-bldat IS INITIAL.
            ps_gohead-bldat = sy-datlo.
          ENDIF.
        ENDIF.
        IF ps_gohead-budat IS INITIAL.
          ps_gohead-budat = sy-datlo.
        ENDIF.
    I am afraid I must therefore confirm that, if you desire to change this
    default value for the posting date in transaction MIGO, you will need
    to modify the standard coding.
    BR
    Nadia Orlandi

  • I am working in Adobe Acrobat 9 Pro and just created a pdf form from a MS Word document. I need to find out how to have a date field in my form which will update automatically. Can some one out there help me?

    I am working in Adobe Acrobat 9 Pro and just created a pdf form from a MS Word document. I need to find out how to have a date field in my form which will update automatically.

    Update automatically under which circumstances, exactly?

  • Date field not retent in Adobe form - Review

    Hi,
    I have a date field(Last day worked) which is not bound to any data view field in SFP transaction. When the form is in a Edit mode, I select a date in Last day worked field. After I click on Click & Send option, the form is in Review mode (with field editable), the Last day worked field goes blank.
    How do I save the value that I entered in Edit mode.
    Kindly advice.
    Thanks,
    Gowri

    You should bind the field to an attribute.
    Regards,
    Antony

  • How to add a mm-dd-yyyy date field type in a Planning Data Form

    Hi John,
    pls, I have one question regarding the possibility of adding a date field type for example 03-03-2009 in a cell of Planning Data Form application.
    for example, I created:
    - 2 members in Period dimension: StartProject and EndProject and I need to enter and track date for these fields;
    - one Account member called Project;
    - and a simple form with these collumns and row;
    Trying different settings for my members - seems that I cannot input date in the cell and rcvd errror: "you have entered invalid value".
    Pls, can you confirm me if it's possible to enter date type in a form?
    If yes, what is the specific setup for the Account and Period properties: Data storage, Time Balance, Data type, Account type etc
    many thanks,
    Robert

    Many thanks John!!! that's it!!!
    I had to change it in Data Type evaluation Order because I'm using EPMA and it's working now!!
    Thanks again!!!
    Rgds,
    Robert

  • Error while updating Date Field on Process Form.

    Hi,
    I am using java code to pre-pop date on the process form.First I used a java code whic took java.sql.date as input and returned the same java.sql.date.But it gave an error that:java.lang.String cannot be converted to java.sql.date.......
    So I changed the java code and now it takes string as input and returns java.sql.date. This code works fine for Pre-pop adapter and the date is populated on the process form.
    But when i use the same code in a Process Task adapter to update the date, then it gives the following error:
    ERROR [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' XELLERATE.ADAPTERS - Class/Method: tcAdpEvent/updateDataSetValuePost encounter some problems: Adapter Execution Error: updateDataObjFieldValuePost: error updating UD_OID_USR_DATE_OF_BIRTH
    ERROR [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' XELLERATE.ADAPTERS - Class/Method: tcAdpEvent/updateDataSetValuePost encounter some problems: {1}
    Can anyone suggest any method to update date field on process form?

    Hi Abhi,
    Can you tell me how you have implemented populating an UDF based on Prepopulation of another UDF. I have a similar kind of requirement. It would be great if you share your code or relevant part of it.
    Regards,
    Sunny Ajmera

Maybe you are looking for

  • How can I set up Thunderbird so it sees my custom folders?

    It only shows me Inbox, Outbox, Trash and Sent items. For example If I create a folder and move some of my mails there, the client will stop showing me anything. As if that mail is gone, but if I actually log in to my email using a browser it would a

  • With IOS 7.0 How do you change the Color Red, that shows up on the Calendar to another color? People with certain eye problems cannot tolerate the color Red.

    How do you change the Color Red, that shows up on various points of the Calendar to another color? Persons with certain eye problems have visual irritations that can be caused by the color Red. This problem came up with the update to IOS 7.0.

  • CS5 All kinds of trouble

    Hi there, Just purchased CS5 Design Premium.  Full, not upgrade, for Mac. I am installing onto a MacBook Pro, only a few months old, with Snow Leopard on it which came with it.  I did not upgrade from a previous version. Here are the symptoms: Acroba

  • ESRI BW Integrated

    Hello and sorry about my english... i have a question about Esri, BW and to show this map at the web. I had create a shapefile and load up to BW. Then i create a template with a map and the dataprovider to grap of a view with this attribute. The Demo

  • Horrible problem with lost version of film

    I don't know what's wrong... Over the past two days i've been making revisions to a sequence, including two voiceovers. Last night i finished it. Later last night, I showed the sequence to a friend in Digital Cinema Desktop preview, then closed the p