HighDots Forums  

missing : after property id error

Javascript JavaScript language (comp.lang.javascript)


Discuss missing : after property id error in the Javascript forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
1 connu
 
Posts: n/a

Default missing : after property id error - 06-03-2008 , 04:23 AM






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: 'concentrationapplet.ConcentrationApplet.class',
791 width: 680,
792 height: 450,
793 archive:
'JFreeChart/jfreechart-0.9.21.jar,JFreeChart/jcommon-0.9.6.jar,Concentration.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.runApplet (attributes, parameters, version);
825 </script>





Reply With Quote
  #2  
Old   
Jorge
 
Posts: n/a

Default Re: missing : after property id error - 06-03-2008 , 04:35 AM






On Jun 3, 11:23*am, "1 connu" <incon... (AT) bluewin (DOT) ch> wrote:
Quote:
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.


Reply With Quote
  #3  
Old   
1 connu
 
Posts: n/a

Default Re: missing : after property id error - 06-03-2008 , 04:36 AM



I put quotes and the problem disappears.

'Ki_1_2_3A4/5': 0.05561,


"1 connu" <inconnue (AT) bluewin (DOT) ch> a écrit dans le message de news:
45ce5$48450dab$55da1131$23950 (AT) news (DOT) hispeed.ch...
Quote:
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: 'concentrationapplet.ConcentrationApplet.class',
791 width: 680,
792 height: 450,
793 archive:
'JFreeChart/jfreechart-0.9.21.jar,JFreeChart/jcommon-0.9.6.jar,Concentration.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.runApplet (attributes, parameters, version);
825 </script







Reply With Quote
  #4  
Old   
1 connu
 
Posts: n/a

Default Re: missing : after property id error - 06-03-2008 , 04:37 AM



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

Pierre

"Jorge" <jorge (AT) jorgechamorro (DOT) com> a écrit dans le message de news:
5b71fb48-e3ef-4b23-8d3b-09dc45997257...oglegroups.com...
On Jun 3, 11:23 am, "1 connu" <incon... (AT) bluewin (DOT) ch> wrote:
Quote:
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.




Reply With Quote
  #5  
Old   
Thomas 'PointedEars' Lahn
 
Posts: n/a

Default Re: missing : after property id error - 06-03-2008 , 06:03 AM



Jorge wrote:
Quote:
On Jun 3, 11:37 am, "1 connu" <incon... (AT) bluewin (DOT) ch> wrote:
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 (AT) PointedEars (DOT) de>

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


HTH

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


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.