We recently upgraded to Designer ES. We appear to be having some issues with things vanishing that were there and then simply disappear. Snippets of JS code and bindings in particular. This appears to be random and does not do the same thing every time. I’ll set up a JavaScript and everything is working fine in preview. Then later I’ll test the preview again and get an error. I’ll double check the code only to find that part of the end of it has disappeared ( like .rawValue is simply gone from the end of a line of code ). Is anyone else having these kinds of issues?
Brian Falor
GES Intellikit Developer
GES Exposition Services
7050 Lindell Road
Las Vegas, NV 89118
USA
702.515.5986 Phone
702.515.5953 Fax
bfa...@ges.com | http://www.ges.com
GES Worldwide Network
USA | UK | Canada | UAE
The information contained in this correspondence and in the attachments is confidential and intended for the exclusive use of the individuals named above. Unauthorized reproduction and/or distribution is prohibited.
--
You received this message because you are subscribed to the Google Groups "Adobe LiveCycle Developers" group.
To post to this group, send email to live...@googlegroups.com.
To unsubscribe from this group, send email to livecycle+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/livecycle?hl=en.
I wouldn’t mind at all. Maybe they have heard of something like this and addressed it in an upgrade or something??
Brian Falor
GES Intellikit Developer
GES Exposition Services
7050 Lindell Road
Las Vegas, NV 89118
USA
702.515.5986 Phone
702.515.5953 Fax
bfa...@ges.com | http://www.ges.com
GES Worldwide Network
USA | UK | Canada | UAE
The information contained in this correspondence and in the attachments is confidential and intended for the exclusive use of the individuals named above. Unauthorized reproduction and/or distribution is prohibited.
No problem – we just keep fixing the breaks as they happen. I just discovered that something I had spent several hours on about a week ago now appears to be gone. I’m sure it’s something in the code again and hopefully won’t take too long to repair.
I faced the similar issue a couple of days before. I am using
LiveCycle Designer 8.2
My problem was:
I was writing code something like
if(txtHiddenField.rawValue==NULL || txtHiddenField.rawValue=="")
{
// some code
}
It was working fine with preview. However when i close and open the
form again, I noticed the if part is incomplete and it end up with the
following:
if(txtHiddenField.rawValue==NULL || txtHiddenField.
the code after the dot was missing; this happened for me only when i
was using two expressions in IF condition;
Nith
> For more options, visit this group athttp://groups.google.com/group/livecycle?hl=en.
>
> ---
> Adobe LiveCycle Enterprise Architecture -http://www.adobe.com/products/livecycle/
> My TV Show -http://tv.adobe.com/show/duanes-world/
> My Blog -http://technoracle.blogspot.com/
> My Band -http://22ndcenturyofficial.com/
> Twitter -http://twitter.com/duanechaos
> --
>
> You received this message because you are subscribed to the Google Groups "Adobe LiveCycle Developers" group.
> To post to this group, send email to live...@googlegroups.com.
> To unsubscribe from this group, send email to livecycle+...@googlegroups.com.
> For more options, visit this group athttp://groups.google.com/group/livecycle?hl=en.
>
> --
> You received this message because you are subscribed to the Google Groups "Adobe LiveCycle Developers" group.
> To post to this group, send email to live...@googlegroups.com.
> To unsubscribe from this group, send email to livecycle+...@googlegroups.com.
> For more options, visit this group athttp://groups.google.com/group/livecycle?hl=en.
>
> ---
> Adobe LiveCycle Enterprise Architecture -http://www.adobe.com/products/livecycle/
> My TV Show -http://tv.adobe.com/show/duanes-world/
> My Blog -http://technoracle.blogspot.com/
> My Band -http://22ndcenturyofficial.com/
> Twitter -http://twitter.com/duanechaos
Brian Falor
GES Intellikit Developer
GES Exposition Services
7050 Lindell Road
Las Vegas, NV 89118
USA
GES Worldwide Network
USA | UK | Canada | UAE
The information contained in this correspondence and in the attachments is confidential and intended for the exclusive use of the individuals named above. Unauthorized reproduction and/or distribution is prohibited.
All I can tell you is I believe Nith is right in what he is saying. However, the problem is that it is sporadic and doesn’t seem to be re-creatable on demand. Best I can do is relate it to you with copy of the code, event, etc. next time it happens.
Duane,
Here is an example of code getting chopped off I just found in my project:
if (CatShowDISrates. == 1)
{
this.presence = "visible";
LaborHeader.discount.presence = "visible";
}
else {
this.presence = "hidden";
LaborHeader.discount.presence = "hidden";
}
This was:
if (CatShowDISrates.rawValue == 1)
{
this.presence = "visible";
LaborHeader.discount.presence = "visible";
}
else {
this.presence = "hidden";
LaborHeader.discount.presence = "hidden";
}
I know it’s only a little thing, but it’s getting to be a somewhat semi-regular thing and kind of disconcerting when everything is working as it should and suddenly you get a syntax error and have to go back and troubleshoot to find and fix it. It’s not like it’s really a big deal or anything as I always keep my JS debugger on in Reader so it always finds the problem when I preview the document and lets me know where to look to find the issue. I was just wondering if there were others running into this problem and if there may be an update available that addresses it.
I don’t believe it is non-production version. It’s version 8.2. I don’t see anything that indicates non-production version. Our IT dept. would have installed it. Could you advise how we might find the proper update to fix this bug so I can pass that info along to our IT dept.?
Much appreciated. Thanks for your help.