Appeal process page javascript

Hello

I have a simple code below that I want to run inside the page point process = load after.

From now on, I have this under DA loading of the page, but its not always running.

I have a page where I have a similar process of the page but it resets something and it works every time. I think if some how I can put this java code within this process of page then it would be too much work each time.

This javascript basically reduced to a minimum the bar side navigation

$('#t_Button_navControl').click ();

Thanks in advance.

Minimizing the t_Button_navControl will not work with a process of pl/sql page.

You need a process of loading page but apex saves the State of the last. So what happens:

1 time: t_Button_navControl opens and you close with the DA

2 time: t_Button_navControl gets closed by default (stored in a cookie I think) and you should not run the DA

What you essentially need to check is the following:

If ($("#t_Button_navControl").hasClass ("is-active") == false) {$('#t_Button_navControl').click ();}

Take a look at my new plugin code. I deal with the same problem.

https://github.com/tobiasarnhold/UILayout-UT

Best regards

Tobias

Tags: Database

Similar Questions

  • Appeal process in Javascript page

    Hey guys! Just shortly after work on my conditional Javascript dialog function, I came across another small problem which is as follows:

    I need to call a process page of the "dialogwarning" Javascript function when the backup is click on the button of a dialog jquery.

    The update action work already but the pl/sql process is not carried out.

    In fact, it cannot be so difficult...
    Can you please give me a hint how to do it? So far I've only seen son were JavaScript was called in a pl/sql procedure - not vice versa.

    Here is my code for the dialog box:
    $(function(){
      $("#dialogwarning").dialog({
        autoOpen: false,
        bgiframe: true,
         modal: true,
            width: 400,
            minWidth: 400,
            resizable: true,
         buttons:{
           Save: function(){
              doSubmit('UPDATE','APPLICATION_PROCESS=proc_reset_mx_results');
          },
          Exit: function(){
             $(this).dialog('close');
           }
         }
      });
    });
    </script>
    Any help is appreciated!

    Kind regards

    Sebastian

    If the update action works, it is possible that your application process, without that it runs values in the settings.

    Try to put the process on the page, with the condition back when you press the update button.

  • How to marry conf msg and led process page Javascript

    Hi people

    Am Newbie on VISTA / Oracle XE / Apex 4.0.1...

    I have an issues with a status column table and a MyDelete button on my page. I don't want to remove button led line: want to rather than to change the status of line that I always my data in itself for verification purposes.

    Fortunately, my app works when I click on the MyDelete button and executes the PL/SQL process of page upd status of the line in question published.

    But I want to do is have a msg of confirmation via Javascript that runs when the user presses MyDelete allow them to proceed or not.

    Looked in the documentation and online of the Oracle App Builder manual it is an example of calling Javascript by a button. In their example, if the user confirmed that want to remove dosubmit('Delete') command then takes place.

    I assumed that I had no need of the 'delete' on the dosubmit and thus deleted but when I click on MyDelete the Javascript works OK, but when I click on Yes to confirm the treatment it IE chg of State rather than true delete my page process is not running.


    Many thanks as always, if anyone can suggest how to fix / where I'm wrong!

    Hello

    DoSubmit JavaScript takes as request parameter you want to submit. You can use

    doSubmit('DELETE');
    

    Or any string REMOVE instead and make your conditional update process managed by this request.
    In the document and example above DELETE is just request that you send.

    Kind regards
    Jari

  • Case statement in the process Page

    Request Express 3.2.1.00.11

    I put the following code in an anonymous block (will return no error) for a process Page;

    BEGIN
    INSERT
      INTO DAD_ASSESSMENT_REQUEST
    ( tenure_id
    , client_id
    )
    VALUES
    ( :P10101_TENURE_ID
    , :P10101_CLIENT_ID 
    );
    END;
    

    But when I put a statement case it throws the following error;

    1 error has occurred
    ORA-06550: line 7, column 3: PL/SQL: ORA-01747: invalid user.table.column, table.column, or column specification ORA-06550: line 3, column 1: PL/SQL: SQL Statement ignored
    

    BEGIN
    INSERT
      INTO DAD_ASSESSMENT_REQUEST
    ( tenure_id
    , client_id
    , (CASE 
       WHEN (:P10101_MEASURE_OPTION = 'AREA') THEN estimated_area_ha 
       WHEN (:P10101_MEASURE_OPTION = 'LINE') THEN estimated_length_km 
     END)
    )
    VALUES
    ( :P10101_TENURE_ID
    , :P10101_CLIENT_ID 
    , :P10101_X
    );
    END;
    

    Why is this code not work and it is possible to use a case statement in a Page Apex process

    Concerning

    Ben

    Benton says:

    Request Express 3.2.1.00.11

    I put the following code in an anonymous block (will return no error) for a process Page;

    1. BEGIN
    2. INSERT
    3. IN DAD_ASSESSMENT_REQUEST
    4. (tenure_id
    5. client_id
    6. )
    7. VALUES
    8. (: P10101_TENURE_ID)
    9. ,: P10101_CLIENT_ID
    10. );
    11. END;

    But when I put a statement case it throws the following error;

    1. 1 error has occurred
    2. ORA-06550: line 7, column 3: PL/SQL: ORA-01747: specification user.table.column, table.column or invalid column ORA-06550: line 3, column 1: PL/SQL: statement ignored
    1. BEGIN
    2. INSERT
    3. IN DAD_ASSESSMENT_REQUEST
    4. (tenure_id
    5. client_id
    6. (CASE
    7. WHEN (: P10101_MEASURE_OPTION = 'SPACE') THEN estimated_area_ha
    8. WHEN (: P10101_MEASURE_OPTION = 'LINE') THEN estimated_length_km
    9. END)
    10. )
    11. VALUES
    12. (: P10101_TENURE_ID)
    13. ,: P10101_CLIENT_ID
    14. ,: P10101_X
    15. );
    16. END;

    Why is this code not work and it is possible to use a case statement in a Page Apex process

    Of course, it is possible to use a CASE statement or expression (it is the latter) in a page APEX process. However, it is not possible to use an invalid syntax while doing so. Part of a clause INSERT INTO can contain only static column names.

    In general the SQL expressions (and also the bind variable, another cause frequent errors of syntax) can be used only in

    • the projections of the SELECT queries and subqueries
    • the right side of the disposals in the SET update clause
    • the lists of VALUES of INSERTs
    • WHERE clause predicates

    ReemaPuri wrote:

    Try this

    INSERT

    IN DAD_ASSESSMENT_REQUEST

    (tenure_id

    client_id

    estimated_area_ha

    estimated_length_km

    )

    VALUES

    (: P10101_TENURE_ID)

    ,: P10101_CLIENT_ID

    , (SELECT CASE WHEN: P10101_MEASURE_OPTION = 'SPACE' AND THEN: P10101_X)

    OTHERWISE, NULL END OF DOUBLE)

    , (SELECT CASE WHEN: P10101_MEASURE_OPTION = 'LINE' THEN: P10101_X)

    OTHERWISE, NULL END OF DOUBLE)

    );

    It's a good idea, but it can be simplified, eliminating unnecessary subqueries:

    insert into dad_assessment_request (
        tenure_id
      , client_id
      , estimated_area_ha
      , estimated_length_km)
    values (
        :p10101_tenure_id
      , :p10101_client_id
      , case
          when :p10101_measure_option = 'AREA' then :p10101_x
        end
      , case
          when :p10101_measure_option = 'LINE' then :p10101_x
        end);
    
  • Processing page

    Hello

    I have a search page that has a test that allows the update of some fields.

    When the user updates the fields, I want him to a processing page that turns and stops when the update is complete.

    I implemented the code below, but it does not work

    public void processPageDialog(OAPageContext oapagecontext) {
    
      System.out.println("processPageDialog");
      
      OAProcessingPage page = new OAProcessingPage("oracle.apps.fnd.framework.toolbox.samplelib.webui.processCO");
      
      page.setApplicationModuleDefName("oracle.apps.gl.searchpage.server.SearchPageAM");
      page.setRetainAMValue(false);
      
      page.setConciseMessage("This is the concise processing page message.");
      
      page.setDetailedMessage("This is the detailed message which should explain what's happening.");
      
      page.setProcessName("Update In Progress");
      System.out.println("processPageDialog 1");
      oapagecontext.forwardToProcessingPage(page);
      System.out.println("processPageDialog 2");
    }
    

    During execution of the code, I get the below error:

    oracle.apps.fnd.framework.OAException: could not create Java class: (oracle.apps.fnd.framework.toolbox.samplelib.webui.processCO) associated with the area: (FNDPROCESSSTACKRN). It is probably because the class name is incorrect or not included in the project.

    I have class in the appropriate folder of JDeveloper.


    Could someone help me please how to fix this error and implement the treatment page.

    Thanks in advance

    Kind regards
    Varun

    mainPage PFR:

    If submitbtton! = {null}

    OAProcessingPage page =
           new OAProcessingPage ("oracle.apps.xxdm.ecrc.webui.xxProcessCO");
           page.setApplicationModuleDefName ("xxx.oracle.apps.xxdm.ecrc.server.xxMainAM");
         page.setRetainAMValue (false);
      page.setConciseMessage ("this will present the calculation program");
      page.setDetailedMessage ("this will be present program competing to create the invoice in Oracle for selected queries");
      page.setProcessName ("simultaneous program is Runing! Please do not close this window');
      pageContext.putTransactionValue ("reqId", reqId); for the settings in ProcessCO
     

    pageContext.forwardToProcessingPage (page);

    }

    create a new controller for ProcessingPG oracle.apps.xxdm.ecrc.webui.xxProcessCO

    xxProcessCO:

    ' Public Sub processFormRequest (pageContext OAPageContext, OAWebBean webBean)

    {

    super.processFormRequest (pageContext, webBean);

    OAApplicationModule am = pageContext.getApplicationModule (webBean);

    Number reqId = (Number) pageContext.getTransactionValue ("reqId");

    String sreqId = reqId.toString ();

    [Serializable] parameters = {sreqId};

    int concreqid = ((Integer) am.invokeMethod ("submitCPRequest", parameters)) .intValue (); the simultaneous application

    pageContext.putSessionValue ("concreqid", concreqid);

    pageContext.forwardImmediately ("OA.jsp?page=/oracle/apps/xxdm/ecrc/webui/xxMainPG",

    NULL,

    OAWebBeanConstants.KEEP_MENU_CONTEXT,

    NULL,

    NULL,

    true,

    OAWebBeanConstants.ADD_BREAD_CRUMB_YES);

    }

  • Redirect to the new page of pl sql / process page?

    Hello

    I'm working on a page with a form for users to download the data.  When you press the "submit" button, it runs a process Page.  After the process is complete (i.e., to insert a new record of DB) we need to create a branch to a new page with treatment notes (defined in the process).  I tried to save the notes to an item on the first page and then configure a branch that fires "to submit, after treatment...". ' and includes notes in the industry, setting the value of an item on the new page.  It works in part but seems to truncate the value of the notes.  Is there a limit to the length of the string that can be passed via a branch page?

    Or is there a better way to do it?  Maybe there is a way to branch directly in the process?  If so, it would be easier because I wouldn't have if all goes well define a page element, just to pass this value along to the new page.

    Thank you

    Steve

    Hi Steve. 1234555 - Oracle,

    Agree with the suggestion of fac586:

    The value of the item on the new page can be defined directly in the process, or later without including the value in the branch (make sure that the direction is not clear the session state in the target page). Even better would be to give notes a structure to put them in a collection and displays them using a report.

    Here's how you can do if your process is PL/SQL:

    DECLARE
    
      L_NOTES VARCHAR2(512);
    
    BEGIN
    
      -- process for insertion and setting notes
    
      -- setting notes item on page to be branched
      APEX_UTIL.SET_SESSION_STATE('P2_NOTES', L_NOTES);
    
      -- redirecting/branching to the page
      APEX_UTIL.REDIRECT_URL (
          P_URL => 'f?p=' || :APP_ID || ':2:'|| :APP_SESSION ||'::NO:::' );
    
    END;
    

    Reference:

    I hope this helps!

    Kind regards

    Kiran

  • Order still stuck on the processing page!

    my purchase is still stuck on the processing page, he said: do not to click out of it he double incase bill you... What should I do

    You can find on this page.

    And can check if purchased order on Adobe: Creative, marketing management solutions and document > manage account > Products & Plans.

    If you don't see any plan here, can go ahead and place a new order.

    .

    Concerning

    Jean-Christophe

  • Process page returns ORA-06550: error

    APEX 4.1

    Oracle 11g

    Analysis of schema: MDM_APEX

    Data tables: MDM_DATA

    Creating a page process to take several pieces of an item in the list and insert it into a table.

    I use a function that works in the database (when it is called by SQL + and the toad) but get the following error message when you try to create the page APEX process:

    1 error has occurred

    ORA-06550: line 3, column 22: PL/SQL: ORA-00904: "UTIL". ' ' SPLIT ': invalid identifier ORA-06550: line 2, column 1: PL/SQL: statement ignored

    I have granted running the privs to APEX_040100 and MDM_APEX on the packaging. This function works in another application, but not to recognize in this application.

    Google search finds no solutions used for this question with regard to APEX. Suggestions on how to recognize the function of the APEX?


    Thank you

    Tim


    < code >

    Process page:

    INSERT INTO MDM_DATA. REF_CMR (STORE_CD)

    (SELECT * FROM TABLE (UTIL.) SPLIT (:P400_STORE_LIST,':')));

    < code >

    < code >

    CREATE OR REPLACE PACKAGE MDM_DATA. UTIL

    AS

    SPLIT FUNCTION (P_LIST VARCHAR2, P_DEL VARCHAR2: = ',') SPLIT_TBL RETURN PIPELINE;

    Etc...

    End UTIL;

    CREATE OR REPLACE PACKAGE BODY MDM_DATA. UTIL

    AS

    SPLIT FUNCTION (P_LIST VARCHAR2, P_DEL VARCHAR2: = ',') SPLIT_TBL RETURN PIPELINE

    AS

    L_IDX PLS_INTEGER;

    L_LIST VARCHAR2 (32767): = P_LIST;

    L_VALUE VARCHAR2 (32767).

    BEGIN

    LOOP

    L_IDX: = INSTR (L_LIST, P_DEL);

    IF L_IDX > 0

    THEN

    LINE OF CONDUCT (SUBSTR (L_LIST, 1, L_IDX - 1));

    L_LIST: = SUBSTR (L_LIST, L_IDX + LENGTH (P_DEL));

    ON THE OTHER

    PIPE ROW (L_LIST);

    EXIT;

    END IF;

    END LOOP;

    RETURN;

    EXCEPTION

    WHILE OTHERS THEN

    NULL;

    END SPLIT;


    ETC...

    End util;

    < code >

    INSERT INTO MDM_DATA. REF_CMR (STORE_CD)

    (SELECT * FROM TABLE (MDM_DATA. )) UTIL. SPLIT (:P400_STORE_LIST,':')));

  • Process page not throwing no data found error when you remove the item in a table

    Hi guys,.

    I'm trying to run a process page just before the process of MRU in tabular form and it is throwing an error no data found . Here is my code:
    BEGIN
         
         for i in 1..apex_application.g_f02.count LOOP     
              
              IF apex_application.g_f01(i) is not null THEN
                   
                   UPDATE STOCK
                        SET PRODUCT_QUANTITY = PRODUCT_QUANTITY+apex_application.g_f08(i)
                   WHERE site_id = :P21_SITE_ID and product_id = apex_application.g_f02(i);
                   COMMIT;
                   
              END IF;
         END LOOP;
    END;
    F01 here is the checkbox column and the if statement is the cause of the problem because if I get rid of the update statement (leaving just the commit) then it still throws the error.

    When I click on a checkbox, and hit the Remove button what fires off times this process and then the MRU, I get the error not found data .

    Would appreciate it if someone could shed some light on this. Thank you very much.

    Published by: taepodong on July 1, 2012 07:54

    Hello

    >
    I'm trying to run a process page just before the process of MRU in tabular form and he throws no data were found error. Here is my code:

    BEGIN
    
         for i in 1..apex_application.g_f02.count LOOP     
    
              IF apex_application.g_f01(i) is not null THEN
    
                   UPDATE STOCK
                        SET PRODUCT_QUANTITY = PRODUCT_QUANTITY+apex_application.g_f08(i)
                   WHERE site_id = :P21_SITE_ID and product_id = apex_application.g_f02(i);
                   COMMIT;
    
              END IF;
         END LOOP;
    END;
    

    Here f01 is the column of the box and the if statement is causing the problem because if I get rid of the update statement (leaving just the commit) then it still throws the error.

    When I click on a checkbox and click on Remove button that triggers both this process and then MRU, I get the no found error of data.
    >

    You iterate over the f02 and seeking f01 not null. It's the misuse of the checkbox element. Please see these links. in particular the examples of process OnSubmit.
    http://docs.Oracle.com/CD/E23903_01/doc/doc.41/e21676/apex_item.htm#CHDDCHAF
    http://docs.Oracle.com/CD/E23903_01/doc/doc.41/e21676/apex_app.htm#AEAPI215

    Kind regards

    PS: That's what you need to understand
    >
    Note that the boxes displayed by using APEX_ITEM. CHECK box will only contain values in the APEX_APPLICATION tables for those lines that are checked. Unlike other elements (TEXT, TEXTAREA, and DATE_POPUP) that can contain an entry in the corresponding table of APEX_APPLICATION for all submitted ranks, a checkbox will be an entry in the APEX_APPLICATION table if this option is selected.
    >

    Published by: Dominique July 2, 2012 09:44

  • How to run a merge as a process Page statement

    Hello
    A general question about the processing of the page - a SQL DML can be run as a process page? The Page change process Page has a note that says:
    (quote)      Process page
    A process page is a logical unit that runs when a specific event occurs, such as loading or to submit the page, reset the session state, the transformation of the automatic line or a call to a SQL or custom PL/SQL code. (excerpt)

    It seems that you should be able to run a simple Merge statement as a process page. But the problem I encounter is a simple Merge statement will not scan without errors and if you select analysis during execution, it still gives the same error of analysis. This despite the fact that the fusion works perfectly in the workshop of the Apex SQL.

    Here is the example:

    merge into B
    using (select object, startdate, starttime, enddate,
    showtimeas, meetingorganizer, EndTime, categories, alldayevent
    of (A)
    (1 = 0)
    When not matched
    then
    Insert (B.idnum, B.subject, B.startdate, B.starttime, B.enddate,
    B.EndTime, B.AllDayEvent, B.meetingorganizer, B.Categories, B.showtimeas)
    values (A_seq.nextval, A.subject, A.startdate, A.starttime, A.enddate,
    A.EndTime, A.AllDayEvent, A.meetingorganizer, A.Categories, A.showtimeas);

    Pat

    See this last thread regarding a merger process in a form:

    Apex + "merge".

    Thank you

    Tony Miller
    Webster, TX

  • Conditional processing of JavaScript by using the value of the item page

    Dear experts,

    I have the following code to draw a Gantt chart and need to package some steps. They should only appears if the date values are not null or not zero.

    I tried the following, as you can see in my code. However, the first line is always printed even if the value of my article on page P1112_GP_AUFTAKT_START is null or zero (display value).

    Can you please give me a hint how to do conditional processing in my case?

    I appreciate your help!

    Thank you very much

    SEB
    <script>
      var g = new JSGantt.GanttChart('g',document.getElementById('GanttChartDIV'), 'day');
      g.setShowRes(0); // Show/Hide Responsible (0/1)
      g.setShowDur(1); // Show/Hide Duration (0/1)
      g.setShowComp(1); // Show/Hide % Complete(0/1)
      g.setCaptionType('Caption');  // Set to Show Caption
      g.setShowStartDate(1); // Show/Hide Start Date(0/1)
      g.setShowEndDate(1); // Show/Hide End Date(0/1)
      g.setDateInputFormat('dd/mm/yyyy') 
      g.setDateDisplayFormat('dd/mm/yyyy') 
    
      if( g ) {
        if ($x('P1112_GP_AUFTAKT_START').value != null || $x('P1112_GP_AUFTAKT_END').value != null || $x('P1112_GP_AUFTAKT_START').value != 0 || $x('P1112_GP_AUFTAKT_END').value != 0 || $x('P1112_GP_AUFTAKT_START').value != ""  || $x('P1112_GP_AUFTAKT_END').value != "")
       
           {g.AddTaskItem(new JSGantt.TaskItem(1, 'Auftaktveranstaltung'    ,  $x('P1112_GP_AUFTAKT_START').value , $x('P1112_GP_AUFTAKT_END').value    ,  'fff600', '', 0, 'LWF',  100, 0, 0, 1));}
         
         g.AddTaskItem(new JSGantt.TaskItem(2, 'Kartierung LRT Flachland', $x('P1112_KART_LRT_START').value  , $x('P1112_KART_LRT_END').value  ,  '00a3ff', '', 0, 'LWF',  20, 0, 0, 1, "1"));
         g.AddTaskItem(new JSGantt.TaskItem(3, 'Inventur LRT Flachland'  , $x('P1112_INV_LRT_START').value , $x('P1112_INV_LRT_END').value ,  'ff6347', '', 0, 'LWF',  30, 0, 0, 1, "1"));
    
        g.Draw();     
        g.DrawDependencies();
    
    
      }
      else
      {
        alert("not defined");
      }
    
    </script>

    Hello

    Try

    if($v('P1112_GP_AUFTAKT_START').length>0 ||
     $v('P1112_GP_AUFTAKT_END').length>0   ||
     $v('P1112_GP_AUFTAKT_START')*1 != 0 ||
     $v('P1112_GP_AUFTAKT_END')*1 != 0 ||
    ){
    /* your code */
    }
    

    Kind regards
    Jari

  • Run a process page

    Hello

    I try to display a modal window containing the details of a record of my tabular presentation.

    So, I create a tabular form on the EMP table. I add an edit_link run a url to open my modal window: javascript: openModal ('EMP_DETAIL_MODAL'); s $ ('P1_EMPNO', '# EMPNO');

    My modal opens very well the region of EMP_DETAIL_MODAL and of P1_EMPNO field is filled in with the value of my account of the tabular presentation empno.

    But the other fields remain empty.

    I'm looking for a way to run the "Automatic line (DML) treatment" type page to fill out my form data.

    but I can't seem to find a solution.

    Can someone help me?

    I create a demo version here: apex.oracle.com/pls/apex/f?p=76607

    The username/password is demo/demo

    Thanks for your help.

    Laurent.

    Laurent,

    You can create another follow on dynamic action for this which can select in the database, and then return the columns to the page of your form elements.

    Here is an article for a tutorial that shows step by step the process. Building of dynamic in Oracle Application Express 4.1 action

    In a nutshell, you create a dynamic action that could be triggered by a change of P1_EMPNO point Page. The real action will be set the value with a defined Type of SQL query. Here you simply enter the select statement that you will get the columns needed to fill in the data. Filter in P1_EMPNO and make sure that P1_EMPNO is in the Page items section to submit.

    You must then select/list page elements that values will return to, in the order of the list of columns.

    Greg

  • Application of dynamic action appeal process

    Hello
    Is it possible to appeal to a process of Application named example: dynamic action on button click DC_TEST.
    I am able to call dynamic action on click of a button and have a plsql code run, but I want to call the APPLICATION PROCESS.

    Thanks for your help.

    Hello

    Create dynamic action that runs using the JavaScript code

    apex.server.process ( "DC_TEST", {});
    

    That will run your application on the application process
    http://docs.Oracle.com/CD/E37097_01/doc/doc.42/e35127/javascript_api.htm#BGBJEFDJ

    Kind regards
    Jari
    -----
    My Blog: http://dbswh.webhop.net/htmldb/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

  • How to call function of a process Page PL\SQL Javasrcipt

    Hello

    I have a javascript function say - function1 () defined in the Page header.
    I have a page PL\SQL process after the header.

    How can I call the javascript function - function1 () - of PL\SQL Page process.

    Thank you
    Deepak

    Hi Michael,

    I have a page PL\SQL process after the header.

    Since it's after the header (in the rendering phase) process, I think that this will call the JS? Please correct me if I'm wrong :-)

    See you soon,.
    Hari

  • Extra white space after the process page

    I'm trying to remove white space after the page is processed.
    Usually it doesn't bother me, but it doesn't bother with javascript.

    Explanation:
    1. I send an xmlhttp request to coldfusion to process.
    2 Coldfusion executes a stored procedure on an oracle database that returns results as XML.
    3 Coldfusion returns XML to the client: < cfoutput > #XmlParse (ajaxXML) # < / cfoutput >.
    4. the client (Javascript) runs the function that manage the data and returns an error because: " xml not at the beginning of the external entity declaration".

    I tried to use with the attribute cfsetting: enablecfoutputonly = "yes", but still the result is the same.

    Any idea or lead in the right direction would be greatly appreciated.

    If it's really the content of ajaxXML, then the above code and cfcontent should solve the problem.

    As follows:


    #Trim (ajaxXML) #.

