Error using JQuery

Hi folks,
I am trying to use JQuery in my apex application. I downloaded and installed JQuery library via Shared Components > Static files and associated it with my application.
In my page template, between <head> and </head>, i included the following
*<script src="#APP_IMAGES#jquery-1.3.2.min.js" type="text/javascript"></script>*
and saved the changes.
I created a <div> element on my page and tested using the ff code from Tyler Muths blog
It should turns any div on the page red when you hover over it, then white when you move your mouse out of it.
*$(document).ready(function() {*
*$("div").hover(function() {*
*$(this).css('background-color','#ff0000');*
*function() {*
*$(this).css('background-color','#ffffff');*
I placed the above code in my page HTML Header section but when i ran the page and moved my mouse over the div, nothing happens. FireBug displays an error *"$ is not defined"*
Any clues as to what i may be doing wrong?
Thanks.
Stephen.

I remember having a similar problem with some other jquery function. What I did was to copy the deffinition of the function in the page zero. After that the script would work.
Denes Kubicek
http://deneskubicek.blogspot.com/
http://www.opal-consulting.de/training
http://apex.oracle.com/pls/otn/f?p=31517:1
-------------------------------------------------------------------

Similar Messages

  • JS error using JQuery Columnizer Plugin

    I'm not sure how many of you are familiar with this plugin for JQuery, but Columnizer (http://welcome.totheinter.net/columnizer-jquery-plugin/) is a plugin that allows you to create multi column text from one div. I know that can now be done CSS3, but this script works in IE, which is very important.
    Problem is getting it to work in Edge. I've tried a number of different methods to make it work and I'm enclosing a simple example .zip file on Dropbox I'll share in just a moment.
    Basically, I have a text field on stage with the name 'copy'. So I call columnizer by the following in my compositionReady:
    sym.$('copy').columnize({columns:2});
    Simple, right? Only I get a JS error (Javascript error in event handler! Event Type = element) in console and while the text renders, I don't get my two columns laid out.
    I've tried it on the stage, from a click event, using different ways in my code to access the field, all to no avail. Is there a conflict between Columnizer and Animate? Should be able to accept it.
    Here's my files: https://www.dropbox.com/s/1h0s6hf5djkyvus/columizer.zip
    Any help would greatly be appreciated. 

    Loaded yepnope at little differently:
    yepnope(
        nope:[
             'js/jquery.columnizer.js',
        complete: init
    function init() {
         sym.$('copy').html('<p>This  test  case  is  for  double  spaces.  hopefully  this  will  not  cause  an  infinite  loop.  This  test  case  is  for  double  spaces.  hopefully  this  will  not  cause  an  infinite  loop.  This  test  case  is  for  double  spaces.  hopefully  this  will  not  cause  an  infinite  loop.  This  test  case  is  for  double  spaces.  hopefully  this  will  not  cause  an  infinite  loop.  This  test  case  is  for  double  spaces.  hopefully  this  will  not  cause  an  infinite  loop.  This  test  case  is  for  double  spaces.  hopefully  this  will  not  cause  an  infinite  loop.  This  test  case  is  for  double  spaces.  hopefully  this  will  not  cause  an  infinite  loop.  This  test  case  is  for  double  spaces.  hopefully  this  will  not  cause  an  infinite  loop.  This  test  case  is  for  double  spaces.  hopefully  this  will  not  cause  an  infinite  loop.  This  test  case  is  for  double  spaces.  hopefully  this  will  not  cause  an  infinite  loop.  This  test  case  is  for  double  spaces.  hopefully  this  will  not  cause  an  infinite  loop.  </p>')
            sym.$('copy').columnize();
         sym.$('copy').columnize({ width: 200 });
         sym.$('copy').columnize({ columns: 2 });

  • When i rendering large table from Ajax using jquery that table not Displaying and not throwing any error also. why ? in IE 8,9,10

    Hi,
    when i rendering large HTML table from Ajax using jquery , table not displaying in browser why ? but visible in  chrome and mozilla.

    Hi,
    Post questions about html, css and scripting for website developers to the IE Web Development forum.
    http://social.msdn.microsoft.com/Forums/ie/en-US/home?forum=iewebdevelopment
    Include with your question a link to your website or a mashup that shows the issue.
    If you are using the file: protocol.... MSIE browsers have security restriction for running active content from the file system.
    Regards.
    Questions regarding Internet Explorer 8, 9 and 10 and Internet Explorer 11 for the IT Pro Audience. Topics covered are: Installation, Deployment, Configuration, Security, Group Policy, Management questions. If you are a consumer looking for answers or to
    raise a question, it's highly recommended you head on over to http://answers.microsoft.com/en-us
    Rob^_^

  • Using jquery to upload files

    Hi
    I have uploaded files before but not using jquery but now am trying to use jquery so that my files uploads without page refreshing.
    This is my Jquery code. and below is the html code. Can any one help me with the jquery code so that I can get the data to the php script that process
    the variables.
    JQUERY:
    <script type="text/javascript">
    $(document).ready(function() {
       $("#photoform").submit(function() {
                                var phototitle = $("phototitle").val();
                                var photogenre = $("photogenre").val();
                                var photodesc = $("photodesc").val();
                                var photofield = $("photofield").val();
        $.post("Uploadfix.php", { phototitle: phototitle,
         photogenre: photogenre, photodesc: photodesc, photofield: photofield}, function(data) {
         $("#allresult").html(data);
       return false;
    //-->
    </script>
    PHP CODE:
    $phototitle=addslashes(strip_tags($_POST['phototitle']));
    $photogenre=addslashes(strip_tags($_POST['photogenre']));
    $photodesc=addslashes(strip_tags($_POST['photodesc']));
    $photo=$_FILES["photofield"]["name"];
    $type=$_FILES["photofield"]["type"];
    $size=$_FILES["photofield"]["size"];
    $temp_name=$_FILES["photofield"]["tmp_name"];
    $error=$_FILES["photofield"]["error"];
    echo "$phototitle";
    echo "<br/>";
    echo "$photo";
    echo "<br/>";
    echo "$type";
    echo "<br/>";
    html:
    <form id="photoform" method="post" enctype="multipart/form-data" action=''>
    //id variables:
    </form>
    How can I read in the file from jquery to the php sucessfully. NO SUCESS YET!
    Thanks.

    Hi Gramps
    Thank for the reply. If I use form action like the code below it works but I can not do validation.
    <script type="text/javascript" >
    /* $(document).ready(function() {
                $("#photoform").submit(function(e)         {
                $("#allresult").html('');
                $("#allresult").html('<img src="PHOTOTEST/loader.gif" alt="Uploading...."/>');
                $("#photoform").ajaxForm({
                            target: '#allresult'
            }).submit();
    </script>
    HTML:
    <form id='photoform' enctype='multipart/form-data' method='post' action='process.php'>
    </form>
    PHP:
    $example=$_POST['INPUT'];
    if($example>5)
    echo "input greater than 5 sorry.";
    else
    //process data
    The problem is this is echoed in a new page which is process.php. Instead of on a div on the page that is submitting the form. I know this is
    because of the form action. how can I make the validation appear on a div on same page?
    cheers.

  • How can i use jquery code in ExtendedRenderKitService?

    i'm try to using jquery like this way,but cause js error.
    so,can i use jqeury code in ExtendedRenderKitService? how?
    private String jsFunction() {
    StringBuilder sb = new StringBuilder();
    sb.append("$(document).ready(function(){");
    sb.append("var spans = $('span');");
    sb.append("alert(spans.length);");
    sb.append(" });");
    return sb.toString();
    public void searchTree(ActionEvent actionEvent) {
    favoriteTreeManager.searchTree(searchCriterium);
    FacesContext context = FacesContext.getCurrentInstance();
    ExtendedRenderKitService extRenderKitSrvc =
    Service.getRenderKitService(context, ExtendedRenderKitService.class);
    extRenderKitSrvc.addScript(context,
    jsFunction());
    }

    Hi,
    $('span') is invoked when the page renders if I remember correctly. Since using JavaScript from a managed bean invokes a function, the use of JQuery does not work. You can run a little test. If you get JQuery working from a URL browser typing javascript:... command ... then the same probably works from a managed bean
    Frank

  • Problem in call onpremise web service from o365 using jquery ajax

    I am trying
    to consume an onpremise web  service from the o365 site page using
    jquery ajax and it's giving me following error:<o:p></o:p>
     "Error:
    Operation aborted<o:p></o:p>
    Here is the
    code:<o:p></o:p>
     <o:p></o:p>
    jQuery.support.cors
    = true;<o:p></o:p>
              $.ajax<o:p></o:p>
    ({    <o:p></o:p>
    type: "POST",
                   <o:p></o:p>
     url: 'http://**************/WebService.asmx/CreateFolder',
                 <o:p></o:p>
    data: "{'PartId':'"+partnerid+"'}",
                  <o:p></o:p>
    contentType: "application/jsonp; charset=utf-8",
                  <o:p></o:p>
    dataType: "jsonp",
                 <o:p></o:p>
    username: "*****************",
                  <o:p></o:p>
    password: "******************",<o:p></o:p>
      success:
    function (msg) { $("#divResult").html("Success"); },
                <o:p></o:p>
       error:
    function (xhr, status, error){  console.log(error);
    console.log(status); }
              <o:p></o:p>
    });<o:p></o:p>
    Any
    help would be greatly appreciated.Thanks.<o:p></o:p>

    Where exactly you are trying to create folder
    This will work on both Office 365 and on prem
    http://www.c-sharpcorner.com/UploadFile/0e18a8/create-a-folder-in-document-library-in-sharepoint-2013-using/
    var context = SP.ClientContext.get_current();
    //gets the current context
    var web = context.get_web();
    //gets the web object
    var list = web.get_lists();
    //gets the collection of lists
    var targetList;
    var itemCreation;
    function createFolder() {
        targetList = list.getByTitle("MyDocumentLibrary");
        itemCreation =
    new SP.ListItemCreationInformation();
        itemCreation.set_underlyingObjectType(SP.FileSystemObjectType.folder);
        itemCreation.set_leafName("MyCustomFolder");
        var folderItem = targetList.addItem(itemCreation);
        folderItem.update();
        context.load(folderItem);
        context.executeQueryAsync(onFolderCreationSuccess, onFolderCreationFail);

  • Create Records through OData using Jquery

    Hi All,
    I have created a OData Service in SAP ECC system in format
    http://hostname:portno/sap/opu/odata/sap/Z_PORDER_SRV/PurchaseOrderHeaderCollection
    I am trying to create a record from front end using JQuery.   I am able to retrieve all the records, but creation of records using Method "POST" fails.
    For creating records, using the method "GET", i fetch the token "X-CSRF-Token" and then pass the token to the "POST" method.
    I am getting an Exception "No Handler for Data" error is coming.   I am accessing the OData Service using the datajs framework.
    (datajs-1.1.1.min.js).
    Please help me in resolving this issue.
    Thanks,
    Divya

    Thanks for the reply Jamie.
    Code:
    OData.request({
                   "http://host:port/sap/opu/odata/sap/Z_PORDER_SRV/PurchaseOrderHeaderCollection",     
                    method : "GET",
                    user: Customer_Username, 
                    password: Customer_Password,
                    headers :
                           "X-Requested-With" : "XMLHttpRequest",
                            "Content-Type" : "application/XML",
                           "DataServiceVersion" : "2.0",
                           "X-CSRF-Token" : "Fetch"
              function(data, response)
                            var header_xcsrf_token = response.headers['x-csrf-token'];
                            OData.request(
                                    requestUri :    "http://host:portno/sap/opu/odata/sap/Z_PORDER_SRV/PurchaseOrderHeaderCollection",                     
                                    method : "POST",                 
                                    user: Customer_Username, 
                                    password: Customer_Password, 
                                    headers :
                                           "X-Requested-With" : "XMLHttpRequest",
                                          "Content-Type" : "application/XML",
                                          "DataServiceVersion" : "2.0",                      
                                          "X-CSRF-Token" : header_xcsrf_token
                                  data: 
                                     PONumber:"4500000091",
                                     CompanyCode:"TVSC",
                                     PurchaseDocCategory:"F",
                                     PurchaseDocType:"NB",
                                     PurchaseDocStatus:"9", 
                                     CreatedBy: "", 
                                     VendorAccountNumber:"V1",
                                     PurchaseOrganization:"PO01",
                                     PurchaseOrgGroup:"101",                      
                                     TotalValueAtRelase:"0.00",
                                      POItem: "00010",
                                      Material:"",
                                      MaterialNumber: "000000000000000011",
                                      Plant: "PL01",
                                      MaterialGroup: "01",
                                      TargetQuantity: "0.000",
                                      Quantity: "5.000",
                                      Unit: "ST",
                                      OrderPriceUnit:"ST",
                                      NetPrice: "10.0000",
                                      PriceUnit:1,
                                      GrossValue:"0.0000",
                                      NetValue:"0.0000",
                                      NetWeight:"0.000",
                                      WeightUnit:"",
                                     MaterialType:"",
                                     PurchaseOrderHeaderPONumber:"",
                                     PurchaseOrderHeaderPONumber1:""
                      function(data,response)
                           alert('Success. Created New Record');
                      function(err1)
                          alert('Error in Create Record...'+err1.message);
                     function(err)
                            alert('error....'+err.message);
    Output
    I get an error message "Error in Create Record. "No Handler for Data".
    I tried entering the header  details alone and also by entering the line items. Still the same error is thrown.
    Please Help.
    Thanks,
    Divya

  • Using JQuery deferred objects with JSOM

    Hi,
    I have written following query to execute a JSOM call using Jquery Deferred objects.
    But It is not working. I am getting following error:
    Uncaught TypeError: Cannot read property 'get_current' of undefined .  Can anyone help what is wrong here?
    <script type="text/javascript">
    ExecuteOrDelayUntilScriptLoaded(getrelatedProjects, "sp.js");
    function getrelatedProjects() {
        var dfd = $.Deferred(function () {
           var clientcontext = new SP.ClientContext.get_current();
            var list = clientContext.get_web().get_lists().getByTitle("Roadmap");
            var camlQuery = new SP.CamlQuery();
            this.collListItem = list.getItems(camlQuery);
            clientContext.load(collListItem);
            context.executeQueryAsync(
               function () {
                   var listItemCollection = list.getItems(camlQuery);
                   dfd.resolve(listItemCollection);
               function () {
                   dfd.reject(args.get_message());
        return dfd.promise();
    getrelatedProjects().done(function (listColl) {
        var listItemEnumerator = listColl.getEnumerator();
        // do something with the list
        while (listItemEnumerator.moveNext()) {
            var oListItem = listItemEnumerator.get_current();
            listItemInfo += '\nID: ' + oListItem.get_id() +
                '\nTitle: ' + oListItem.get_item('Title');
        alert(listItemInfo.toString());
    </script>
           

    I have been trying for help since one week on this issue. Here is my requirement. Can someone just help me modify this code. All I am looking for is to execute getStatus(project) synchronously.
    // JavaScript source code
    var roadmapList;
    var collListItem;
    var dashboardList;
    var statusItem;
    ExecuteOrDelayUntilScriptLoaded(loadRoadMap, "sp.js");
    function loadRoadMap() {
        var currentCtx = SP.ClientContext.get_current();
        var currentWeb = currentCtx.get_web();
        this.roadmapList = currentWeb.get_lists().getByTitle('Roadmap');
        var camlQuery = new SP.CamlQuery();
        this.collListItem = roadmapList.getItems(camlQuery);
        currentCtx.load(collListItem);
        currentCtx.executeQueryAsync(
            Function.createDelegate(this, this.onQuerySucceeded),
            Function.createDelegate(this, this.onQueryFailed)
    function onQuerySucceeded(sender, args) {
        var listItemInfo = '';
        var listItemEnumerator = collListItem.getEnumerator();
        while (listItemEnumerator.moveNext()) {
            //alert("Success");
            var oListItem = listItemEnumerator.get_current();
            var projectUrl = oListItem.get_item('ProjectURL').get_url();
            listItemInfo += '<tr><td>' + oListItem.get_item('Roadmap_x0020_Project')
    + '</td><td>' + getStatus(projectUrl) + '</td></tr>';
            $('#statusTable').append($(listItemInfo));
    function onQueryFailed(sender, args) {
        alert('Request failed. ' + args.get_message() +
            '\n' + args.get_stackTrace());
    function getStatus(project) {
        var crossSiteContext = new SP.ClientContext("http://myanothersite.com/it/");
        var crossSiteWeb = crossSiteContext.get_web();
        this.dashboardList = crossSiteWeb.get_lists().getByTitle('Dashboard');
        var projectQuery = new SP.CamlQuery();
        projectQuery.set_viewXml("<View><Query><Where><Eq><FieldRef
    Name=\'Project\'/>" +
            "<Value Type=\'URL\'>" + project + "</Value></Eq></Where></Query>"
    +
            "<RowLimit>1000</RowLimit></View>");
        this.statusItem = dashboardList.getItems(projectQuery);
        crossSiteContext.load(statusItem);
        crossSiteContext.executeQueryAsync(
            Function.createDelegate(this, this.onStatusQuerySucceeded),
            Function.createDelegate(this, this.onStatusQueryFailed)
    function onStatusQuerySucceeded(sender, args) {
        var projectItemInfo = '';
        var projectItemEnumerator = statusItem.getEnumerator();
        while (projectItemEnumerator.moveNext()) {
            var curstatusItem = projectItemEnumerator.get_current();
            projectItemInfo += '\nID: ' + curstatusItem.get_id() +
                '\nStatus: ' + curstatusItem.get_item('Project_x0020_Status').Label;
    function onStatusQueryFailed(sender, args) {
        alert('Request failed. ' + args.get_message() +
           '\n' + args.get_stackTrace());

  • Using jquery to fade in validation messages in and out

    Hello,
    I am using spry validation on my form and I have it where it pops up a graphic when the validation happens. Now to dress it up better I would like those graphics to fade in and out depending if they meet the validaton or not instead of just dissapearing. Does anyone know how to do this using Jquery or some other sort of method? I am new to it. Below is code for my form and css for validation
    <div class="contactform">
             <form action="POST" method="get" name="contact" id="form1">
             <p>Name: (Required)</p>
             <span id="spryName">
             <input name="req" value="" class= "tb" type="text" id="req" >
             <img class="textfieldRequiredMsg" src="_images/valbox.png"  ><span class="textfieldRequiredMsg"></span></span>
             <p>Company: (Required)</p>
             <span id="spryComapny">
             <input name="company" type="text" class="tb" >
             <img class="textfieldRequiredMsg" src="_images/valbox2.png"  ><span class="textfieldRequiredMsg">.</span></span>
             <p>Email: (Required)</p>
             <span id="spryEmail">
             <input value="" name="email" type="text" class="validate[required] tb" id="email" >
       <img class="textfieldRequiredMsg"  src="_images/valbox3.png" ><img class="textfieldInvalidFormatMsg"  src="_images/valemailformat.png" ><span  class="textfieldRequiredMsg">.</span><span  class="textfieldInvalidFormatMsg">.</span></span>
             <p>Phone:</p><input name="name" type="text" class="tb" >
             <p>What do you want done? (Required)</p>
             <div class="comments"><span id="spryComments">
               <textarea class="commentstext" name="comments" cols="50" rows="10"></textarea><br /><br />
             <img class="textareaRequiredMsg" src="_images/valcomments.png" >
               <span class="textareaRequiredMsg"></span></span></div></br /><br /><br />
             <div class="formbtns">
             <input name="Submit" type="submit" value=""  class="submitbtn"> <input name="Clear" type="reset"  value="" onClick="setFocus();" class="clearbtn">
             </div>
             </form> </div>
    @charset "UTF-8";
    /* SpryValidationTextField.css - version 0.4 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    /* These are the classes applied on the error messages
    * which prevent them from being displayed by default.
    .textfieldRequiredMsg,
    .textfieldInvalidFormatMsg,
    .textfieldMinValueMsg,
    .textfieldMaxValueMsg,
    .textfieldMinCharsMsg,
    .textfieldMaxCharsMsg,
    .textfieldValidMsg {
        display: none;
    /* These selectors change the way messages look when the widget is in one of the error states.
    * These classes set a default red border and color for the error text.
    * The state class (e.g. .textfieldRequiredState) is applied on the top-level container for the widget,
    * and this way only the specific error message can be shown by setting the display property to "inline".
    .textfieldRequiredState .textfieldRequiredMsg,
    .textfieldInvalidFormatState .textfieldInvalidFormatMsg,
    .textfieldMinValueState .textfieldMinValueMsg,
    .textfieldMaxValueState .textfieldMaxValueMsg,
    .textfieldMinCharsState .textfieldMinCharsMsg,
    .textfieldMaxCharsState .textfieldMaxCharsMsg
        display: inline;
        color: #FFF;
        background-image: none;
        background-repeat: no-repeat;
        vertical-align:top;

    I have my images in my Dreamweaver assets folder.  I'm not sure what as2 or as3 are...I don't know if that helps, my skill level in Flash and DW are pretty basic.  Any suggestions?  Thank you!

  • Flash CC: use jQuery functions

    I want to use jquery functions into flash for html5 game I am building. What I tried to do is add the following lines, and then use simple jquery function, but it seems not loaded, because I get the error: $ is not defined
    My code, which is in the first frame of the main timeline, is:
    var head = document.getElementsByTagName('head')[0];
    var file = "http://code.jquery.com/jquery-1.11.0.min.js";
    var ref = document.getElementsByTagName('script')[0];
    var js = document.createElement('script');
    js.src = file;
    ref.parentNode.insertBefore(js, ref);
    console.log(head.outerHTML);
    console.log($(document).height());
    console.log($(document).height());
    The result I see in the console log, is the following:
    <head>
          <meta charset="UTF-8">
          <title>ggg</title>
          <script src="http://code.jquery.com/jquery-1.11.0.min.js"></script><script src="http://code.createjs.com/easeljs-0.7.1.min.js"></script>
         <script src="http://code.createjs.com/tweenjs-0.5.1.min.js"></script>
         <script src="http://code.createjs.com/movieclip-0.7.1.min.js"></script>
         <script src="ggg.js"></script>
         <script> var canvas, stage, exportRoot;
              function init()
                   canvas = document.getElementById("canvas");
                   exportRoot = new lib.ggg();
                   stage = new createjs.Stage(canvas);
                   stage.addChild(exportRoot); stage.update();
                   createjs.Ticker.setFPS(lib.properties.fps);
                   createjs.Ticker.addEventListener("tick", stage);
         </script> </head> ggg.js:163
    > Uncaught ReferenceError: $ is not defined
    What is wrong with that? and what I have to do so I can use jquery?
    TIA

    As shown in line 9 of the code above, I wrote: console.log ($ (document) .height ());
    I did not think, I needed to set the variable $, because jquery is already doing it. Is not it?
    If I try to write the line: <script src = "http://code.jquery.com/jquery-1.11.0.min.js"> </ script> within the <head> html file manually, then there is no problem and I get the height of the screen, even without defining the variable $.
    Which brings me to the conclusion that, although the line was written in the file, as you can see in the console log, but it still does not start ...
    The problem is, if I write the line in the html file manually, when I do publish .fla file, Flash CC erases the line and everything was written by hand. So I thought to write the above code from the first frame of the timeline.
    Is there a better way?
    And yet - why the above code tweaks error message?
    TIA

  • Using jQuery Ajax Call within ApEx - How?

    Hi,
    I was just wondering if it's possible to replace Oracle ApEx way of performing ajax calls with a jQuery Ajax call instead - just curious if I can call an On Demand process using jQuery Ajax means?
    Any examples would be much appreciated as unsure how to perform the equivalent process with jQuery.
    Thanks.
    Tony.

    I guess I found the solution for region pull for IR report
    using the syntax
    gReport = new apex.worksheet.ws('');
    in the js script below.
    When I pull the IR region from page8 into page1, I found that the IR toolbar's html/Js scripts are missing in Page1
    and thats why the IR toolbar functions were not working, issuing "gReport is null or not an object" error.
    But when I added the
    gReport = new apex.worksheet.ws('');
    syntax in the JS script below, the toolbar functions work using the p_arg_value.
    <script>
    function display_report(p1) {
    $s('P1_SELECTED_NODE',p1);
    $.ajax({
    type: "POST",
    url: "wwv_flow.show",
    data: {
    p_flow_id : $v('pFlowId'),
    p_instance : $v('pInstance'),
    p_flow_step_id : "4",
    p_request : "SUBMIT",
    p_arg_name : 'P4_SELECTED_NODE',
    p_arg_value : $v('P1_SELECTED_NODE')
    dataType: "html",
    success: function(data){
    var startTag = '<apex4ajax>';
    var endTag = '</apex4ajax>';
    var start = data.indexOf(startTag);
    if (start > 0) {
    data = data.substring(start+startTag.length);
    var end = data.indexOf(endTag);
    data = data.substring(0,end);
    $("#EMP_REPORT").html(data);
    //Workaround to make the report "pagination" and "order by" work
    $x_Value('pFlowStepId', "4");
    gReport = new apex.worksheet.ws('');
    //gValid = new apex.validation.v();
    //gReport.navigate.paginate('pgR_min_row=51max_rows=50rows_fetched=50');
    //gReport.controls.reset();
    </script>

  • Error message: AgServerMigration ERROR Using store provider as a session is deprecated.

    Hi.  I'm using a MacBook Pro, OS X 10.6.5.  I have been opening files in Lightroom, editing them, and then doing finishing touches in CS5.  When I save the file in CS5 and close it, my Mac returns the above message in Console eight times:
    AgServerMigration ERROR Using store provider as a session is deprecated.
    AgServerMigration ERROR Using store provider as a session is deprecated.
    AgServerMigration ERROR Using store provider as a session is deprecated.
    AgServerMigration ERROR Using store provider as a session is deprecated.
    AgServerMigration ERROR Using store provider as a session is deprecated.
    AgServerMigration ERROR Using store provider as a session is deprecated.
    AgServerMigration ERROR Using store provider as a session is deprecated.
    AgServerMigration ERROR Using store provider as a session is deprecated.
    I have no idea what this means, or whether it is a problem.  Does anyone know what this is?
    Thanks.

    I see the same thing and have done for some time. The actual file is being saved back. etc. So, in that respect both Lr and Ps are working fine. IOW, ignore it.

  • What are the implications of using jquery version 1.10.2 rather than the version (1.7.1) that Adobe

    What are the implications of using jquery version 1.10.2 rather than the version (1.7.1) that Adobe uses? Thanks
    Bob

    I am having trouble when my Edge Animate composition (banner ad) appears on a web page that uses jquery version 1.8.23. Some of the functionality of the host page no longer works. This occurs only when my composition is present & the functionality returns when another ad is displayed (either a Flash ad or a gif). It happens in Chrome Version 31.0.1650.63 m, Chrome Version 33.0.1738.0 canary & IE 11.
    I had edited my Edge Animate files to use the Adobe CDN option & to point to another server (mine) so only the html file was needed to be placed in the ad rotator & on the host's server. I now have edited them again to include the Google CDN locations for version jquery 1.10.2 (http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js). I am waiting for the host site to try this updated html file. When I visit just this new page & the old one that pointed to 1.7.1 for that matter, it works fine.
    Thank you for taking the time to read and answer my message.
    Bob

  • Received HTTP response code 500 : Internal Server Error using connection Fi

    Hi everybody,
    I have configured a file-webservice-file without BPM scenario...as explained by Bhavesh in the following thread:
    File - RFC - File without a BPM - Possible from SP 19.
    I have used a soap adapter (for webservice) instead of rfc .My input file sends the date as request message and gets the sales order details from the webservice and then creates a file at my sender side.
    I monitored the channels in the Runtime work bench and the error is in the sender ftp channel.The other 2 channel status is "not used" in RWB.
    1 sender ftp channel
    1 receiver soap channel
    1 receiver ftp channel.
    2009-12-16 15:02:00 Information Send binary file "b.xml" from ftp server "10.58.201.122:/", size 194 bytes with QoS EO
    2009-12-16 15:02:00 Information MP: entering1
    2009-12-16 15:02:00 Information MP: processing local module localejbs/AF_Modules/RequestResponseBean
    2009-12-16 15:02:00 Information RRB: entering RequestResponseBean
    2009-12-16 15:02:00 Information RRB: suspending the transaction
    2009-12-16 15:02:00 Information RRB: passing through ...
    2009-12-16 15:02:00 Information RRB: leaving RequestResponseBean
    2009-12-16 15:02:00 Information MP: processing local module localejbs/CallSapAdapter
    2009-12-16 15:02:00 Information The application tries to send an XI message synchronously using connection File_http://sap.com/xi/XI/System.
    2009-12-16 15:02:00 Information Trying to put the message into the call queue.
    2009-12-16 15:02:00 Information Message successfully put into the queue.
    2009-12-16 15:02:00 Information The message was successfully retrieved from the call queue.
    2009-12-16 15:02:00 Information The message status was set to DLNG.
    2009-12-16 15:02:02 Error The message was successfully transmitted to endpoint com.sap.engine.interfaces.messaging.api.exception.MessagingException: Received HTTP response code 500 : Internal Server Error using connection File_http://sap.com/xi/XI/System.
    2009-12-16 15:02:02 Error The message status was set to FAIL.
    Please help.
    thanks a lot
    Ramya

    Hi Suraj,
    You are right.The webservice is not invoked.I see the same error in the sender channel and the receiver soap channel status is "never used".
    2009-12-16 15:52:25 Information Send binary file  "b.xml" from ftp server "10.58.201.122:/", size 194 bytes with QoS BE
    2009-12-16 15:52:25 Information MP: entering1
    2009-12-16 15:52:25 Information MP: processing local module localejbs/CallSapAdapter
    2009-12-16 15:52:25 Information The application tries to send an XI message synchronously using connection File_http://sap.com/xi/XI/System.
    2009-12-16 15:52:25 Information Trying to put the message into the call queue.
    2009-12-16 15:52:25 Information Message successfully put into the queue.
    2009-12-16 15:52:25 Information The message was successfully retrieved from the call queue.
    2009-12-16 15:52:25 Information The message status was set to DLNG.
    2009-12-16 15:52:27 Error The message was successfully transmitted to endpoint com.sap.engine.interfaces.messaging.api.exception.MessagingException: Received HTTP response code 500 : Internal Server Error using connection File_http://sap.com/xi/XI/System.
    2009-12-16 15:52:27 Error The message status was set to FAIL.
    what can I do about this?
    thanks,
    Ramya

  • Setting row level field in table using jQuery

    Hi,
    I'm utilising the following to read and then set values in the same row within a report.
    Re: Referencing a row level field value in an Interactive Report using jquery
    Consider the following snippet
    // read information eg
    var row = $x_UpTill(this.triggeringElement, 'TR');
    var dateCompleted = $('input[name="f03"]', row)[0];
    console.log(dateCompleted.value);
    // write information eg
    var dateBooked = $('input[name="f02"]', row)[0];
    //dateBooked.value = 'xyz'; // sets to xyz, as expected
    dateBooked.value = return_date; // sets the actual code, not returning stringAll works as I'd expect except the last line. I have a js function returning a formatted string (Set Date With Javascript but in this case my field now contains the actual code definition, not the date string the function actually returns.
    I'm thinking I'm just misunderstanding a simple concept for JavaScript here?
    A simple workaround could be to create field P0_SYSDATE, calculated to TO_CHAR(SYSDATE,:F_DATE_FORMAT), then apply
    dateBooked.value = $v('P0_SYSDATE');but I'm trying to improve my understanding of javascript/jQuery...
    Cheers,
    Scott

    So are you saying that return_date is an actual javascript function that returns the formated string/date you want?
    If so, then I think you simply need parenthesis to run the function:
    dateBooked.value = return_date();Or... am I missing something here?
    Thanks
    -Jorge

Maybe you are looking for