missing : after property id error

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • 1 connu

    missing : after property id error

    Hi,

    I don't have any clue with Javascript but I use one from Sun for Java applet
    deployement (http://java.com/js/deployJava.js).

    The parameters of my applet are generated according to user's choices. I
    have a case with error "missing : after property id" on line 816.

    Thanks in advance for any help.


    Pierre

    The script :
    <script>
    788 var attributes =
    789 {
    790 code: 'concentrationa pplet.Concentra tionApplet.clas s',
    791 width: 680,
    792 height: 450,
    793 archive:
    'JFreeChart/jfreechart-0.9.21.jar,JFre eChart/jcommon-0.9.6.jar,Conce ntration.jar',
    794 codebase: 'http://localhost:8080'
    795 };
    796
    797 var parameters =
    798 {
    799
    800 subsNo: 3,
    801
    802 substance: 'ACENOCOUMAROL' ,
    803
    804 T12: 10.00000,
    805
    806 Q0: 1.00000,
    807
    808 substance2: 'AMPRENAVIR',
    809
    810 substance3: 'ALPRAZOLAM',
    811
    812 T123: 13.00000,
    813
    814 Q03: 0.70000,
    815
    816 Ki_2_1_3A4/5: 0.05561, // error here !!!
    817
    818 listKi: 'Ki_2_1_3A4/5;'
    819
    820 };
    821
    822 var version = '1.5.0';
    823
    824 deployJava.runA pplet (attributes, parameters, version);
    825 </script>




  • Jorge

    #2
    Re: missing : after property id error

    On Jun 3, 11:23 am, "1 connu" <incon...@bluew in.chwrote:
    Hi,
    >
    The parameters of my applet are generated according to user's choices. I
    have a case with error "missing : after property id" on line 816.
    >
    816 Ki_2_1_3A4/5: 0.05561, // error here !!!
    "Ki_2_1_3A4/5" is not a valid name : the problem is the slash "/".

    --Jorge.

    Comment

    • 1 connu

      #3
      Re: missing : after property id error

      I put quotes and the problem disappears.

      'Ki_1_2_3A4/5': 0.05561,


      "1 connu" <inconnue@bluew in.cha écrit dans le message de news:
      45ce5$48450dab$ 55da1131$23950@ news.hispeed.ch ...
      Hi,
      >
      I don't have any clue with Javascript but I use one from Sun for Java
      applet deployement (http://java.com/js/deployJava.js).
      >
      The parameters of my applet are generated according to user's choices. I
      have a case with error "missing : after property id" on line 816.
      >
      Thanks in advance for any help.
      >
      >
      Pierre
      >
      The script :
      <script>
      788 var attributes =
      789 {
      790 code: 'concentrationa pplet.Concentra tionApplet.clas s',
      791 width: 680,
      792 height: 450,
      793 archive:
      'JFreeChart/jfreechart-0.9.21.jar,JFre eChart/jcommon-0.9.6.jar,Conce ntration.jar',
      794 codebase: 'http://localhost:8080'
      795 };
      796
      797 var parameters =
      798 {
      799
      800 subsNo: 3,
      801
      802 substance: 'ACENOCOUMAROL' ,
      803
      804 T12: 10.00000,
      805
      806 Q0: 1.00000,
      807
      808 substance2: 'AMPRENAVIR',
      809
      810 substance3: 'ALPRAZOLAM',
      811
      812 T123: 13.00000,
      813
      814 Q03: 0.70000,
      815
      816 Ki_2_1_3A4/5: 0.05561, // error here !!!
      817
      818 listKi: 'Ki_2_1_3A4/5;'
      819
      820 };
      821
      822 var version = '1.5.0';
      823
      824 deployJava.runA pplet (attributes, parameters, version);
      825 </script>
      >
      >
      >
      >

      Comment

      • 1 connu

        #4
        Re: missing : after property id error

        Thanks Jorge, you are right, I fix it with quotes.

        Pierre

        "Jorge" <jorge@jorgecha morro.coma écrit dans le message de news:
        5b71fb48-e3ef-4b23-8d3b-09dc45997257...l egroups.com...
        On Jun 3, 11:23 am, "1 connu" <incon...@bluew in.chwrote:
        Hi,
        >
        The parameters of my applet are generated according to user's choices. I
        have a case with error "missing : after property id" on line 816.
        >
        816 Ki_2_1_3A4/5: 0.05561, // error here !!!
        "Ki_2_1_3A4/5" is not a valid name : the problem is the slash "/".

        --Jorge.


        Comment

        • Jorge

          #5
          Re: missing : after property id error

          On Jun 3, 11:37 am, "1 connu" <incon...@bluew in.chwrote:
          Thanks Jorge, you are right, I fix it with quotes.
          >
          Hmm, thank you Pierre, I never thought that a property's name could be
          "~anyText" :

          <html><head>
          <script>
          window.onload= function () {
          var o= {
          './=88Ki_2_1_3A4/5': 0,
          '/=88Ki_2_1_3A4/5': 1,
          '=88Ki_2_1_3A4/5': 2,
          '88Ki_2_1_3A4/5': 3,
          '{Ki_2_1_3A4/5': 4,
          '[i_2_1_3A4/5': 5,
          '\\2_1_3A4/5': 6
          };
          for (property in o) { alert(property+ ": "+o[property]) }
          };
          </script></head><body></body></html>

          --Jorge.

          Comment

          • Thomas 'PointedEars' Lahn

            #6
            Re: missing : after property id error

            Jorge wrote:
            On Jun 3, 11:37 am, "1 connu" <incon...@bluew in.chwrote:
            >Thanks Jorge, you are right, I fix it with quotes.
            >
            Hmm, thank you Pierre, I never thought that a property's name could be
            "~anyText" :
            But subsections 11.1.5 and 11.2.1 of the ECMAScript Specification, Edition 3
            Final (and other sections of previous editions), say so :) (Note that this
            also includes the empty string.)

            This feature of ECMAScript implementations makes Object objects extremely
            useful for the implementation of what is known as a dictionary e.g. in
            Python, and augmented Array objects for the implementation of what is known
            as an associative array e.g. in PHP. As for the former, I remember to have
            posted an example for a customer address book recently:

            <news:48369D30. 9050406@Pointed Ears.de>

            BTW, while searching for it, I found this article that you were interested
            in: <news:483F3F79. 8080605@Pointed Ears.de>. There's at least one other:
            <news:4836A152. 2090609@Pointed Ears.de>


            HTH

            PointedEars
            --
            realism: HTML 4.01 Strict
            evangelism: XHTML 1.0 Strict
            madness: XHTML 1.1 as application/xhtml+xml
            -- Bjoern Hoehrmann

            Comment

            Working...