Maybe you are looking for

  • Portege Z20T - B - 10 c - support in Ireland

    Hello world.I recently bought a PORTEGE Z20T-B - 10 c. I'm pretty happy with it.I came on line today to buy an extended warranty and it seems that none of the listed resellers/partners actually sell in my country (Ireland).Not much, I'll reach out to

  • A few questions on the Satellite U920t-100

    Hello I bought the Toshiba Satellite U920t-100. for this tablet, I have a few questions. simple install windows 8 Professional on the current installation?what driver, software installed and other toshiba? are the problems with it?There is something

  • Error 74 to unflatten string in a device helping custom interface hardware Inline

    Hello I am creating a custom device Interface material Inline to communicate on a bus series to Veristand. I want only to communicate via RS232 veristand channel values, I use flatten/unflatten to chain to transfer my data. I choose what it because V

  • HP Pavilion 15-N287CL

    I hope someone can point me in the right direction on a backlit keyboard for this laptop model (HP Pavilion 15-N287CL). I tried looking up parts guide and it gives some options for a standard keyboard (719853-001), but nothing for a backlit. I also t

  • Why Windows Yes _ _?

    could you do an operating system? I here you ask... No of course I can't do! CUS this isn't what I do, but u could think of a company of several billion pounds making the os would make things?... BUT NO!... the amount of time and money I spent on you