Can't refer to it

Good day all,
In Jdev 11.1.1.5, after I’ve added this to the Page Def of the jsf
<parameters>
<parameter id="par_user" value="">
</parameter>
</parameters>
why do I encounter this
javax.el.ELException: java.lang.NullPointerException
when I try to refer to it in the bean like this?
AttributeBinding attr =
(AttributeBinding)bindings.getControlBinding("par_user");
Edited by: HuaMin on May 2, 2012 6:14 PM

Here is an example.
my page definition source is
<?xml version="1.0" encoding="UTF-8" ?>
<pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel"
                version="11.1.1.56.60" id="untitled1PageDef"
                Package="view.pageDefs">
  <parameters>
    <parameter id="name" value="Mohammad Jabr"/>
  </parameters>
  <executables>
    <variableIterator id="variables"/>
  </executables>
  <bindings/>
</pageDefinition>my bean is
import java.util.Map;
import oracle.adf.model.BindingContext;
import oracle.adf.model.binding.DCBindingContainer;
import oracle.binding.BindingContainer;
public class Test {
    public Test() {
    public BindingContainer getBindings() {
        return BindingContext.getCurrent().getCurrentBindingsEntry();
    public String getPageParamater() {
        // Add event code here...
        DCBindingContainer bc = (DCBindingContainer)this.getBindings();
        Map map = bc.getParametersMap();
        String name=map.get("name").toString();
        System.out.println("name param is " + name);
        return null;
}You need to assign a value for your par_user parameter.

Similar Messages

  • In Oracle 11g query, how can I refer to results of different column ....

    I want to be able to refer to the results of C1 in another column expression C2. I get ORA-00904: "C1" invalid identifier, which makes sense. I know that I can repeat the entire very long CASE again in my C2 DECODE, but wondering if I can save the server many extra cycles from evaluating the CASE again.
    SELECT [very long nested CASE statements] as C1, DECODE(C1,1,'YES','NO') as C2 FROM TABLE
    Many thanks,
    AK

    Hello
    You can't refer to the alias at the same level so you either have to repeat the CASE statement or wrap it in an inline view and refer to the alias in that. i.e.
    SELECT
        c1,
        DECODE(C1,1,'YES','NO') as C2
    FROM
            SELECT
                [very long nested CASE statements] as C1
            FROM
                FROM TABLE
        )HTH
    David

  • How can I refer to the PhotoShop Object library dynamically depend on the release of PhotoShop?

    Recently, I make a program, now I face a big program:
    I make the program by visual basic and photoshop script , but my client have different release of Photoshop, for example : photoshop 7.0 cs and cs2. I know every release of PhotoShop have ist own Object library, but in visual basic 6.0, I can only refer to one PhotoShop Object library. for example: if I refer to Photoshop 8.0 Object library, if my clients release of Photoshop is 7.0. there will be a error message : Run-time error '429 ( cant create object) Run-time error '430(Class does not support Automation or does not support expected interface), How can I refer to the PhotoShop Object library dynamically depend on the release of PhotoShop?
    my email is : [email protected] .
    any suggestion?

    Please read, and reply back here with information https://forums.adobe.com/thread/1499014
    -and try some steps such as changing browsers and turning off your firewall for downloads

  • How can I  refer an xml  Schema that was registred in Oracle xml DB

    How can I refer an xml Schema that was registred in Oracle xml DB, from other xml schema?
    I have the follow schema,:
    <?xml version="1.0" encoding="AL32UTF8"?>
    <xsd:schema targetNamespace="schemastipostasa.xsd"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xdb="http://xmlns.oracle.com/xdb/XDBSchema.xsd"
    elementFormDefault="unqualified" version="1.0"
    attributeFormDefault="unqualified">
    <xsd:simpleType name="codigosType" xdb:SQLType="NUMBER(4)">
    <xsd:restriction base="xsd:positiveInteger" >
    <xsd:totalDigits value="4" />
    </xsd:restriction>
    </xsd:simpleType >
    <xsd:simpleType name="integerUnoType" xdb:SQLType="NUMBER(1)">
    <xsd:restriction base="xsd:int" >
    <xsd:totalDigits value="1" />
    </xsd:restriction>
    </xsd:simpleType>
    <xsd:simpleType name="condicionType" xdb:SQLType="VARCHAR2(1)">
    <xsd:restriction base="xsd:string">
    <xsd:enumeration value="S" >
    <xsd:annotation>
    <xsd:documentation>Condicion si es S</xsd:documentation>
    </xsd:annotation>
    </xsd:enumeration>
    <xsd:enumeration value="N" >
    <xsd:annotation>
    <xsd:documentation>Condicion no es N</xsd:documentation>
    </xsd:annotation>
    </xsd:enumeration>
    </xsd:restriction>
    </xsd:simpleType >
    </xsd:schema>
    I registred the schema written above with the folowwing pl*sql :
    DECLARE
    direc varchar2(2000);
    nombreArch BFILE;
    mens varchar2(2000);
    BEGIN
    direc:=uso_comun.pack_mail.fun_valor_param('TASA','DIR_DBSERVER');
    nombreArch:=bfilename(direc,'schemas_tipos_tasa.xsd');
    DBMS_XMLSCHEMA.registerSchema(
    SCHEMAURL => 'http://xmlns.oracle.com/tasa/schemas.tipos.tasa.xsd',
    SCHEMADOC => nombreArch,
    LOCAL => TRUE,
    CSID => nls_charset_id('AL32UTF8'));
    dbms_lob.CLOSE(nombreArch);
    dbms_output.put_line('salio sin cancelar');
    exception
    when others then
    mens:=sqlerrm;
    dbms_lob.CLOSE(nombreArch);
    rollback;
    raise_application_error (-20001,'en registro shcema='||mens);
    END;
    Then, I want to register the following schema, that mention de schema above:
    <?xml version="1.0" encoding="AL32UTF8"?>
    <xsd:schema targetNamespace="schema.repuesto.xsd"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xdb="http://xmlns.oracle.com/xdb/XDBSchema.xsd"
    xmlns:tns="http://xmlns.oracle.com/tasa/schemas.tipos.tasa.xsd"
    elementFormDefault="qualified" version="1.0"
    attributeFormDefault="unqualified" >
    <xsd:element name="PRECIORENG" type="preciorepType" />
    <xsd:complexType name="preciorepType" >
    <xsd:sequence minOccurs="1" maxOccurs="unbounded">
    <xsd:element name="CODIGO_MARCA" type="tns:codigosType" />
    <xsd:element name="ORIGEN_PRECIO" type="tns:integerUnoType" />
    <xsd:element name="INGRESO_POR_FALTANTE" type="tns:condicionType" />
    </xsd:sequence>
    </xsd:complexType>
    </xsd:schema>
    But when a run the following script whith the same db-user:
    DECLARE
    direc varchar2(2000);
    nombreArch BFILE;
    mens varchar2(2000);
    BEGIN
    direc:=uso_comun.pack_mail.fun_valor_param('TASA','DIR_DBSERVER');
    -- nombreArch:=bfilename(direc,'prueba_schema_seis.xsd');
    nombreArch:=bfilename(direc,'Schema_repuesto_nuevo.xsd');
    DBMS_XMLSCHEMA.registerSchema(
    SCHEMAURL =>'http://xmlns.oracle.com/tasa/schema.repuesto.xsd',
    SCHEMADOC => nombreArch,
    LOCAL => TRUE,
    CSID => nls_charset_id('AL32UTF8'));
    dbms_lob.CLOSE(nombreArch);
    dbms_output.put_line('salio sin cancelar');
    --commit;
    exception
    when others then
    mens:=sqlerrm;
    dbms_lob.CLOSE(nombreArch);
    rollback;
    raise_application_error (-20001,'en registro shcema='||mens);
    END;
    tell me the error: ORA: 01031, insufficient privileges!!!!, what’s wrong??,

    Hi,
    To register schema, you require XDBADMIN system privilege granted to the user.
    Please verify this and retry.
    Rgds,
    Rakesh Tripathi

  • How can i refer to the parent window of the window containing an applet ?

    Hi all,
    I m stuck up with something. I have a web page say 'page1' which has a link that opens up a popup window. This popup say 'page2' window has an applet. On clicking particular pins on the applet i need to
    direct page1 to another URL & close the popup window. i hv tried this code.
    URL url = new URL(applet.getCodeBase(), path);
    AppletContext appletcontext = applet.getAppletContext();
    appletcontext.showDocument(url, "content");
    JSObject win = JSObject.getWindow(applet);
    win.eval("alert(\"Do u wnat to close!\");");
    win.eval("window.close()");
    This code opens up another window on click of the pin, & shows an alert before closing the popup window. On using
    appletcontext.showDocument(url, "_parent"); or
    appletcontext.showDocument(url, "_top");
    The window containing applet gets refreshed with the URL but not page1.
    How can i refer so to page1 from the applet.

    You don't show your code for what parent or top are, but in an
    applet, you must stick with relative links. Once you have the
    appletcontext, use a relative path from there:
    In the snippet below, docName is a relative path, i.e. ../up/above
       * Displays the specified document in the Web browser.
       * @param docName String pathname of document to download from Webserver
       * @return void
      private void fetchDocument(String docName) {
         AppletContext ctx = getAppletContext();
         java.net.URL serverURL = getDocumentBase();
         java.net.URL codeURL   = getCodeBase();
         java.net.URL docURL = null;
         try {
            docURL = new java.net.URL(codeURL, docName);
         catch (java.net.MalformedURLException err) {
            System.out.println("unable to compute URL from (" + serverURL + ", " +
                               docName + ")");
         if(this.bDebug)
           System.out.println("Open document: " + docURL.toString());
         ctx.showDocument(docURL);
      }

  • HT1689 Hi, please can someone refer me to an e-mail address whereby I can request an Apple Technician to assist me with a query I have with my iPhone 4s and iTunes and syncing with a new PC? thanks

    Hi, please can someone refer me to an e-mail address whereby I can request an Apple Technician to assist me with a query I have with my iPhone 4s and iTunes and syncing with a new PC? thanks
    <Email Edited By Host>

    There is no email support. Either call AppleCare or use this:
    http://www.apple.com/support/iphone/contact/

  • Why we can't refer domain as data object

    Hi
    we can refer dataelement as data object i mean to say
    data kunnr1 type char10.
    But why we can't refer domain like that means
    data kun1 type text16.
    here text16 is the domain and char10 is the dataelement.
    please give some exact answer to this.
    regards
    venkat

    Hi,
    Domains: Domain is the central object for describing the technical characteristics of an attribute of an business objects. It describes the value range of the field.
    It  defines technical attribute of a field like value/base table , data type , length, value range.It can be reused.
    Data Element: It is used to describe the semantic definition of the table fields like description the field. Data element describes how a field can be displayed to end-user. It defines semantic attributes of a field like description text (label) , domain , F1 Documentation.
    Data Element - Describes the business function of a table field. Its technical attributes are based on a domain, and its business function is described by its field labels and documentation.
    data element is described by domain. and we can use the domain in many dataelements.
    regards
    Thirumaran k

  • Can anyone refer me to a good repair facility for an Apple Cinema HD Display 23 in? Like other displays of this model, it has an internal short that causes a flickering display.

    For several years I have had a flickering or black display problem with my Apple Cinema HD Display 23 inch, model M9178LL/A. Like other displays of this model production it has an internal short that causes the flicker and burns out power adapters. I ahve taken it to the Apple store several times and they just kept selling me replacement power adapters instead of fixing the short. At my recent visit, they told me that they no longer support this model and that I have to find a third party repair facility.
    Can anyone refer me to a reputable location who can do the correct repair. There are discussions on the Internet how to work around the short problem with electrical tape on the middle connector pins, or how to open the display to fix it myself, but I do not have the eyesight, skills or equipment to do this correctly.
    Thank you.

    In continuing my research on this topic, I found this article:
    http://support.apple.com/kb/TS5198
    Short version, the 23" Cinema HD is among one of several older "vintage" Apple displays that are no longer supported under Mavericks. No brightness control, and it's likely to not work reliably at all. I can't say why I was able to use it for as long as I did with no problems. I take all this to mean that the display itself works fine, but not with my new MBP Retina.
    Though a tempting excuse to spend another grand on a 27" Apple Thunderbolt display, I opted for a $250 HDMI monitor from Fry's instead.

  • Can you refer to the original host name when using a challenge redirect?

    I have an authentication scheme that uses a challenge redirect to cause authentication to happen using https instead of http. However, this seems to break some of our monitoring scripts because now the credential challenge is coming from a different host name. Is it possible to refer to the original host name with some type of variable in the challenge redirect parameter? Below is an example:
    1. User accesses secured URL at http://appstenv2.company.com/testurl
    2. This webserver is hosting several aliases (appstenv2.company.com, appstenv4.company.com, appstenv6.company.com) and has a main name of appsdev.company.com - but is a single apache webserver where there is an application server plugin installed which will route to the desired application server environment based on the original hostname. So if a user accesses it with a name of appstenv2.company.com/testurl they will be routed to the "test 2" environment application server. If they access it as appstenv6.company.com, they would be routed to the "test 6" environment application server.
    3. This webserver listens on both http and https.
    4. The current challenge redirect can only redirect to a specific URL so it is set to "https://appsdev.company.com" which works fine interactively but the recorded monitoring scripts suddenly see a new hostname doing the prompting for credentials even though it is the same webserver - just a different alias.
    5. If possible, I would want to do the redirect in a relative fashion rather than absolute by using the original hostname from the URL being accessed. So, if the user was accessing http://appstenv2.company.com/testurl, I would like to redirect to https://appstenv2.company.com for the basic authentication. but with the same authentication scheme, if the user accesses http://appstenv6.company.com/testurl, I would want the challenge redirect to go to https://appstenv6.company.com. I'm hoping it's possible to use some system variable like SERVER_NAME to do this.
    Challenge Redirect: https://$SERVER_NAME
    Does anyone know if that is available in OAM 10.1.4.3 or some other way to accomplish the same thing with a single authentication scheme?

    No, there are not multiple policies - the host names for all aliases on that single webserver are together in a single host identifier. And I realize I can only have a single challenge redirect, I just want to use a variable to redirect to the host name that was accessed as opposed to a static name.

  • Can not refer to a field in the structure INCLUDE

    Hi gurus,
    I have tried to declare an internal table like ( SAP standard )
    DATA: BEGIN OF OBJECT_TAB OCCURS 0.
            INCLUDE STRUCTURE RQMQMEL1.
    DATA:   SELECTED,
            PM_SELECTED TYPE PM_SELECTED,
            LIGHTS,
    "add some more fields
          END OF OBJECT_TAB.
    But then i can not reference to this structure for the field QMNUM in the INCLUDE STRUCTURE RQMQMEL1.
    I refer by l_qmnum = object_tab-qmnum . It show an error message like " This field can not be found in this table"
    Could you suggest me a solution for this
    Thanks

    Hi,
    Sorry for the wrong suggestion.  Please check the help of Include. It specifies as follows:
    Even if the structure rec that you want to define contains extra components, do not use
    DATA: BEGIN OF rec,
            INCLUDE STRUCTURE s.
    DATA:   ...
          END OF rec.
    Instead, use
    DATA: BEGIN OF rec,
            rec LIKE s,
          END OF rec.
    You can then address s as a substructure of rec.
    Note
    Although "INCLUDE STRUCTURE s." expands the substructure s into its components, its alignment remains unchanged. This means that there may be extra fields inserted as padding before the first component or after the last component of s within rec.

  • Can we refer to any libraries from the BPM project?

    Hi,
    I am trying to create some BPM processes using the studio. And i wanted to refer some jar files for it. Is there any way how we can do that?
    I tried adding the jar files through the catalog. But i am not able to add some big jar files. It is throwing the OutOfMemory errors.
    Anybody please help me how to resolve that?
    Also please tell me if we can refer some external libraries?
    Can we prepare some XMLObject from a string and validate it against the schemas/xmlbeans? Is there a way in BPM to do that?
    Thanks & Regards
    Prakash.

    How much memory do you have on your machine? Are you using a VM environment? If so, how much physical (not virtual) memory do you have dedicated.
    The logic below is used to convert a String to an XML object if you haven't first introspected the XML's XSD.
    String xmlString;
    Fuego.Xml.XMLObject xmlObject;
    // Set XML String
    xmlString = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" +
                         "<invoice>" +
                             "<customer>John Doe</customer>" +
                             "<orderdate>May 26, 2009</orderdate>" +
                             "<shipDate>May 27, 2009</shipDate>" +
                             "<serviceDescription>SOME SERVICE</serviceDescription>" +
                             "<serviceAmount>1000.0</serviceAmount>" +
                             "<taxes IVA=\"21%\">210.0</taxes>" +
                             "<total>1210.0</total>" +
                         "</invoice>";
    // Convert XML String to XML Object
    xmlObject.load(xmlText : xmlString);
    // Display values
    display(xmlObject.selectString(xpath : "customer"));Probably more what you're looking for is to first introspect the XSD for the XML (create a new module in the catalog ("MyModule" in the logic below) -> right mouse click the module -> click "Catalog Component" -> "XML Schema"). Once you've introspected the XSD, create an heir object by first expanding the XML schema you just introspected in the catalog -> right mouse click the highest level node in the XSD (e.g. "Invoice" in the XML shown below) -> click "Create Heir" and give it a name (e.g. "MyInvoice" in the logic below). You could then use the heir's load() method to load and validate the string going into the XML object like this:
    String invoiceString;
    MyModule.MyInvoice myInvoice;
    // Set XML String
    invoiceString= "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" +
                         "<invoice>" +
                             "<customer>John Doe</customer>" +
                             "<orderdate>May 26, 2009</orderdate>" +
                             "<shipDate>May 27, 2009</shipDate>" +
                             "<serviceDescription>SOME SERVICE</serviceDescription>" +
                             "<serviceAmount>1000.0</serviceAmount>" +
                             "<taxes IVA=\"21%\">210.0</taxes>" +
                             "<total>1210.0</total>" +
                         "</invoice>";
    // Convert the invoice XML String to Invoice XML Object
    myInvoice.load(xmlText : invoiceString);Dan

  • Can we refer C# dll in a plug-in application

    Hi,
             I want to refer a C# dll (for some User interface purpose) in a plug-in application.
             For that i applied all the necessary settings to the project(like /clr option) and it was complied fine and added plug-in menuitem to acrobat window
             Then i added the referrence to the C# class library and in plug-in dialog creation code i tried to get an instance of that class object(using gcnew)
             but it is failing there to get the instance of that class saying file not found error.
             Is there any way to add C# dll reference and to get object in a plug-in application, and how to do it.
             Can anybody help me on this?
    Thank you,

    C# DLL is loadable from plugin only it is placed on a same folder with acrobat.exe.
    To avoid this problem,
    1) Install DLL as GAC.
    2) Catch AppDomain.AssemblyResolve event from the plugin, and return Assembly object that is manually loaded using Assembly.LoadFrom().

  • Can not refer to main frame as not in package

    I made my frame by simply typing "new ProgramProj();" under main string args which worked fine (well actually my lecturer did it like that) .
    I've tried to copy the layout of "normal" layout by getting the content pane, etc. but then I get an illegal argument exception (cannot add window to a container)...Is there a way to keep this method and be able to refer to this frame from another frame because I need to set the text of a label on the main frame from another frame under the action listener:
            if(event.getSource() == cmdSaveSettings) {
            if(txtPlayerOneName.getText().equals(emptyText)) {
                 JOptionPane.showMessageDialog(null, "alert", "Please enter player one's name", JOptionPane.ERROR_MESSAGE);
           else {
                playerOneName = txtPlayerOneName.getText();
                ProgramProj.lblplayerOneName.setText(playerOneName); //ProgramProj is the file name that cannot be found
           }I've added the action listeners but nothing happens. Would really appreciate the help, thanks in advance.

    Cleo123 wrote:
    So are you saying that if I use a JOptionPane as a frame I won't have any trouble retrieving the data inputted as I will not have to specify which frame I want the data to go to because it will be a option pane OF the main frame?If the JOptionPane holds a JPanel that you have a reference to, then you can get information out of the JPanel easily.
    I've used a separate frame frame because I gather a lot more information which takes a page such as a colour chooser for the counter they want, (connect 4), option boxes for the grid size they want, combo box for the shape of the counter, sound and time check boxes and then text fields if they want a timer handicap...So I thought it best for it to be more that a message box as I wouldn't want a load of message boxes requesting one piece of data at the time. You can get your info all together with a JOptionPane.
    For instance what if you had a JPanel (and enum) that looked like so:
        enum Difficulty
            EASY("Easy"),
            MODERATE("Moderate"),
            DIFFICULT("Difficult"),
            VERY_DIFFICULT("Kick Ass");
            private String text = "";
            private Difficulty(String text)
                this.text = text;
            @Override
            public String toString()
                return text;
        class PrefPanel extends JPanel
            private JTextField nameField = new JTextField(20);
            private JComboBox difficultyCB = new JComboBox(Difficulty.values());
            public PrefPanel()
                JPanel labelPanel = new JPanel(new GridLayout(0, 1, 10, 10));
                JPanel dataPanel = new JPanel(new GridLayout(0, 1, 10, 10));
                labelPanel.add(new JLabel("Name: "));
                dataPanel.add(nameField);
                labelPanel.add(new JLabel("Difficulty: "));
                dataPanel.add(difficultyCB);
                setBorder(BorderFactory.createEmptyBorder(5, 5, 25, 5));
                setLayout(new BorderLayout(10, 10));
                add(labelPanel, BorderLayout.WEST);
                add(dataPanel, BorderLayout.CENTER);
            public String getNameText()
                return nameField.getText();
            public Difficulty getDifficulty()
                if (difficultyCB.getSelectedIndex() >= 0)
                    return (Difficulty)difficultyCB.getSelectedItem();               
                else
                    return null;
        }You could then show the JPanel in a JOptionPane and retrieve the info easily like so:
            public void actionPerformed(ActionEvent event)
                boolean preferencesObtained = false;
                PrefPanel prefPanel = new PrefPanel(); // here's the JPanel object
                while (!preferencesObtained)
                    int result = JOptionPane.showConfirmDialog(
                            GetNameMain.this, // this holds a reference to the JFrame or other JComponent
                            prefPanel, // place the JPanel object in the JOptionPane
                            "Select Preferences",
                            JOptionPane.OK_CANCEL_OPTION,
                            JOptionPane.PLAIN_MESSAGE);
                    if (result == JOptionPane.OK_OPTION)
                        if (!prefPanel.getNameText().isEmpty())
                            // get the information from the PrefPanel object and place into
                            // variables of choice
                            name = prefPanel.getNameText();
                            nameLabel.setText(name);
                            difficulty = prefPanel.getDifficulty();
                            difficultyLabel.setText(difficulty.toString());
                            preferencesObtained = true;
                        else
                            JOptionPane.showMessageDialog(GetNameMain.this,
                                    "Please fill all data fields", "Incomplete Data",
                                    JOptionPane.ERROR_MESSAGE);
                    else // cancel pressed
                        preferencesObtained = true;
            }

  • Can I refer to a file insider a .JAR archive with an instance of File?

    Hi,
    I was wondering if it is possible to refer to a file stored inside a .JAR file just as if it was on a regular folder by using an instance of the java.io.File class. Otherwise, how can one do that?
    Essencially what I need is to check if a particular class file is contained inside a .JAR archive.
    Best regards,
    Norberto

    http://java.sun.com/j2se/1.4.2/docs/api/java/util/jar/JarFile.html
    See the entries() method to get a list of everything in the jar file. Most of the time the only thing you would want to do with a File is read the bytes from it, which you can do easily using the JarFile class.

  • If I made a 'one page website' can I refer directly to a sub page

    Hi all,
    I am currently designing a new website and are considering a
    Spry style 'one page website' vs. a more 'traditional model' with
    individual pages that includes content for header, menu etc. via
    server side includes so they can be executed in there own right.
    I love the snappy smooth user experience that I would be able
    to create but I am wondering how I could send someone a link to a
    particular sub section (ie. currently I would sent
    http://www.domain.com/about_us.html
    and it would work nicely. In the 'one page website' the sub pages
    only get fully formatted if loaded into the panel.
    What I would like to do is to create a similar direct
    reference capability. Have anyone done something similar. I was
    thinking of perhaps having a parameter on the url:
    http://www.domain.com/index.html?about_us.
    This should then set the content of the panel on load.
    If anyone has done something like this, I would greatly
    appreciate it if they could share technical details. This seems to
    be the last large barrier for me before going to this approach.
    Thanks in advance.

    there are someway to do this
    1.you could use old JS trick to hide & show element based
    on element id (in your case maybe hiding a big div that hold 1
    page), example :
    <a name="aboutus" id="aboutus"
    onclick=showAbout()>About Us</a>
    <div id="aboutDiv">
    <!-- this will contain lot element -->
    </div>
    and for JS part (on <head>):
    <script>
    function showAbout()
    document.getElementById("aboutDiv").style.display = "block";
    //show about div, you could use "block" or "inline"
    document.getElementById("homeDiv").style.display = "none";
    //hide home div
    .... //etc hide other element
    </script>
    ofcourse there could be many enhancement for this
    2. second way was to call Spry LoadUrl() function and give
    the callback, you don't need actually request anything using this,
    you can use this to load
    All the elements(DOM) on the page you request and set the
    callback for it
    refer to spry manual/example
    3. third way was using spry tab panel widget, you can
    re-style the CSS so it seem seamlessly integrate into your page :D
    4. last but not least, using traditional iframe should help,
    but notice this could be problematic if you use Session/Cookie for
    your page

  • Can I refi my car or should I wait? Home buying in Dec.

    Wanted to get everyones thoughts on this. Would it be wise to refinance my vehicle now, like on Monday, if I am planning to buy a house in December? Im currently in my vehicle at a rate of 14% and can get the refi done for about 3%.  Thats a large savings over the term of the loan and would decrease my monthly payments freeing up some cash to afford a little larger mortgage payment. How would that be viewed by the mortgage lender?  I know obtaining new credit prior to buying a home is a no no.  But if it saves money over the long term and increases monthly cash flow to get more home is it a justifiable move? I will probably start the pre-qual process for the home in mid October hoping to close on something before the year ends.  Feedback is appreciated.

    Refinancing your vehicle is a good move for your DTI and a good financial move. It may or may not affect your FICO much, but it will be better for you in both the short run and the long run. I say go for it. You will probably have to write a letter of explanation for the refi inq but just explain exactly what you have here - better loan with better terms.  

Maybe you are looking for

  • $300 /month for 4 conecutive months in BEx Query Designer

    Hello. Iu2019ve a business requirement to monitor customer spending habit. The report should display all customers who have spent more then $300 per month for 4 months consecutively. Please help Thanks in advance

  • Process.exitValue() ??

    Hello, I have a runscript method in a java class. The method will return the exitValue after calling the runtime.exec(). Since I have to capture the exception, which int value can I return to indicate the exception? I checked the javadoc it only says

  • Capture generated html output from jsf page in bean

    Hi Member, I have need to capture the html output coming form jsf page. means aftr rendering what html is displayed before user, we have need to get it in programm. like if we use: <h:dataTable......> <h:colum>heloo</h:column> </h:dataTable> then the

  • How to configure file type

    Hello, can I get the document, how to cofigure the file types? Is dms supporting design documents?

  • Poor signal/loss of channels

    Hello all. I recently lost BBC1 due to 'poor signal/lost connection' but all other channels (including BBC) were ok. The next day ITV1 channel lost due to same issue (but again, not all ITV channels). Checked aerial leads ok which they were. Just don