Safari inserting  $0$0 $0 into text fields  - is there a setting to change?

I'm doing web site edits in a CMS that uses Ajax (I think) pop up wysiwyg editor. when I submit my text, the line breaks are gone and replaced with " $0$0 $0 $0" (content in quotes only).
This doesn't happen in Microsoft Internet Exploder(1) or Firefox. Suggestions?
(1) Not a typo
Thank you

Juno's help page on this is a little confusing: [http://help.juno.com/support/webmail/u-s-forwarded.html Juno Email on the Web - Mails forwarded as an attachment].
Juno doesn't mention any intentional difference between browsers, but some sites offer different editors to different browsers. This may be particularly true of older sites created using ActiveX controls, which are proprietary to IE. Or Juno might have stopped updating the site and it might not be able to handle two-digit version numbers for Firefox.
It might be possible to test this hands on using a free account ([http://www.juno.com/freeemail]) but it would take me a few days.

Similar Messages

  • How to copy paste a table structure from word document into Text Field [field format Rich Text]

    In our current implementation we have a Blank page with Text Field [field format Rich Text] on generated PDF Document.
    Once the PDF document is generated, user can copy paste content form any word/rtf document to into the Text Field.
    Pasted content retains all text formatting [Bold, Italic, Underline, Indentation] except the Table format. Text Field is removing table metadata from the content and converting it into plant text.
    Is there anyway to copy paste table structure as it is from word document into Text Field?

    Hi,
    I don't think you can! While you can paste formatted text into the rich text field, the table metadata means nothing to the textfield.
    Niall

  • I am creating a request for proposal form and I need to add a commission structure field.  I created a table using the ranking field and now I need to delete the "dots/buttons" and turn them into text fields, is this possible?

      I created a table using the ranking field and now I need to delete the "dots/buttons" and turn them into text fields, is this possible?

    It sounds like what you are trying to do is edit the choices in a likert field to something other than the default radio button. This is not something that you can do in Formscentral at this time.
    Andrew

  • Yoga 13 MSIE10 can't type into text fields

    New machine Feb 2013 used exclusively in laptop mode. Has been great overall but right out of the box I could not type text into any form fields using Internet Explorer 10. What an intro to Windows 8! Discovered I can type text in notepad, then copy and paste it into fields but cannot enter it directly. This was happening with the factory installed software so if it's a third party app conflict it's one that's original equipment. Thankfully Chrome works fine, but sometimes I need to use MSIE and am quickly reminded why I can't.
    Google and Lenovo forums are mum on this subject. Some suggestions pointed to SFC /scannow, which came up with a litany of things it couldn't fix. Enhanced protected mode in MSIE also did not help. Didn't appear possible to reinstall MSIE (where's the DOJ when you need them?) What's next?  Thank you all for your assistance.

    hi dserdu,
    Welcome to the Forums.
    Are you having this issue on the desktop version of I.E. or the Metro version?
      - if the issue only happens on the metro IE, try to open the Desktop I.E. > press ALT+T > choose Internet options. On the Internet Options, go to the Programs Tab, set I.E. to Always and check the box "Open Internet Explorer tiles on the desktop"
    - Link to picture
    Alternatively, if the issue is compatibility between the website and the I.E. versions, you can run I.E. 10 in compatibility mode or on a lower version (i.e. I.E. 9, I.E. 8., ...etc.). To do this:
    1. Open the Desktop I.E. and press F12
    2. On the developer tools, choose Browser Mode IE 10 and choose an I.E. version (i.e. IE 9)
     - Link to picture
    3. When dnoe, press F12 again and observe if you can now type into text fields.
    Let me know your findings
    Regards
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • When I receive calls I always get the option to remind me later, but only certain times I get the option to respond with text.  Is there a setting I need to update to always get this option?

    When I receive calls I always get the option to remind me later, but only certain times I get the option to respond with text.  Is there a setting I need to update to always get this option?  Also i can't use location reminders.  Is this because my calendar is in Outlook?

    The only known way to make it work on an external drive is by first installing Windows onto an internal drive, then cloning the install to an external Thunderbolt drive. Thunderbolt is seen as an extension of the internal bus, so Windows doesn't see it as an external device.

  • Insert Current Date into text Field

    Hi I was wondering if anyone knows how to insert the current
    date into a text field using ASP.NET C# page. When the page loads.
    Or better still insert current date into my database when the
    page is updated. using the insert Server behavier.
    I would be very greatfull for any help.

    To assign it to a text box you couls use the following in the
    onload
    function
    textbox.Text = DateTime.Now.toString;
    Paul Whitham
    Certified Dreamweaver MX2004 Professional
    Adobe Community Expert - Dreamweaver
    Valleybiz Internet Design
    www.valleybiz.net
    "cantmakeitwork" <[email protected]> wrote
    in message
    news:e9qhrv$crd$[email protected]..
    > Hi I was wondering if anyone knows how to insert the
    current date into a
    > text
    > field using ASP.NET C# page. When the page loads.
    >
    > Or better still insert current date into my database
    when the page is
    > updated.
    > using the insert Server behavier.
    >
    > I would be very greatfull for any help.
    >

  • Data type mismatch when inserting into text field

    Hello all,
    Using VB script and ASP.
    I have a page that inserts into a field (casenum) in a table (clientsw) in a database. The field (casenum) in the table is data type TEXT :
    I create a recordset and then an insert statement which the following is part of:
    Code to insert the casenum into the field
    rsClients("Casenum")=Right(Date(),2) & "E-100" & rsCasenumber("countervalue")
    It inserts a number like 09E-1004500
    I then have code that takes that string and passes it to the next page as a variable
    Session("UserID")=rsClients("CASENUM")
    response.redirect "done3.asp"
    When it gets to the next page it is assigned as UserID
    Dim svuserid
    svuserid = "0"
    if (Session("UserID") <> "") then svuserid = Session("UserID")
    %>
    My information inserts into the database exactly as I want it, but when it gets to the next page I get an error that is displayed that says the following:
    Microsoft JET Database Engine error '80040e07'
    Data type mismatch in criteria expression.
    /done3.asp, line 16
    My code on the second page is as follows:
    <%@LANGUAGE="VBSCRIPT"%>
    <!--#include file="Connections/connNewdatabase1.asp" -->
    <%
    Dim svuserid
    svuserid = "0"
    if (Session("UserID") <> "") then svuserid = Session("UserID")
    %>
    <%
    set rsClients = Server.CreateObject("ADODB.Recordset")
    rsClients.ActiveConnection = MM_connNewdatabase_STRING
    rsClients.Source = "SELECT *  FROM CLIENTSW WHERE CASENUM=" + Replace(svuserid, "'", "''") + "  ORDER BY CASENUM"
    rsClients.CursorType = 0
    rsClients.CursorLocation = 2
    rsClients.LockType = 3
    rsClients.Open()
    rsClients_numRows = 0
    %>
    Line 16 is the one that says rsClients.Open()
    If I take the concatenation out of rsClients("Casenum")=Right(Date(),2) & "E-100" & rsCasenumber("countervalue") and have only rsClients("Casenum")=rsCasenumber("countervalue") and change the table field to number, I don't get the "datatype mismatch error"
    What do I change to enable me to leave the above statement concatenated and insert into the table correctly and complete the stuff on the next page?

    >This is an access database, varchar is not an option for a datatype.
    Sorry. In another thread I thought you mentioned using SQL Server
    >I changed the + signed to ampersands instead and it doesn't make a difference.
    I didn't think that was the problem. I was just pointing out that it's a bad practice. If you use the '+' on two strings that can evaluate as numeric, it will actually add rather than concat them.

  • Insert JQuery .html into text field nested inside of symbol

    This is one of those, 'it should be so simple....so of course, it's not' question.
    Got a nested symbol. Rather simple one. Inside the symbol is a background rectangle and a text field. When I click a button, it should insert the HTML I give it from the click event.
    Now initially I did this by just using the text field by itself. No nesting. This is the code:
    sym.$("copy").html("Edge Rocks!");
    OK, success! The text loaded just fine.
    Now let's insert that text field inside of a symbol. And let's call that symbol 'content'.
    Now I try....
    sym.$("content").$("copy").html("Some new text");
    Result? Nothing.
    Tried using stage instead of sym and even added a var stage = sym.getComposition().getStage() statement before that. Nope.
    Yea, they don't make it easy. So what's the solution?
    Here's my example file.
    https://www.dropbox.com/s/5n1ehhsp7r3rbt6/text.zip?m
    BTW, ran this in Firebug's console. No errors.

    Yes and no, Elaine. Kind of confusing but if the button is directly on the stage, that code works. However, if that button gets nested inside of its own symbol, the code no longer works and a JS error appears in console.
    So in other words, the button and the text field are nested inside of symbols, but not the same symbol. So it's a question of the path being used.
    I tried switching sym to Stage to no effect.
    Redid the test file and uploaded it to Dropbox:
    https://www.dropbox.com/s/ha24ki0wp0fb2nw/text2.zip?m

  • Insert File Path into Text Field

    I am trying to create a text filed at the bottom of a form document that will automatically input the file path (e.g.. C\:Folder\File) of the document itself after the document is saved.  I've looked at a few Scripts but nothing seems to be working.  I'm assuming it will look something like this on the "postSave" option:
    this.rawValue = event.target.path.replace(event.target.documentFileName, "");
    I am a very novice programmer so I have no idea if this is even close to right.

    Apparently some of my search parameters were off.  This question has already been answered before.  If anyone comes looking here, this is a link to the page with the answer.
    http://forums.adobe.com/message/4007317#4007317
    Enjoy.
    FYI: here is the code I used for the text field.
    Inspection.TextPage.Bottom.End.Directions.File::preSave - (JavaScript, client)
    this.rawValue = event.target.path

  • Calculate Per Day Salary Into Text Field

    HI,
    I want to calculate per day Salary so that i am using Code .i am enter salary in to :P65_SALARY1 text fiedl and calculated per day salary should come into :P65_per_day_salry text field. I have write that code in to item Source and select
    Source Used :-Always.replacing any existing value in session state
    Souce Type :- PL/SQL Expression or Function
    Source value or expression :- Type That below Code
    I have created item :P65_MONTH for Select Month
    BEGIN
    IF :P65_MONTH ='JAN' THEN
    :P65_SALARY1/31;
    ELSIF :P65_MONTH ='FEB' AND MOD(TO_CHAR(SYSDATE,'YYYY'),4)!=0 THEN
    :P65_SALARY1/28;
    ELSIF :P65_MONTH ='FEB' AND MOD(TO_CHAR(SYSDATE,'YYYY'),4)=0 THEN
    :P65_SALARY1/29;
    ELSIF :P65_MONTH ='MAR' THEN
    :P65_SALARY1/31;
    ELSIF :P65_MONTH ='APR' THEN
    :P65_SALARY1/30;
    ELSIF :P65_MONTH ='MAY' THEN
    :P65_SALARY1/31;
    ELSIF :P65_MONTH ='JUN' THEN
    :P65_SALARY1/30;
    ELSIF :P65_MONTH ='JUL' THEN
    :P65_SALARY1/31;
    ELSIF :P65_MONTH ='AUG' THEN
    :P65_SALARY1/31;
    ELSIF :P65_MONTH ='SEP' THEN
    :P65_SALARY1/30;
    ELSIF :P65_MONTH ='OCT' THEN
    :P65_SALARY1/31;
    ELSIF :P65_MONTH ='NOV' THEN
    :P65_SALARY1/30;
    ELSIF :P65_MONTH ='DEC' THEN
    :P65_SALARY1/31;
    END IF;
    END;When i run Page 65 Then Show me error
    ORA-06550: line 1, column 27: PLS-00103: Encountered the symbol "BEGIN" when expecting one of the following: ( - + case mod new not null avg count current exists max min prior sql stddev sum variance execute forall merge time timestamp interval date pipe
    Error      ERR-1020 Error in PLSQL item processing (function).
    Now Please Tell me how can i calculate Per Day Salary And How to remove that Error.
    Thanks

    HI,
    i have to change according to you but that give me error like.
    ORA-06550: line 5, column 13: PLS-00103: Encountered the symbol "/" when expecting one of the following: := . ( @ % ; indicator The symbol ":= was inserted before "/" to continue. ORA-06550: line 7, column 13: PLS-00103: Encountered the symbol "/" when expecting one of the following: := . ( @ % ; indicator The symbol ":= was inserted before "/" to continue. ORA-06550: line 9, column 13: PLS-00103: Encountered the symbol "/" when expecting one of the following: := . ( @ % ; indicator The symbol
    Error      ERR-1904 Unable to compute item default: type = Function Body computation_type= BEGIN IF :P65_MONTH ='JAN' THEN :P65_SALARY1/31; ELSIF :P65_MONTH ='FEB' AND MOD(TO_CHAR(SYSDATE,'YYYY'),4)!=0 THEN :P65_SALARY1/28; ELSIF :P65_MONTH ='FEB' AND MOD(TO_CHAR(SYSDATE,'YYYY'),4)=0 THEN :P65_SALARY1/29; ELSIF :P65_MONTH ='MAR' THEN :P65_SALARY1/31; ELSIF :P65_MONTH ='APR' THEN :P65_SALARY1/30; ELSIF :P65_MONTH ='MAY' THEN :P65_SALARY1/31; ELSIF :P65_MONTH ='JUN' THEN :P65_SALARY1/30; ELSIF :P65_MONTH ='JUL' THEN :P65_SALARY1/31; ELSIF :P65_MONTH ='AUG' THEN :P65_SALARY1/31; ELSIF :P65_MONTH ='SEP' THEN :P65_SALARY1/30; ELSIF :P65_MONTH ='OCT' THEN :P65_SALARY1/31; ELSIF :P65_MONTH ='NOV' THEN :P65_SALARY1/30; ELSIF :P65_MONTH ='DEC' THEN :P65_SALARY1/31; END IF; END;.
    OK      
    How can i remove this.
    Thanks

  • Cursor Comes Into Text Field then open a window with Values.

    hi,
    i have to create a form with some items.there are two text field item :p1_item_group and :p1_item_name.
    i want to design these form like telly Form .eg in a telly form like if we want to enter state in text field and cursor come on State text field then open a window with all state name in right side and user select state from these window and state come in to text field.
    So i want to this type of action on p1_item_group when cursor come in to this item p1_item_group then quickly open a window with all item group name.
    MY table is
    CREATE TABLE "ITEM_GROUP_DETAILS"
    (     "S_NO" NUMBER,
         "ITEM_GROUP" VARCHAR2(500),
         CONSTRAINT "ITEM_GROUP_DETAILS_CON" PRIMARY KEY ("S_NO") ENABLE
    insert into ITEM_GROUP_DETAILS values(1,'A');
    insert into ITEM_GROUP_DETAILS values(2,'B');
    insert into ITEM_GROUP_DETAILS values(3,'C');
    insert into ITEM_GROUP_DETAILS values(4,'D');
    I want When Cursor Comes in to p1_item_group text Field Then Open a window with
    A
    B
    C
    D
    Item Group List.
    How can i do this.
    Thanks
    MANOJ KAUSHIK

    hi manoj,
    you can write onFocus event on your textbox from which you want to call a pop up window
    write a javascript function and call it onFocus event of textbox. In that function call a new popup page using window.open function.
    on that page you will have a values as you mentioned eg A,B,D etc.
    then user will select value from there and textbox will get that value.
    regards,
    Chetan

  • File name into text field

    Is there a way to display the forms file name, into a text field?
    Example: The form's file name is "MyForm.1.01.pdf"
    I would like to display "MyForm.1.01" in a text field on the form.
    If my form is saved and goes up a revision to say "MyForm.1.02"
    "MyForm.1.02" is then displayed in the text field.
    I was thinking, this could be on the pre open event, so that when the form is saved, it would display the new revision when the form is next opened?
    Thanks in advance.

    Hi,
    The following will get the file name:
    this.rawValue = event.target.documentFileName;
    I would put this in the docReady event, as this event fires only once, when the form opens.
    There is a sample here: https://acrobat.com/#d=ZnxO-dlXXFDS0GvYcQk2NQ
    Hope that helps,
    Niall
    Assure Dynamics

  • How do I auto populate the date into text fields when form is first opened?

    Hello,
    I read all about the changing the scripts but its not really working for me. I was hoping someone could help me with directions on how to auto populate the date into designated text fields when my adobe document is first opened?
    I am working in Adobe Acrobat 9.
    Thank you,
    Sheri

    When you add a new document JavaScript (Advanced > Document Processing > Document JavaScripts > Script Name (enter something) > Add), you will be given a function skeleton by default. Just delete it and enter the line of code I showed above. Now, whenever the document is opened, the code will get triggered and the field will be updated with the current date. There is no "Document Open" action (at least that's accessible via Acrobat's UI), but this is effectively the same thing since any document-level JavaScripts are executed when the document is opened.

  • Cannot input data into Text Field on from Adobe Acrobat  Reader

    I created a form in Acrobat 5 that has check boxes and text fields. Using reader I can open the doc and use check boxes and input text into fields. Once this doc is loaded to our web server and a user opens or downloads the file they can check the boxes but cannot enter any text into the text fields. Am I missing something?
    Thanks in advance

    And so.. what is invalid?
    I've uploaded the pdf files as example:
    My generated pdf
    http://compuhelp.free.fr/adobe/before.pdf
    The modified version by Adobe Acrobat Reader:
    http://compuhelp.free.fr/adobe/after.pdf
    (I can generate a more complexe pdf file with fonts, images,... it will be displayed correctly, but Adobe always want to modifiy it).
    So perhaps I missed somthing into the pdf file format specification ?

  • Today's date dynamically entered into text field that user enters additional text into same field.

    Trying to have today's date dynamically entered into a repeating table row textfield when the button is clicked to create each repeating row. The user can then enter addtional text into the same text field next to the date.
    Example:
    [4/25/2012] This is the text the user entered.
    Today's date is populated in each update row created when the "Update Row" button is clicked.
    The following script works but only for the first instance, not the second, third, forth, etc...
    Click event: (JavaScript, client)
    this.resolveNode('Table2._RowB').addInstance(1);
    xfa.resolveNode("Table2.RowB.#subform.Update").rawValue
    Thank you,
    ~Don

    Hi Don,
    Does this solution cover the above problem? https://acrobat.com/#d=VjJ-YsXLKmV6QU84JrAAIw
    Niall

Maybe you are looking for