Blocking two javascripts (conflicts)

I have been working with JavaScript and ORACLE portal, recentlly with add a new javascript that is a secuencial slide images, in the same page where I have a random images script . The new script block the random image script, The workaround that I done only divide the scripts in:
secuencial.html
secuencial.js
random.html
random.js
But the result is the same the codes are the next:
The integrated secuencial slide show code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<SCRIPT language ="javascript">
<!--
var slideurl=new Array()
var slidecomment=new Array()
var slidelink=new Array()
var slidetarget=new Array()
// EDIT-ZONE STARTS HERE
// Set the URLs of your slides (images)
slideurl[0]="www.domine.com/pls/portal/docs/1/930320.GIF" //Bolsa de Trabajo
slideurl[1]="www.domine.com/pls/portal/docs/1/916554.GIF" //Becas
slideurl[2]="www.domine.com/pls/portal/docs/PAGE/SWF/propedeutico/curso.gif" //Curso Propedéutico
slideurl[3]="http://www.unitec.mx/pls/portal/docs/1/929747.GIF" //FAQ
// Add a link for each slide
// If you don't want to link a slide type "#" instead (see middle-sample below)
slidelink[0]=" http://www.domine.com/portal/page?_pageid=537,1,537_7141752&_dad=portal&_schema=PORTAL"
slidelink[1]="http://www.domine.com/portal/page?_pageid=537,905860&_dad=portal&_schema=PORTAL"
slidelink[2]="http://www.domine.com/pls/portal/docs/PAGE/SWF/propedeutico/introduccion.swf"
slidelink[3]="http://www.domine.com/portal/page?_pageid=669,1&_dad=portal&_schema=PORTAL"
// Add a target for each link
// Allowed values are: "_blank", "_top", "_parent", "_self" or the name of a frame
slidetarget[0]="_blank"
slidetarget[1]="_blank"
slidetarget[2]="_blank"
slidetarget[2]="_blank"
// Add a comment for each slide
slidecomment[0]="Bolsa de Trabajo"
slidecomment[1]="Becas"
slidecomment[2]="Cursos Propedeúticos"
slidecomment[3]="Preguntas Frecuentes"
// Set the font for the comments
var slidefont="Verdana"
// Set the fontcolor for the comments
var slidefontcolor="#666633"
// Set the fontsize for the comments (HTML-values ranging form 1 - 6)
var slidefontsize=1
// Set the width of the pictures (pixels)
var slidewidth=210
// Set the height of the pictures (pixels)
var slideheight=71
// Set the pause between the pictures (seconds)
var pause=4
// EDIT-ZONE ENDS HERE
var preloadedimages=new Array()
for (i=0;i<slideurl.length;i++){
preloadedimages=new Image()
preloadedimages[i].src=slideurl[i]
var ns4=document.layers?1:0
var ns6=document.getElementById&&!document.all?1:0
var ie=document.all?1:0
var imgpreload=new Array()
for (i=0;i<=slideurl.length-1;i++) {
imgpreload[i]=new Image()
imgpreload[i].src=slideurl[i]
var pos_left=0
var pos_top=0
var speed=20
var step=10
var i_loop=0
var i_image1=0
var i_image2=1
var i_space=""
var all_space=""
var max_space=20
var content=""
var i_slide=0
pause*=1000
function stretchimage() {
if (i_loop<=slidewidth) {
if (ie) {
imgcontainer1.innerHTML="<a href='"+slidelink[i_image1]+"' target='"+slidetarget[i_image1]+"'><img width='"+i_loop+"' height='"+slideheight+"' src='"+slideurl[i_image1]+"' border='0'></a>"
document.all.imgcontainer2.style.posLeft=document.all.imgcontainer1.style.posLeft+i_loop
imgcontainer2.innerHTML="<a href='"+slidelink[i_image2]+"' target='"+slidetarget[i_image2]+"'><img width='"+(slidewidth-i_loop)+"' height='"+slideheight+"' src='"+slideurl[i_image2]+"' border='0'></a>"
if (ns6) {
document.getElementById('imgcontainer1').innerHTML="<a href='"+slidelink[i_image1]+"' target='"+slidetarget[i_image1]+"'><img width='"+i_loop+"' height='"+slideheight+"' src='"+slideurl[i_image1]+"' border='0'></a>"
document.getElementById('imgcontainer2').style.left=parseInt(document.getElementById('imgcontainer1').style.left)+i_loop
document.getElementById('imgcontainer2').innerHTML="<a href='"+slidelink[i_image2]+"' target='"+slidetarget[i_image2]+"'><img width='"+(slidewidth-i_loop)+"' height='"+slideheight+"' src='"+slideurl[i_image2]+"' border='0'></a>"
i_loop=i_loop+step
var timer=setTimeout("stretchimage()",speed)
else {
clearTimeout(timer)
var imgcontent="<a href='"+slidelink[i_image1]+"' target='"+slidetarget[i_image1]+"'><img width='"+i_loop+"' height='"+slideheight+"' src='"+slideurl[i_image1]+"' border='0'></a><br><font face='"+slidefont+"' size="+slidefontsize+" color='"+slidefontcolor+"'>"+slidecomment[i_image1]+"</font>"
if (ie) {
imgcontainer1.innerHTML=imgcontent
document.all.imgcontainer2.style.posLeft=document.all.imgcontainer1.style.posLeft+i_loop
imgcontainer2.innerHTML=""
if (ns6) {
document.getElementById('imgcontainer1').innerHTML=imgcontent
document.getElementById('imgcontainer2').style.left=parseInt(document.getElementById('imgcontainer1').style.left)+i_loop
document.getElementById('imgcontainer2').innerHTML=""
changeimage()
function changeimage() {
i_loop=0
i_image1++
if (i_image1>slideurl.length-1) {i_image1=0}
i_image2=i_image1-1
if (i_image2>slideurl.length-1) {i_image2=0}
if (i_image2<0) {i_image2=slideurl.length-1}
if (ie) {
document.all.imgcontainer2.style.posLeft=document.all.imgcontainer1.style.posLeft
if (ns6) {
document.getElementById('imgcontainer2').style.left=parseInt(document.getElementById('imgcontainer2').style.left)
var timer=setTimeout("stretchimage()",pause)
function simpleslideshow() {
i_slide++
if (i_slide>=slideurl.length) {i_slide=0}
document.slideimage.src=preloadedimages[i_slide].src
simpleslideshowcomment()
var fadetimer=setTimeout("simpleslideshow()",pause)
function simpleslideshowcomment() {
if (i_space>=0){
all_space=""
content=""
for (i=0;i<i_space;i++) {
all_space+=" "
for (i=0;i<slidecomment[i_slide].length;i++) {
var thisletter=slidecomment[i_slide].substring(i,i+1)
thisletter=thisletter+all_space
content+=thisletter
window.status=content
i_space--
var fadetimer=setTimeout("simpleslideshowcomment()",20)
else {
clearTimeout(fadetimer)
i_space=max_space
function simpleslideshowjump() {
if (slidetarget[i_slide]=="_self") {
document.location.href=slidelink[i_slide]
else if (slidetarget[i_slide]=="_blank") {
codepopup=window.open(slidelink[i_slide], "code", "status=yes,location=yes,toolbar=yes,menubar=yes,resizable=yes,scrollbars=yes,width=780,height=580,top=10,left=10");
else if (slidetarget[i_slide]=="_top") {
top.location.href=slidelink[i_slide]
else if (slidetarget[i_slide]=="_parent") {
parent.location.href=slidelink[i_slide]
else {
var jumpto=eval("parent."+slidetarget[i_slide])
jumpto.location.href=slidelink[i_slide]
if (ie || ns6) {
var slideh=slideheight+30
document.write("<div style=\"position:relative;width:"+slidewidth+"px;height:"+slideh+"px;overflow:hidden\">")
document.write("<div id=\"imgcontainer1\" style=\"position:absolute;width:"+slidewidth+"px;height:"+slideh+"px;top:0px;left:0px\"><img src=\""+slideurl[0]+"\"></div>")
document.write("<div id=\"imgcontainer2\" style=\"position:absolute;width:"+slidewidth+"px;height:"+slideh+"px;top:0px;left:0px\"><img src=\""+slideurl[1]+"\"></div>")
document.write("</div>")
window.onload=stretchimage
else {
document.write("<a href=\"javascript:simpleslideshowjump()\"><img name=\"slideimage\" src=\""+slideurl[0]+"\" border=0></a>")
window.onload=simpleslideshow
-->
</SCRIPT>
</head>
<body>
</body>
</html>
The integrated Random images code is the next
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<HEAD>
<TITLE>Exalumnos </TITLE>
<SCRIPT LANGUAGE="JavaScript" >
<!--
var interval = 2.5; // delay entre las imagenes (en segundos)
var random_display = 1; // 0 = no, 1 = yes
interval *= 1000;
var image_index = 0;
image_list = new Array();
image_list[image_index++] = new imageItem("http://www.domine.com/pls/portal/docs/PAGE/SWF/BANNERS/EXALUMNOS/01.JPG");
image_list[image_index++] = new imageItem("http://www.domine.com/pls/portal/docs/PAGE/SWF/BANNERS/EXALUMNOS/02.JPG");
image_list[image_index++] = new imageItem("http://www.domine.com/pls/portal/docs/PAGE/SWF/BANNERS/EXALUMNOS/03.JPG");
image_list[image_index++] = new imageItem("http://www.domine.com/pls/portal/docs/PAGE/SWF/BANNERS/EXALUMNOS/04.JPG");
image_list[image_index++] = new imageItem("http:/www.domine.com/pls/portal/docs/PAGE/SWF/BANNERS/EXALUMNOS/05.JPG");
image_list[image_index++] = new imageItem("http:/www.domine.com/pls/portal/docs/PAGE/SWF/BANNERS/EXALUMNOS/06.JPG");
image_list[image_index++] = new imageItem("http://www.domine.com/pls/portal/docs/PAGE/SWF/BANNERS/EXALUMNOS/07.JPG");
image_list[image_index++] = new imageItem("http://www.domine.com/pls/portal/docs/PAGE/SWF/BANNERS/EXALUMNOS/08.JPG");
var number_of_image = image_list.length;
function imageItem(image_location) {
this.image_item = new Image();
this.image_item.src = image_location;
function get_ImageItemLocation(imageObj) {
return(imageObj.image_item.src)
function generate(x, y) {
var range = y - x + 1;
return Math.floor(Math.random() * range) + x;
function getNextImage() {
if (random_display) {
image_index = generate(0, number_of_image-1);
else {
image_index = (image_index+1) % number_of_image;
var new_image = get_ImageItemLocation(image_list[image_index]);
return(new_image);
function rotateImage(place) {
var new_image = getNextImage();
document[place].src = new_image;
var recur_call = "rotateImage('"+place+"')";
setTimeout(recur_call, interval);
-->
</script>
</HEAD>
<BODY OnLoad="rotateImage('rImage')">
<img name="rImage" src="http://www.domine.com/pls/portal/docs/PAGE/SWF/BANNERS/EXALUMNOS/00.JPG" width=250 height=350>
<title>Exalumnos</title>
</body>
</html>
Some one have information about this conflict?

Hello Faisal,
It may not be referred as wrong practice. At the same time itu2019s really difficult to predict the exact logical reasoning behind this.
I think, if you notice rejection at incoming stage u201CReturn Deliveryu201D is the field that SAP suggest to utilize and if you notice the same after UD it should be through quality notification. But there is no sound base for this statement. Letu2019s wait for the opinions of experts.
1.     While carrying out incoming inspection when I notice any non conformity and want to send back the material to vendor, I would  utilize the field u201CReturn Deliveryu201D in QA11 which in turn executes 122 movement in background.
2.     But when I am not sure that immediately it should be sent back or not, I would follow the path you mentioned. Posting to block stock through QA11. Later through MIGO return delivery can be carried out  with 122 movement by opting stock type as block stock.
3.     Generally later case is more popular may be because of 2 reasons.
a.     No direct involvement of QA dept for stock reducing movement.
b.     Reduces the chances for physical and system stock mismatch. (When you carry out 122 through QA11, system stock reduces immediately; but physically it gets moved out may be after a week or two depending upon logistic arrangement for multiple material codes)
Regards,
Anand Rao

Similar Messages

  • Dealing with JavaScript conflicts [was: javascript]

    Is there something in Dreamweaver to fix Javascript conflicts? I got two scripts that are conflicting and won't work unless I diable one. So is there anything in dreamweaver to fix this?
    [Subject line edited by moderator for clarity]

    Assuming that both use the same framework (jQuery?), you should be able to merge them like this:
    $(document).ready(function(){
      $("#ajax-contact-form").submit(function(){
         var str = $(this).serialize();
         $.ajax({
         type: "POST",
         url: "contact.php",
         data: str,
         success: function(msg){
           $("#note").ajaxComplete(function(event, request, settings){
              if(msg == 'OK') // Message Sent? Show the 'Thank You' message and hide the form
                result = '<div class="notification_ok">Your message has been sent. Thank you!</div>';
                $("#fields").hide();
              else
                result = msg;
              $(this).html(result);
         return false;
      $('#slider').s3Slider({
         timeOut: 3000
      $('#slider1').s3Slider({
         timeOut: 4000
      $('#slider2').s3Slider({
         timeOut: 5000

  • I have two javascripts in one (index)page, but they don't work

    Hello,
    I' ve two javascripts (one for a warn of my pics and one for a "nedstat"-counter). Before, with one script (of both) the scripts are working. I have found on the internet an example tutorial with <body onload="dothat();dothis()", but how do I write this tutorial (or an other solution) in my html (I'm working with Star/SunOffice 5.2)?

    Click on the link below:
    http://forums.internet.com/WebX?[email protected]^[email protected]
    and click Add Discussion to describe what you need (if the scripts are not too long, you might want to cut-n-paste them; otherwise, a link to the page would be helpful).
    V.V.

  • I accidentally blocked a javascript from a website and have no clue

    I accidentally blocked a javascript from a website and have no clue how to unblock it.
    "Permission for applet refused
    Please accept the permissions dialog to allow
    the applet to continue the loading process"
    I can't figure out at all what I'm supposed to do.
    Mac OS X 10.6.4
    Safari 5.0.2

    Hi,
    It is showing that Javascript is turned on that screen (Preferences -> Security). It only appears to be turned off, or denied, for a specific website. To be exact, ONLY the single player on-line for MineCraft at http://www.minecraft.net/play.jsp. All other javascripts on all other pages for that website and everywhere else runs. Just not on that page. I accidentally told it to deny on that page. I can't figure out how to undo it.
    Message was edited by: OlsonBW

  • Stock blocking two times

    Dears
    Pls see my scenario and advice me how to procees
    While RR i found that my material was rejected, so during UD i put the material in block stock and same time i create a automatic notification via defect recording and save the notification and finally UD was given rejected
    No i want to send back this material to vendor
    SO in QM02 t code i call the notification created before and i want to create a return delivery from notification so i need to put again this material in block stock via action box to make enabled return delviery
    Why system make us to block two time for the same matrial
    pls give your valuable idia on this...or wether i am following any wrong methde
    Faisal

    Hello Faisal,
    It may not be referred as wrong practice. At the same time itu2019s really difficult to predict the exact logical reasoning behind this.
    I think, if you notice rejection at incoming stage u201CReturn Deliveryu201D is the field that SAP suggest to utilize and if you notice the same after UD it should be through quality notification. But there is no sound base for this statement. Letu2019s wait for the opinions of experts.
    1.     While carrying out incoming inspection when I notice any non conformity and want to send back the material to vendor, I would  utilize the field u201CReturn Deliveryu201D in QA11 which in turn executes 122 movement in background.
    2.     But when I am not sure that immediately it should be sent back or not, I would follow the path you mentioned. Posting to block stock through QA11. Later through MIGO return delivery can be carried out  with 122 movement by opting stock type as block stock.
    3.     Generally later case is more popular may be because of 2 reasons.
    a.     No direct involvement of QA dept for stock reducing movement.
    b.     Reduces the chances for physical and system stock mismatch. (When you carry out 122 through QA11, system stock reduces immediately; but physically it gets moved out may be after a week or two depending upon logistic arrangement for multiple material codes)
    Regards,
    Anand Rao

  • Javascript conflicts in Adobe Edge

    Has anyone had any issues with javascript conflicts when using Adobe Edge?
    Edge works great until we upload it into our page, at which point it stops working in Safari and Chrome. It's apparently conflicting with a chat function that we've built into our site with some software called "Workface".
    Below is the actual workface code. Any ideas or workarounds? Thanks! -Mark
            <!-- WORKFACE -->
    <script type="text/javascript">
    window.onload = (function(d,w){
    s=d.createElement('script'); s.type='text/javascript';
    (d.body || d.head).appendChild(s);
    s.src= (w.location.protocol=='https:'?'https:':'http:')+'//workface.com/api_1.php/workface-inpag e-listing?companyId=3394f77c6dcefba4d7875e2ab1d1d1c0';
    })(document,window);
    </script>

    Did you use the Library > Video Panel to import the those three video types? If so then the source directory should be be 'media/.....'
    The method you mention is 'old' and the latest Edge Animate handles Audio/ Video natively now, and you do not need to use the above. See here - http://layersmagazine.com/working-with-video-in-edge-animate.html
    Darrell

  • Two JavaScript widgets won't work on the same page [was: Not the first time]

    I ran into this a few months back and gave up on it. I have a page that has several javascripts running on it. They are:
    vnu_datestamp.js
    a flashing neon text script (inline)
    DW's own rollover image (MM_swapimgRestore) script (also inline)
    jquery1.2.2_pack.js
    overlapviewer.js
    lightbox.js (which also relies on scriptaculous.js, prototype.js and an "effects.js" to run)
    I know that's a "garbage pail" of javascripts to all be on the same page. Frankly I'm surprised that they don't all give me problems. But there is one.
    The lightbox and overlap viewer just will not play together.
    Depending on which one I list first in the header, the other one quits. Whichever one I lose goes from the image display effect to acting like a straight hyperlink to the designated image.
    It isn't a huge deal, but I'd like to be able to have the two of these on the same page and working. I have them running alone on other pages and can link to them, but it sort of defeats the purpose of making a web page to show the variety of things I can do for someone who whats a website built, if one or more of the things won't work.
    [Subject line edited by moderator for clarity]

    Please don't use cryptic subject lines for posts. The value of a forum is that other people might be searching for the answer to a similar problem. Meaningless subject lines prevent others from finding useful replies. They also discourage others who might be able to provide help more quickly if they knew what you're asking about.
    I've had a quick look at your page. Quite honestly, I find all the flashing rather nauseating, but if that's the way you want to design a page, it's your choice...
    The conflict is caused by the fact that overlapview.js seems to rely on jQuery, while lightbox.js relies on Prototype and script.aculo.us. Both jQuery and Prototype use $() as a shortcut, so you cannot mix the two libraries on the same page without taking special measures to prevent the conflict. In jQuery, you do this by loading all the jQuery, Prototype, and script.aculo.us libraries first, and then using the following script:
    jQuery.noConflict();
    Then load overlapview.js, replacing all instances of $ with jQuery. So, for example, the following line:
    $(t).fadeTo('normal', overlapviewer.endopacity, function(){
    needs to be rewritten like this:
    jQuery(t).fadeTo('normal', overlapviewer.endopacity, function(){

  • Javascript block through javascript.enabled false not working as expected in newer versions, any actual way?

    Since a few versions, around 24.0 or earlier, when you toggle javascript.enabled from true to false to block javascript, doesn't work after load a page.
    Further details:
    1.- load a page with javascript enabled
    2.- toggle javascript preference to block javascript (javascript.enabled from true to false)
    3.- if you interact with javascript elements = they still work
    This wasn't this way in earlier versions.
    You can check in the following page. You'll see that the only way to actually block javascript execution is to load the page with the preference javascript.enabled set to false (A.K.A. javascript blocked):
    http://www.geocities.ws/jothache/event_listener.html
    Note: to easy change javascript preferences, for those don't want to play with about:config you can use addons like QuickJava:
    https://addons.mozilla.org/en-US/firefox/addon/quickjava/
    I find that how it works now, in the latest versions, it is a VERY HUGE SECURITY ISSUE as javascript is never actually blocked when the preference is toggled and AJAX (httpXMLrequest through javascript) still works so the possibilities of lost of privacy inreases, as for example, mouse tracking and send it to the server, not only as the example scripts I posted above.
    The question is, is there anyway to really block javascript in the latests versions or should I report this as a bug?
    Regards.

    Hi guigs2,
    if there is no problem in open the bug ticket being a simple user I'll report by myself (if I haven't misunderstood you). (Confirm this and I'll do myself).
    About the AJAX problem, here we have a sample test that works after toggle the preference:
    http://www.w3schools.com/xml/xml_http.asp
    I know about noscript and I don't like it. I prefer to do manually (those measures and more). What bothered me is that even toggle the preference, what in the past did the job of stopping the execution of scripts, now doesn't. In about version 24 it was only happening to event listeners not being blocked (used nowadays for dynamic events assignments). Now is with every javascript code.
    About the tracking methods, I'm aware of HTTP tracking without any need of javascript. Even a simple "knock knock" on any kind of server leaves a trace.
    I was just pointing that this preference stopping doing its job (stopping scripts executions) has the worst sceneario in a security way with XMLHttpRequest calls.
    But one of the things that bothers me too, and it is not related to tracking, is that, in humble machines as mine, some javascript codes make drop whole performance and the preference toggle now does nothing, so the script keeps running without being able of doing anything and sometimes you don't have the option to load a page without javascript because you need some feature of that page that requires javascript what becomes "all or nothing".
    Regards.

  • Can these two attributes conflict each other?

    A Data Guard question: Can MAX_FAILURE and NET_TIMEOUT attributes conflict each other if we configure them simultaneously on a same LOG_ARCHIVE_DEST destination?
    Is there any overlap to them?

    Is it easier to ask someone else to look up the
    answer for you than to look it up yourself?
    http://www.oracle.com/pls/db111/homepage
    I encourage you to read it for yourself. You might
    just learn something else of value.
    Read the Doc - A Poem
    I need a guru who can do
      In one statement - a line or two,
    To write for me the fix i need
      to make me a hero, o yes indeed.
    I hack and I paste, can't show my true code
      But using your powers I'm sure you will know
    What is my issue, time is flying -  Tick-Tock...
      What do you mean, just go read the doc? RTFM - right? ;}

  • Zimbra Security Question:  Allow / Block embedded javascript or tags?

    Technical requirement: Ability to send in plain text and rich text and HTML (limited HTML, no javascripting or harmful tags)
    Can javascript or tags be embedded in an email through the Zimbra interface?
    Also, Zimbra has developed ALE (AJAX Linking and Embedding), a technology that allows users to embed applets into e-mail. For example, users can share a live spreadsheet in e-mail, rather than sending copies back and forth. Are applets a potential security risk? Can they be blocked?
    Thanks for your time.

    Hi guigs2,
    if there is no problem in open the bug ticket being a simple user I'll report by myself (if I haven't misunderstood you). (Confirm this and I'll do myself).
    About the AJAX problem, here we have a sample test that works after toggle the preference:
    http://www.w3schools.com/xml/xml_http.asp
    I know about noscript and I don't like it. I prefer to do manually (those measures and more). What bothered me is that even toggle the preference, what in the past did the job of stopping the execution of scripts, now doesn't. In about version 24 it was only happening to event listeners not being blocked (used nowadays for dynamic events assignments). Now is with every javascript code.
    About the tracking methods, I'm aware of HTTP tracking without any need of javascript. Even a simple "knock knock" on any kind of server leaves a trace.
    I was just pointing that this preference stopping doing its job (stopping scripts executions) has the worst sceneario in a security way with XMLHttpRequest calls.
    But one of the things that bothers me too, and it is not related to tracking, is that, in humble machines as mine, some javascript codes make drop whole performance and the preference toggle now does nothing, so the script keeps running without being able of doing anything and sometimes you don't have the option to load a page without javascript because you need some feature of that page that requires javascript what becomes "all or nothing".
    Regards.

  • JHeadstart inputtext blocks my javascript

    I've put some javascript in a page wich works just fine in firefox (see thread 'Move to the next inputtext with the ENTER key instead of TAB' in Jdeveloper forum). The problem is that it doesn't work in IE.
    The folowing code is the problem (without it the script works):
    <input type="hidden" name="event"></input>
    This is Jheadstart generated and I don't know what it's used for.
    What can I do about this?

    This is from the bottom part of the page. The inputtext gets rendered form here somewhere I think. In the HTML it's also at the bottom.
      <af:column  gridVisible="false"> 
        <afh:script text="setTableRowCount('dataForm','AanbiedingsRegelsTable' ,#{status.index+1-(bindings.AanbiedingsRegelsTable.rangeStart==-1 ? 0 : bindings.AanbiedingsRegelsTable.rangeStart)});"/>
        <af:inputHidden id="IsNewRow" value="#{AanbiedingsRegelsCollectionModel.newRow}"/>
      </af:column>
    </af:table>
    <!-- DEBUG:BEGIN:TABLE_GROUP_BUTTONS : default/pageComponent/tableGroupButtons.vm, nesting level: 6 -->
    <af:panelButtonBar id="AanbiedingsRegelsTableGroupButtons">
    <!-- DEBUG:BEGIN:NEW_BUTTON_NOT_IN_FORM_LAYOUT : default/button/newButtonNotInFormLayout.vm, nesting level: 7 -->
    <!-- DEBUG:END:NEW_BUTTON_NOT_IN_FORM_LAYOUT : default/button/newButtonNotInFormLayout.vm, nesting level: 7-->
    </af:panelButtonBar>
    <!-- DEBUG:END:TABLE_GROUP_BUTTONS : default/pageComponent/tableGroupButtons.vm, nesting level: 6-->
    <af:objectSpacer height="10" id="AanbiedingsRegelsTableSpacer"/>
    <!-- DEBUG:BEGIN:DETAIL_GROUPS : default/pageComponent/detailGroups.vm, nesting level: 6 -->
    <!-- DEBUG:END:DETAIL_GROUPS : default/pageComponent/detailGroups.vm, nesting level: 6-->
    </af:panelGroup>
    <!-- DEBUG:END:TABLE_GROUP : nbd/pageComponent/tableGroup.vm, nesting level: 5-->
          </af:panelHeader>
            </af:panelGroup>
      <!-- DEBUG:END:DETAIL_GROUPS : default/pageComponent/detailGroups.vm, nesting level: 4-->
    </af:panelGroup>
    <!-- DEBUG:END:FORM_GROUP : default/pageComponent/formGroup.vm, nesting level: 3-->
    <!-- DEBUG:END:FORM_PAGE_CONTENT : default/page/formPageContent.vm, nesting level: 2-->
              </af:panelPage>
            </af:form>
          </afh:body>
        </afh:html>
      </f:view>
    </jsp:root>

  • Problem with loading two Javascript scripts

    I loaded a dreamweaver widget called "twitter client" to pull user info from twitter. Problem is that it will not show up in the browser. I can get it to load and show, but only after I comment out the footer information. The footer is pulled externaly and calls on a Javascript hosted on another server. Here is the code showing the problem. I also loaded it to http://www.tempthirteen.com/template/. I am really at a loss as to what is causing it.
    Thanks so much!!
    Nate

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en" dir="ltr">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link rel="shortcut icon" href="images/struct/favicon.ico" type="image/x-icon" />
    <title>Your Site Title Here</title>
    <meta name="robots" content="all" />
    <meta name="Copyright" content="(c) Duke University" />
    <meta name="description" content="This is where you can put a description of your organization or your website." />
    <meta name="keywords" content="duke university, duke" />
    <meta content="en-US" name="language"/>
    <link type="text/css" rel="stylesheet" media="all" href="css/screen.css" />
    <link type="text/css" rel="stylesheet" media="print" href="css/print.css" />
    <link rel="stylesheet" href="http://brandbar.oit.duke.edu/header/css/screen-globalHeader-nologo.css" type="text/css" media="Screen" />
    <link rel="stylesheet" href="http://brandbar.oit.duke.edu/footer/footer.css" type="text/css" media="screen" />
    <!--[if lte IE 6]><link rel="stylesheet" href="css/screen-ie6.css" type="text/css" />
    <link rel="stylesheet" href="http://brandbar.oit.duke.edu/footer/footer-ie6.css" type="text/css" /><![endif]-->
    <script src="scripts/jquery.js" type="text/javascript"></script>
    <script src="scripts/twitter_search.js" type="text/javascript"></script>
    <style type="text/css">
    /* BeginOAWidget_Instance_2125523: #twitter */
            #twitter { height: 258px; width: 292px}
    /* EndOAWidget_Instance_2125523 */
    </style>
    <script type="text/xml">
    <!--
    <oa:widgets>
      <oa:widget wid="2125523" binding="#twitter" />
    </oa:widgets>
    -->
    </script>
    </head>
    <body class="shadowBackground">
    <script type="text/javascript" src="http://brandbar.oit.duke.edu/header/bar.html"></script> 
    <div id="pagewrapper" class="home">
        <div id="header">
            <div id="logo">
                <p><a href="http://www.duke.edu" tabindex="1" accesskey="1"><img src="images/struct/logo-print.png" width="141" height="64" alt="Duke University" /></a></p>
                <h1><a href="index.html" rel="home" tabindex="2" accesskey="2">Your Site Title Here</a></h1>
            </div>
            <form action="http://www.duke.edu/search/" method="get" id="search-inBanner" name="duke_search">
            <label for="search-field-banner"><input class="text" id="search-field-banner" name="q" value="Search" tabindex="3" accesskey="3" /></label>
            <button id="search-go-banner" type="submit" tabindex="4" accesskey="4">Go</button>
              </form>
        </div>   
        <div id="wrapper">
        <div id="nav">
            <ul>
                <li><a href="landing.html" tabindex="5" accesskey="5">Nav Link One Here</a></li>
                <li><a href="landing.html" tabindex="6" accesskey="6">Nav Item 2</a></li>
                <li><a href="landing.html" tabindex="7" accesskey="7">Nav 3</a></li>
                <li><a href="landing.html" tabindex="8" accesskey="8">Nav Link Four Goes Here</a></li>
                <li><a href="landing.html" class="last" tabindex="9" accesskey="9">Nav Link 5</a></li>
            </ul>   
        </div>   
        <div id="content">
            <div class="col">
              <div id="twitter"></div>
                <script type="text/javascript">
    // BeginOAWidget_Instance_2125523: #twitter
    $(document).ready(function() {
        $('#twitter').twitterSearch({
            term: 'from%3Adukenews',
            title: '',
            titleLink: 'http://www.twitter.com/dukenews',
            bird: false,                    // true or false (show or hide twitter bird image)
            birdSrc: '/images/tweet.gif',         // twitter bird image
            birdLink: 'http://twitter.com/dreamweaver',        // url that twitter bird image should like to
            avatar: true,                // true or false (show or hide twitter profile images)
            anchors: true,            // true or false (enable embedded links in tweets)
            animOutSpeed: 500,    // speed of animation for top tweet when removed
            animInSpeed: 500,    // speed of scroll animation for moving tweets up
            pause: true,                // true or false (pause on hover)
            time: true,                    // true or false (show or hide the time that the tweet was sent)
            timeout: 4000,            // delay betweet tweet scroll
            css: {
                a:     { textDecoration: 'none', color: '#3B5998', fontWeight: 'normal'},
                container: { backgroundColor: '#eee' },
                frame: { border: '10px solid #33ccff', borderRadius: '10px', '-moz-border-radius': '10px', '-webkit-border-radius': '10px' },
                img:   { width: '30px', height: '30px' },
                loading: { color: '#888' },
                text:  {fontWeight: 'normal', fontSize: '12px', color:'#000'},
                time:  { fontSize: '12px', color: '#CCC' },
                title: { backgroundColor: '#33ccff', padding: '0px 0 0px 0', textAlign: 'center', fontWeight: 'bold', fontSize: '14px'},
                titleLink: { textDecoration: 'none', color: '#3B5998' },
                user:  { fontSize: '12px'},
                fail:  { background: '#6cc5c3 url(/images/failwhale.png) no-repeat 50% 50%'}
    // EndOAWidget_Instance_2125523
                </script>
    <h2> </h2>
                <h2>Header Here</h2>
                <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas commodo mauris ut erat fermentum ultrices. In mauris est, ullamcorper eu molestie eu, semper ut sapien. In eu auctor quam. Etiam gravida lorem sed dolor iaculis vestibulum.</p>
            </div>
            <div class="col">
                <img src="images/placeholder-2.jpg" alt="Placeholder 2" height="214" width="304"  />
                <h2>Header Here</h2>
                <ul>
                    <li><a href="http://www.duke.edu">Link Sample 1</a></li>
                    <li><a href="http://www.duke.edu">Link Sample 2</a></li>
                    <li><a href="http://www.duke.edu">Link Sample 3</a></li>
                    <li><a href="http://www.duke.edu">Link Sample 4</a></li>
                </ul>
            </div>
            <div class="col last">
                <img src="images/placeholder-3.jpg" alt="Placeholder 3" height="214" width="305"  />
                <h2>Contact Us</h2>
                <p>Office of Lorem Ipsum<br />
                30000 Allen Drive<br />
                PO Box 9000<br  />
                Durham, NC 27707</p>
                <p><span class="cat">Phone: </span>919-555-1234<br />
                <span class="cat">Fax: </span>919-555-1234<br />
                <span class="cat">Email: </span><a href="mailto:[email protected]">[email protected]</a></p>
            </div>
        </div>
        </div>
    </div>
    <script src="http://brandbar.oit.duke.edu/footer/videos_podcasts_full.php" type="text/javascript"></script>
    <script type="text/javascript"  src="http://brandbar.oit.duke.edu/header/js/jquery.min.js"></script>
    <script type="text/javascript" src="http://brandbar.oit.duke.edu/header/js/globalHeader.js"></script>
    <script type="text/javascript"  src="http://brandbar.oit.duke.edu/footer/js/footer.js" ></script>
    </body>
    </html>

  • Date Navigator Blocked by Javascript

    Hi all,
    I have an app that has an input field associated with a date input. When deployed the input field shows up with the button to bring up the date navigator calendar.  When I click on button I get a JavaScript error saying access denied.  Has anyone seen this behavior with the date navigator?
    Thanks,
    Jonathan

    Hi Armin,
    Thanks for the posting.  I do use the full domain when I specify the domain name for the J2EE engine, but I still get the "access denied" javascript error. The app is running on a backend J2EE hosting the app.
    Thanks,
    Jon
    Message was edited by: Jonathan Richardson

  • Two Accounts conflicting SMTP

    Mail was working fine with my work account and my .mac account, but now it won't let me send mail from either. I get a variety of errors, but the most frustrating is when it tries to send .mac mail through my work server and the pull down menu on the error window doesn't even show .mac server even though I can see it in my preferences.
    Please help.

    Mail Help has some articles devoted to sending problems, e.g. “I can't send email” or “I can't send email because the connection to the server on port 25 timed out”. You may want to take a look at them in case there is something there that applies to you.
    Something that usually works if you’re trying to use an outgoing (SMTP) server different from the one provided by your ISP (and in the case of .Mac in particular) is changing the outgoing server port to 587 instead of 25 in Preferences > Accounts > Account Information > Outgoing Server Settings.

  • Two rows instead of one in the database when form with 2 data blocks.

    Hi All,
    I have created a form having 2 data blocks
    data block one to populate table A
    data block two to populate table B .
    now when i save the data after pressing the save option ....i find 2 records instead of one in the database table A and Table B.
    it should have been just one per table ....can some one suggest pls
    Sunny

    ok : step by step :
    do you have a trigger created named "ON-INSERT" on
    the block?Many thanks for your support....
    I do not have an ON-insert trigger.....
    I will explain my scenerio.....
    I have 2 data blocks one-below the other in the form
    accessing 2 different tables....
    now on the canvas of this form I have added a
    button....and on that button i have written a trigger
    'when-button-pressed' Trigger....
    it takes the data from the various text_items of the
    form and inserts them into their corrosponding
    tables....and I have added 'COMMIT' at the end this
    trigger
    so when I press this button ....the data 2 records
    get inserted into the 2 tables instead of one each..
    TIA
    Sunnythe above form looks something like this.....
    -------------------------------------------------------------------------------------------------------|
    |------------------------------------------------------------------------------------------------------|
    | |
    | ---data_block1------------------------------------------------------ |
    | | | |
    | | some data entry here for emp1 table | |
    | |__________________________________________ | |
    | |
    | |
    | |
    | ---data_block2------------------------------------------------------ |
    | | | |
    | | some data entry here for dept1 table | |
    | |__________________________________________ | |
    | |
    | button1 |
    |-------------------------------------------------------------------------------------------------------

Maybe you are looking for

  • Inner-HTML or Picture-in-Picture on iWeb, anyone?

    Hi; dunno if you've use inner HTML code before (see code for this: <iframe src ="http://servalonline.com/Serval_Online/Video.html" width="100%" height="400"></iframe>) but basically is there anyway I can only select the lower half of the page I am tr

  • "User" did not resond

    So - i, like milions of other iChat users am tired of seeing th "User (my name) did not respond" message. I have read through all the stuff (what to do to my computer - what to do to my network router). is their any new current advice on fixing the p

  • How to force reindexing of rows?

    Hi, I have CONTEXT index with with "user_datastore" generated by procedure. I want to control which records need to be reindexed. The method I use now is: Update a_tabel set text_column = text_column where id in (select that provides list of rows tha

  • How do I get all my songs on my ipod to my computer's itunes?

    I have a new laptop and want to download all my songs from my ipod to my new pc's itunes?  It seems the only sync is itunes to ipod and that will wipe out my songs on my ipod.

  • Does Quark Express need to be installed before other programs?

    I have heard that Quark Express should be installed before other CS Programs should be installed to avoid system conflicts. Is this true or just a rumor. I am setting up a friends G5 and am wondering if I need to do this? Thanks, -Internet Wiz