Option 2: Clear URL parameters jut before page is displayed

Is it possible to clear the URL parameters after they have
been used to
filter out recordsets, etc. but before the page is displayed
so that the URL
address does not have any url paramters ?
A

I did, thing is that it is using the 'insert' behaivor from
DW, I went to
the line where the Querystring is added to the URL and
commented it. That
did the trick.
A
"RobGT" <[email protected]> wrote in
message
news:ej1nkq$krp$[email protected]..
>
> Send them through a form POST instead of using GET?
> Cheers,
> Rob
>
http://robgt.com/ [Tutorials and
Extensions]
> Firebox stuff:
http://robgt.com/firebox
> Skype stuff:
http://robgt.com/skype
> SatNav stuff:
http://robgt.com/satnav
>
>

Similar Messages

  • Clear the Parameters on a Page

    Hi,
    Does anyone out there know who to clear the parameters on a page? I have users that input values into feilds on a page and when they press submit the results return. Now I want the users to be able to press another button to clear their inputs. The reset button does not work for this, it only resets the parameters to what they were when I pressed submit. I just need to know how to clear the parameters on a page. Please help!
    Thanks!

    try to add a button and put the following code in the controller. This is not a advisable approach in OAF , but it avoids the screen to be posted to the server even when clearing the input fields.
    StringBuffer resetScript = new StringBuffer("function formClear() {     ");
                   resetScript.append("     ");
                   resetScript.append("     for( i=0; i<document.forms[0].elements.length; i++) { ");
                   resetScript.append("          if(!document.forms[0].elements.readOnly){     ");
                   resetScript.append("          if (( document.forms[0].elements[i].type == 'text' ) || ( document.forms[0].elements[i].type == 'textarea' ) || ( document.forms[0].elements[i].type == 'password' )) {     ");
                   resetScript.append("               document.forms[0].elements[i].value = '';     ");
                   resetScript.append("          }     ");
                   resetScript.append("          if ( document.forms[0].elements[i].type == 'checkbox' ) {     ");
                   resetScript.append("               document.forms[0].elements[i].checked = false;     ");
                   resetScript.append("          }     ");
                   resetScript.append("          if ( document.forms[0].elements[i].type == 'select-one' && ( document.forms[0].elements[i].length != 0 )) {     ");
                   resetScript.append("               document.forms[0].elements[i].options[0].selected = true;     ");
                   resetScript.append("          }     ");
                   resetScript.append("     }     ");
                   resetScript.append("     }     ");
                   resetScript.append("     return;     ");
                   resetScript.append("}");
              pageContext.putJavaScriptFunction("formClear", new String(resetScript));
              OAButtonBean resetButton = (OAButtonBean) webBean.findIndexedChildRecursive("reset");
    if(resetButton != null)
    resetButton.setDestination("javascript:formClear('" + "');");

  • Use URL Parameters in WPC Pages

    Hi all,
    Is there anyway to pass url parameters when calling a wpc page? We would like to call a wpc page and pass a URL a parameter that would then be accessible to each individual component within the wpc page. Also, how can we read the url parameter in the XSLT for the component webforms? Any help would be appreciated.
    Thanks and Regards,
    Shibendra

    That would come within flex.
    In my case, there is a SAP CRM web application which has a push button. On click of this button, flex URL is called(ie., http://172.22.41.154/MH_Bluebook_Integration2.html). On click of that button I need to pass an Object ID, which is passed withing that flex URL, something like this:
    http://172.22.41.154/MH_Bluebook_Integration2.html?objID=abcd
    I need to receive 'abcd' in the flex. Any way we could modify the HTML wrapper to send this value to swf? 

  • JDev 11.1.2.1 Execute method (with bind variable) before page is displayed

    Hi All,
    I have a view object with a query that uses a bind variable. I drag the data control onto my .jsf page to create a table. I create a query method on a view scope bean. The query method uses the contents of one of the bean's attributes to set the bind variable for the query:
    vo.setNamedWhereClauseParam("CraIdBindVar", sessionBean.getCraId());
    I place a button on the page that invokes the query method and it populates the table. This is fine but I don't want the user to have to click on the 'query' button when they navigate to this page. I have found forums that discuss creating an AMImpl.jave method, creating a binding on the page, creating an executable for the binding. This works in that the method is executed before the page is displayed. However, the AMImpl method cannot call sessionBean.getCraid() to get the necessary data item to populate the bind variable.
    Is there a way to execute my view scope bean method before the page is displayed? Or perhaps a way for the AMImpl.java method to access the view scope variable?
    Thanks, Steve

    Steve,
    you can drag a method call activity onto the task flow. Then select the new method call activity and open the property inspector. Here you select the method from your bean in the method property. Now you first navigate to this method call activity and then to the page.
    Timo

  • Redirect page to x page= none of the url title of x page are displayed

    Just wondering if anyone knows how to help me. I host my
    pages .com, but have only registered the domain .co.uk elsewhere
    and redirect it to the .com domain. When i now access the .co.uk
    page, it redirects, but none of the url title of the .com page are
    displayed. Do you know how to correct this?
    Thanks

    .oO(lukey233)
    >Just wondering if anyone knows how to help me. I host my
    pages .com, but have
    >only registered the domain .co.uk elsewhere and redirect
    it to the .com domain.
    >When i now access the .co.uk page, it redirects, but none
    of the url title of
    >the .com page are displayed.
    Then it's not a redirect, but probably just a frame.
    >Do you know how to correct this?
    Can you post a link?
    Micha

  • URL parameters through logon page

    Hi experts,
    I've to add this new requirement to the logon page and I don't know what is the best choise.
    The scenario is the following:
    Some users with a generic portal user need access to the Portal without authentication. The solution was sending the authentication parameters (generic user + password + user addition data) encrypted and by post method. These parameters would be decrypted by the logon page and this would grant the access after an addition data validation. This works fine by post method (encryptation has not been developed yet) but I have a problem because the additional parameter is missed after log in. This parameter is used in some java WD applications in Portal.
    When I pass all these parameters by get method, all works fine. User is authenticated correctly and the WD application gets the additional parameter. I don't know why it's missing with the post method. Also I've tried to pass the additional data by get and the authentication parameters by post method, but also it's not working. Maybe I need to add some custom code to pass this data parameter to the WD applications.
    Does anybody know what could be the problem? Or if could I solve this scenario with another option? The anonymous authentication could be great but I need validate the additional data and hide the authtentication data and I don't know if this method is useful for this propose.
    Thanks a lot in advance.

    HI,
    I am not clear about your requirement. But I think setting up the required iView for Anonymous user and named anonymous users
    might help. Pl check
    http://help.sap.com/saphelp_nw04s/helpdata/en/cd/1aad4abcb98c4597f9e395a6b62f43/frameset.htm
    If your iView is a WD Iview then you can try two things. You can retrieve the parameters in WD using inbound plug
    http://help.sap.com/saphelp_nw04s/helpdata/en/42/c813b3d9cd6bb7e10000000a1553f6/content.htm
    or you can set the authentication of the wd application where it does not expect authentication
    http://help.sap.com/saphelp_nw04s/helpdata/en/09/a4d6a674bc1d4a9e74abf81bed3ef6/content.htm
    Srini

  • Why do I have to refresh 2 or 3 times before pages are displayed correctly?

    I just recently reformatted my laptop and installed a fresh copy of Windows 7 home premium 64-bit. Went through all the motions, blah blah blah.... Anyway, noow when i use firefox, the majority of the time my home pa't ge doesn't load certain elements, sometimes it says pages are unavailable (same screen as when your connection goes out), and then usually loads them correctly after refreshing 2 or 3 times. I have no idea what could be causing this. I don't think it's my ISP. Anyone have any ideas?

    A possible cause is security software (firewall) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    * https://support.mozilla.com/kb/Server+not+found
    * https://support.mozilla.com/kb/Firewalls
    *http://kb.mozillazine.org/Error_loading_websites

  • Unexpected URL parameters have been detected -- tried all options mentioned

    Hi Gurus,
    I am hitting the following exception "Unexpected URL parameters have been detected" when i try to run the tutorial page.
    Instance RUP level : RUP 7
    Jdeveloper version used : Patch 8751878 9I JDEVELOPER WITH OA EXTENSION ARU FOR 11I RUP7
    installation location : C:\JDev9
    JDEV_USER_HOME set to C:\JDev9\jdevhome\jdev
    user name and pwd set to my EBS login
    Project run time settings : Application short name : AK
    Responsibility Key : FWK_TBX_TUTORIAL
    double checked that the responsibility is assigned to my user in EBS
    DBC File : downloaded the file from $FND_TOP/secure , changed the guest login to my ebs login.and placed in directory
    C:\JDev9\jdevhome\jdev\system9.0.3.5.1453\oa\dbc_files\secure\fmscng3.dbc and gave the same path in the dbc file directory
    Profile options
    FND Function Validation Level - Error
    FND Validation Level - None
    Tried all the options in the below thread
    Unexpected URL parameters have been dete
    Tried setting the oc4j option to default ip also, but still getting the following error
    http://<host>/OA_HTML/AppsLocalLogin.jsp?requestUrl=APPSHOMEPAGE&cancelUrl=http%3A%2F%2Ffmscng3.hphc.org%3A80%2Foa_servlets%2Foracle.apps.fnd.sso.AppsLogin&errCode=FND_SSO_PHISH_ERROR&langCode=US&errText=You+have+insufficient+privileges+for+the+current+operation.&username=<EBS Usernaname>&s1=_zZV1GAvFZ06hcFzUtNhWA..
    Please help me
    Thanks
    Tom

    It does not give me any error , it just says unexpected URL parameters and asks me to login .
    These are the messages i get in jdev messages window
    [Starting OC4J using the following ports: HTTP=9009, RMI=23892, JMS=9247.]
    C:\JDev9\jdevbin\jdk\bin\javaw.exe -client -classpath C:\JDev9\jdevbin\j2ee\home\oc4j.jar;C:\JDev9\jdevbin\jdev\lib\jdev-oc4j.jar -Xbootclasspath/p:C:\JDev9\jdevbin\jdev\appslibrt\ojdbc14.jar;C:\JDev9\jdevbin\jdev\appslibrt\nls_charset12.zip -DFND_JDBC_STMT_CACHE_SIZE=200 -DCACHENODBINIT=true -DRUN_FROM_JDEV=true -mx256m -Doracle.j2ee.dont.use.memory.archive=false -Xverify:none -Doracle.j2ee.dont.use.memory.archive=true -Doracle.j2ee.http.socket.timeout=500 com.evermind.server.OC4JServer -config C:\JDev9\jdevhome\jdev\system9.0.3.5.1453\oc4j-config\server.xml
    [waiting for the server to complete its initialization...]
    Ready message received from Oc4jNotifier.
    Embedded OC4J startup time: 1031 ms.
    Auto-deploying OA Framework web application deployment descriptor (New server version detected)...
    Oracle9iAS (9.0.3.1.0) Containers for J2EE initialized
    TIME: runregion: initialization [0 ms]
    Tutalii: C:\JDev9\jdevbin\jdev\appslibrt\iasjoc.zip archive
    ICX DIAGNOSTIC: FND_TOP = C:\JDev9\jdevhome\jdev\system9.0.3.5.1453\oa\dbc_files\
    ICX DIAGNOSTIC: application_id = 601
    ICX DIAGNOSTIC: responsibility_id = 24742
    ICX DIAGNOSTIC: security_group_id = 0
    ICX DIAGNOSTIC: mEncryptedSessionID = NABGU12RzHcrxNu18A3C_dZr:S
    ICX DIAGNOSTIC: mSessionID = 65734022
    TIME: runregion: session and transaction creation [8421 ms]
    ICX DIAGNOSTIC: mTransactionID = 1221310558
    java.lang.IllegalArgumentException: Unknown signal: ALRM
         at sun.misc.Signal.<init>(Signal.java:126)
         at oracle.apps.fnd.framework.AppsDiagnosticsHandler.install(AppsDiagnosticsHandler.java:50)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.initializeSignalHandler(OAApplicationModuleImpl.java:474)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.<clinit>(OAApplicationModuleImpl.java:464)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:219)
         at oracle.jbo.common.java2.JDK2ClassLoader.loadClassForName(JDK2ClassLoader.java:37)
         at oracle.jbo.common.JBOClass.forName(JBOClass.java:141)
         at oracle.jbo.common.JBOClass.findCustomClass(JBOClass.java:153)
         at oracle.jbo.server.ApplicationModuleDefImpl.loadFromXML(ApplicationModuleDefImpl.java:828)
         at oracle.jbo.server.ApplicationModuleDefImpl.loadFromXML(ApplicationModuleDefImpl.java:771)
         at oracle.jbo.server.MetaObjectManager.loadFromXML(MetaObjectManager.java:517)
         at oracle.jbo.mom.DefinitionManager.loadLazyDefinitionObject(DefinitionManager.java:456)
         at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:313)
         at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:269)
         at oracle.jbo.server.MetaObjectManager.findMetaObject(MetaObjectManager.java:649)
         at oracle.jbo.server.ApplicationModuleDefImpl.findDefObject(ApplicationModuleDefImpl.java:232)
         at oracle.jbo.server.ApplicationModuleImpl.createRootApplicationModule(ApplicationModuleImpl.java:359)
         at oracle.jbo.server.ApplicationModuleHomeImpl.create(ApplicationModuleHomeImpl.java:91)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.createStaticAKApplicationModule(OAJSPApplicationRegistry.java:369)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.getStaticAKApplicationModuleSync(OAJSPApplicationRegistry.java:344)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.getStaticAKApplicationModule(OAJSPApplicationRegistry.java:333)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:867)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:511)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:432)
         at OA.jspService(OA.jsp:33)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    Thanks
    Tom
    Edited by: Tom Trever on May 2, 2011 8:16 AM

  • Does CF really auto-decode URL parameters passed to a page?

    CF docs and livedocs state that:
    quote:
    ColdFusion automatically decodes URL parameters that are
    passed to a page
    (for example, see the URLEncodedFormat tag description, last
    sentence of opening paragraph)
    However, if you have a url-encoded url parameters, as in
    ?var1=1%26var2=2 (%26 is url-encoded equivalent of &), and in
    your page you try to validate url parameters with <cfparam
    type="integer" name="url.var1"> or with isvalid("integer",
    url.var1) function, the validation will fail! Apparently, inside at
    least this tag and function Cf does not automatically decode url
    parameters... it sees the var1 declaration, but sees its value to
    be not 1, but 1&var2=2, which surely fails validation against
    type "integer"....
    This behaviour has been brought up in these forums several
    times now, but nobody has been able to explain how this relates to
    the CF docs statement... Any ideas, anyone? Is this an expected
    behaviour? Are the docs wrong? Does 'parameter', as in "url
    parameters", refer only to specific parts of query string and does
    not include url var name/value pairs separator? Apparently the same
    happens if you have "=" sign url-encoded, too...

    I will have to think on this, do some reading and try some
    experiments.
    But my first thought is that this is expected behavior. I
    would
    propose the purpose of URL encoding the ampersand(&) is
    so that it will
    be considered a part of a value, not its usual role of
    name-value pair
    separator. So in my mind this is the way it is supposed to
    work.
    val1=1&val2=2 : val1 is 1 and val2 is 2
    val1=1%26var2=2 : val1 is '1&var2' or '1&var2=2'
    I will have to explore this further.

  • Found 0 results for While browsing eBay, when I watch or bid on an item, and later view it again, many inches of white space appears before item appears. If I delete the clear recent history box, the pages will come up as they should for several times, th

    While browsing eBay, when I watch or bid on an item, and later view it again, many inches of white space appears before item appears. If I delete the clear recent history box, the pages will come up as they should for several times, then go back to a lot of extra white space. How can I prevent this? Thank you, Rick in English
    == This happened ==
    Every time Firefox opened
    == About a month ago

    As stated in 1.:
    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem.
    Obviously, it will not harm your computer provided you follow the instructions. However, if you don't post your results in the thread where you were given those instructions, then the person helping you cannot help you further. As he asks at the end, "please post the test results on Pastebin, then post a link here to the page you created."

  • Still Can't Figure Out Returning to Page with URL Parameters

    Hi,
    I am trying to figuring out how after submitting a form to
    return to a previous webpage with URL parameters in it.
    Any ideas?
    Thanks,
    Craig

    I am using dreamweaver and coldfusion. I have been searching
    everywhere for the answer so if you can shed some light on this
    that would be great.
    Thanks,
    Craig

  • Using URL Parameters in a PDF Form

    I built a form in LiveCycle Designer ES and I would like a couple of fields auto populated. The only way I could see doing this without having to purchase the LiveCycle Forms Server or another solution, is to embed the information in the URL.
    I found a blog post about it on Stefan Cameron's blog:  http://forms.stefcameron.com/2006/10/20/using-url-requests-in-pdf-forms/
    I was able to get this to work, but when I try to allow the user to save their form locally, the form information get cleared when they try to reopen it.
    I searched the NET and really couldn't find anything related to my problem.
    Does anyone have an idea about this or should I be looking at a different solution?
    Thanks,
    James

    I think that I was able to resolve this issue myself.  After opening the PDF with URL parameters, you need to manually enter data into a field before saving. After manually entering data in a field and saving, the form contains all of the data.

  • Using URL Parameters with HTTP Comms Channel

    Hi,
    I need to build a new interface (HTTP - RFC) which will use several URL parameters. I've created a HTTP communications channel and Sender Service and this works. I'm able to define several URL Parameters by checking 'Adapter-Sepcific Message Attributes' and then 'Apply URL Parameters' then specifying the individual parameters.
    This is straight forward so far but in usual SAP fashion the documentation on HTTP Comms Channels and URL Parameters is non existent. My question is how do I use these parameters once they are passed. I need to use the values as input parameters for the RFC which means I'll need to map these in the Integration Repository I can't find anything on SDN or SAP help that answers the question.
    I know I could include these values in the XML payload but that would mean my 'customer' would need to amend their application and I'd rather keep things as they are.
    Looking forward to your replies.
    Thanks in advance.

    May be this could help you to refference . .
    For each process template, you can define interactive or composite form reference objects that can optionally be executed at runtime.
    To be able to see and execute the reference object at runtime, you must add an appropriate runtime view.
    Prerequisites
    You can only attach standalone interactive forms to a process. For more information, see Interactive Form Types.
    Activities
    To attach an interactive form to a process:
           1.      Open the gallery and select a process template. To open its design time, choose Open…
           2.      To switch to edit mode, choose  (Edit).
           3.      Open the Forms tab page.
           4.      Choose Add and select the type of reference object you want to add. You can choose between Callable Object and Development Object.
    Browse and select the reference object, and choose Add once again.
           5.      Repeat step 4 to add more objects.
           6.      To define parameter mapping, select an entry and choose Map Parameters. Select a parameter from the left-hand table, and then select the parameter you want to map from the right-hand table. This groups the input parameters of the form reference object to the relevant input parameters of the process.
    If the process does not define input parameters, you can set default values.
           7.      When you have defined the required mappings, choose Done.
           8.      Whenever a newer version of the form reference object is available, its status on the Forms tab page changes to  (Deprecated). To update the object, select it from the list and choose Update. The status changes to  (Active).
    Parameter mapping is preserved unless the parameters of the new object version are different. In this case, you need to define mappings again.
           9.      Finally, choose  (Save).

  • Source of URL parameters when launching the hap_document

    Hi,
    I have been working on the 'Status Overview' iView in the Employee Performance Management module. The source of the table in the iView is the MSS_HAP_STATUS data view in OADP. I have been able to edit and shuffle the columns through the 'define columns' options in the OADP data provider. Some of the columns are shown as links since they are associated with Service Keys which map back to Resources in the homepage framework. The resource 'MSS_MBO_DOCUMENT' is associated with the some of the columns of the Status Overview page. When I click on the link it launches the HAP_Document BSP application with some dynamic URL parameters like
    Application=HAP_DOCUMENT
    PageId=document_portal.htm
    DynamicParameter=NEW_APPRAISER_ID......
    I have been trying to debug the proxy class CL_HRWPC_SER_MBO_PARAMS associated with the service MSS_MBO_DOCUMENT to look for the dynamic URL parameters but didnt find them all in there. I did find some of them but not in the form of the parameter string it generates in the URL.
    Please let me know if I am looking in the right direction. Any help would be really appreciated.
    Regards,
    Prathamesh

    Hi,
    Check SAP note 1505832.
    Thanks
    Sunny

  • Help with URL Parameters and HTML DataSet please.

    Hello everybody!
    Looking at the example page: "Using URL Parameters to Control Data Regions", towards the bottom it gives an example of "Set by Product Name", from an XML DataSet using the following sample code:
        //Data set for the second example. var ds2 = new Spry.Data.XMLDataSet("../../demos/products/products.xml", "products/product");    //If the URL parameter 'product' has a value, set the XPath that includes a filter and then load the data. if (params.product){    ds2.setXPath("products/product[name = '"+params.product+"']");    ds2.loadData(); }
    Can anyone please explain how to amend this to work with a HTML Dataset rather than XML?
    The first example on the page (Set by RowID) works unchanged for the HTML DataSet, but I don't know what I should replace the 'setXPath' line with.
    I see this has been asked before, but I'm afraid I can't find any answer that works (or, more often, that I can understand properly!)
    Grateful for any suggestions.
    Len

    Wow! Thanks Ben.
    I hadn't thought about using Stacked Containers.
    I'll test this out tonight and let you know how I get on.
    Cheers,
    Len
    A few days later and at last I've been able to test your suggestions.
    I think I must be doing something wrong as the links and content don't work at all:
    http://www.myosanthe-bernhard-huber.com/html/stack1.php
    I know that the stacked containers do work (http://www.myosanthe-bernhard-huber.com/html/stack0.php), so I guess there are some errors in the coding somewhere.
    Would you mind reviewing, please?
    The important thing for me (in this case, anyway) is to get the called page's content using its 'Ref', and I'm not sure what benefit there is in using stacked containers as opposed to master-detail containers.
    The master-detail method works reasonably well for me at
    http://www.myosanthe-bernhard-huber.com/html/fotoalbum.php and sub-pages.
    Perhaps I am betraying my lack of knowledge, but as I said in my original post, I think that I just need the HTMLDataSet equivalent to:
        //Data set for the second example.
    var ds2 = new Spry.Data.XMLDataSet("../../demos/products/products.xml", "products/product");
       //If the URL parameter 'product' has a value, set the XPath that includes a filter and then load the data.
    if (params.product){
       ds2.setXPath("products/product[name = '"+params.product+"']");
       ds2.loadData();
    which as you can see uses an XMLDataSet, but does exactly what I need.
    (see http://labs.adobe.com/technologies/spry/samples/data_region/DataWithURLParams.html)
    Thanks again for your help, Ben.
    Len
    Message was updated by: ec1lennie

Maybe you are looking for

  • Import multiple PST files for a single user into archive mailbox is failing

    Most of our users that have PST files have between 2 and 10 separate PST files named by either subject or year. I am trying to find a way to automate using New-MailboxImportRequest to import ALL of the psts found within a user's shared folder. I foun

  • ADF UIX programatic data binding

    Oracle ADF UIX Developer's Guide mentions the possibility to use the UIX framework in Java, to create new objects or alter the existing ones. E.g. we can create a table using a construct like: TableLayoutBean tlb = new TableLayoutBean(); The same doc

  • Kernel upgrade problem with unmounted /boot

    Yeah, you can probably infer from the title what this is about.  Of course my problem was fixed pretty easy (booted into the arch rescue/install disk). Basically if your /boot is not automounted (like mine, i have noauto set), and you upgrade your ke

  • Photoshop Elements not loading and shows error

    I have a sony vaio lap with win-8 OS and the PS Elements licensed version came built in and now the thing is my friend has unknowingly uninstalled PS and now i have restored it by running the system restore. But the problem is now it is restored but

  • After Effect 7.0 no longer opens

    We seem to be going around in circles. I have AE 7. not CS2 This page is all about CS2: http://helpx.adobe.com/x-productkb/policy-pricing/creative-suite-2-act ivation-end-life.html Which link should I follow to get the new serial number ? I have AE 7