Please, help the beginner with navigation

Hello to everyone!
I have found similar questions from other users, but they were not answered. May be, the question is very stupid? However, there's nobody else who I can ask.
So, user Wojo had almost the same trouble:
"I have a hyperlink that has an action attached, say hyperlink_action. I have set target="_blank" for this hyperlink because I want the page to be pulled up in a different window. When I click on the hyperlink, the event handler (hyperlink_action) is called and the navigation.xml tells the right page to display in a new window! Everything is good so far. However, when I go back to the parent window and click on any other button or link (ANY ONE), then the hyperlink_action handler is called first followed by the event handler for the button or link I clicked on. This only happens the first time I click on the parent page again. ..."
Please, explain why "hyperlink_action()" is executed twice?
Thanks.

So, the problem's been solved. It's required to modify the current theme.
(in "formElements.js" file)
We remove the form attribute "target" from initial form, if it isn't null, and hidden fields, created before.
function hyperlink_submit(hyperlink, formId, params) {
//params are name value pairs but all one big string array
//so params[0] and params[1] form the name and value of the first param
var theForm = document.getElementById(formId);
if (params != null) {
for (var i=0; i<params.length; i++) {
common_insertHiddenField(params, params[i+1], theForm);
i++;
common_insertHiddenField(hyperlink.id + "_submittedField", hyperlink.id, theForm);
var formTargetOrig = theForm.target;
if (hyperlink.target != null) {
theForm.target = hyperlink.target;
theForm.submit();
theForm.target = formTargetOrig;
if (hyperlink.target != null && hyperlink.target == "_blank") {
if (params != null) {
for(var i=0; i<params.length; i+=2) {
var childElem = document.getElementById(params[i]);
theForm.removeChild(childElem);
var childElem = document.getElementById(hyperlink.id + "_submittedField");
theForm.removeChild(childElem);
return false;

Similar Messages

  • It just doesn't add up... Please help the beginner

    Hi all of you who are experts in Appleworks. I am a graphic artist and Mac user since '89. I do a lot with iMovie and iPhoto and Indesign but you think I can figure out the simplest thing in Appleworks!? I've read over the AppleHelp and try what it says and can't make it work. All I want is in a simple data base I made for my business, I have about 6 columns that I set up to be numeric and dollars with 2 decimals so I can enter monthly amounts. I want the column to ADD automatically and I know this is probably Appleworks "101" Why can't I make it work. I have a horizontal row with "Total" and along that row, under each column, I want the total of what I put in each cell above it to ADD! I know you enter a formula. I go to the box and type the = sign, then SUM, then you put in parenthesis A1,A,2 etc. right? I always gives me the alert that I entered the wrong formula.. or sometimes it says it can't complete something circular..or something like that. I think I set the field to "summary" too not "calculate" Why won't it work? I know it should! I did it in an old Microsoft works program. I ONLY use this type of software to keep a chart of my business expenses and my monthly earnings and then make a data base of my friends/family addresses, so I really don't need to know lots of complicated formulas... just ADD a column! Any tips from any of you? I read the instructions and do it step by step and it won't work! Please help! Give me the steps. THANKS so much for your time!!!
    iMac GHZ PowerPC G$   Mac OS X (10.3.6)  

    Hi Rollie,
    Like the others who have posted here, I think the task you've set is more easily accomplished in the Spreadsheet.
    You'll probably want a label for each column (and possiblly for each row) in the first cell, so your data will begin in B2.
    For an example, I'm going to assume a data block of six rows (2..7) by six columns (B..G), with totals in row 8, and a grand total in H8.
    In cell B8, enter: =SUM(B2..B7)
    Select cells B8..G8, then go to the Calculate menu and choose Fill Right. This copies the formula into each of the selected cells, changing the cell references in the formula to match the correct column.
    If you also want a Grand Total, in cell H8, enter: =SUM(B8..G8)
    As for the database of Friends and Family addresses, there are two easy solutions:
    1. Use the "Address List" Assistant found in the Assistants tab of Starting Points to create a Personal Address List database.
    2. Use the Address Book application that is included with the OS X software you are running. You should find the Address Book icon (a brown 'book' with the @ symbol on the cover) on your Dock. Unless you are going to print mailing labels, you'll probably find Address Book sufficient to your needs.
    Regards,
    Barry

  • Array to grid works but need some help. Please help the beginner...

    Hi,
    I'm very green at this...
    I've been trying to display a two-dimmensional array on a dataGrid and finally found some code that I was able to modify to my needs.
    However couple things I don't understand.
    1. Do I need the <s:itemRenderer>...</s:itemRenderer> section to display the data? Can this be simplified?
       I don't need to change the default look of the columns etc. However it looks like the grid will not populate without that prepare() function.
       Why isn't this sufficient to populate the grid? -> dataGrid.dataProvider = new ArrayCollection(dataArray);
    2. The number of columns is hardcoded (3) and their headings are as well (N1, N2, N3).
       Can I show/hide columns at runtime based on number of columns in my array?
       Can I rename the column's headings at runtime?
    Thanks,
    Tom
    here's the code:
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
      xmlns:mx="library://ns.adobe.com/flex/mx"
      xmlns:s="library://ns.adobe.com/flex/spark" title="HomeView">
        <fx:Script>
            <![CDATA[
                import mx.collections.ArrayCollection;
                import spark.components.gridClasses.CellPosition;
                import spark.components.gridClasses.CellRegion;
                // Create a dataProvider whose items are arrays of 6 random numbers. 
                // The DataGrid's item renderer will display item[columnIndex].
                private function initializeDataProvider():void
                    const nRows:int = 10;
                    const nCols:int = 3;
                    const dataArray:Array = new Array(nRows);
                    for (var row:int = 0; row < dataArray.length; row++)
                        var values:Array = new Array(nCols);
                        for (var col:int = 0; col < values.length; col++)
                            values[col] = Math.round(Math.random() * 10);
                        dataArray[row] = values;
                    dataGrid.dataProvider = new ArrayCollection(dataArray);
            ]]>
        </fx:Script>
        <s:DataGrid id="dataGrid" selectionMode="singleRow" initialize="initializeDataProvider()">
            <s:itemRenderer>
                <fx:Component>
                    <s:DefaultGridItemRenderer>
                        <fx:Script>
                            <![CDATA[
                                   override public function prepare(hasBeenRecycled:Boolean):void
                                   label = data[columnIndex];
                            ]]>
                        </fx:Script>
                    </s:DefaultGridItemRenderer>
                </fx:Component>
            </s:itemRenderer>
            <s:columns>
                <s:ArrayList>
                    <s:GridColumn headerText="N1" width="50"/>
                    <s:GridColumn headerText="N2" width="50"/>   
                    <s:GridColumn headerText="N3" width="50"/>   
                </s:ArrayList>
            </s:columns>
        </s:DataGrid>
        <s:Button id="cmd" x="128" y="502" width="122" label="Button" click="initializeDataProvider()"/>
    </s:View>

    Hi fouriron,
    Does this help?
    Formula in E2 (and Fill Down)
    =IF(D2<10,10, D2)
    If a value in column D is less than 10, then insert 10, else insert the value from column D
    The "correct" value (SUM) is in  column D
    The "required" Answer is in column E
    Regards,
    Ian.

  • HT4972 the apps weve downloaded are not working.  please help,  extremely frustrated with our ipod 4

    the apps we have downloaded are not working,  please help,  extremely frustrated with our ipod 4

    See my previous reply for for the apps closing.
    For the wifi problem:
    Does the iOS device connect to other networks?
    Does the iOS device see the network?
    Any error messages?
    Do other devices now connect?
    Did the iOS device connect OK before?
    Try the following to rule out a software problem:                 
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on your router
    .- Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Wi-Fi: Unable to connect to an 802.11n Wi-Fi network       
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • Firefox is not able load any websites but others programs can. i tried everything given in the support forum but nothing worked out. so can you please help me out with it?

    firefox is not able to load any websites... i tried everything given in the support forum under the topic firefox is not able to load any websites but other programs can.. but still i am facing the same problem. so please help me out with this issue!!

    firefox is not able to load any websites... i tried everything given in the support forum under the topic firefox is not able to load any websites but other programs can.. but still i am facing the same problem. so please help me out with this issue!!

  • Please help me out with the function code of print option in module pool

    please help me out with the function code of print option in module pool, along with CASE condition.
    regards,
    asif

    Hi
    you can use the Function module
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING
        destination            = 'LP01'                       "'Printer name
        list_name              = 'TEST'
        list_text              = 'SUBMIT ... TO SAP-SPOOL'
        immediately            = ' '
        line_size              = '2000'
        no_dialog              = 'X'             "pass space to Pop screen for Print option
      IMPORTING
        out_parameters         = wa_pri_params
        valid                  = w_valid.
    "next call below things
      NEW-PAGE PRINT ON NO DIALOG PARAMETERS wa_pri_params.
         "and try to Print the values inside the new-page
      NEW-PAGE PRINT OFF.
    Prabhudas

  • How to access the activities created by an enduser especially when the enduser has left the organization?Please help me out with the possible solution

    How to access the activities created by an end user especially when the end user has left the organization?Please help me out with the possible solution

    Hi Ramesh,
    In the web UI we have business role IC_manger where you can search the activities based on employee responsible and you can use business transaction assignment functionality to assign those activities to any  other end user or team.
    Else you can also use Agent inbox functionality if you have configure the agent inbox for those activity.
    Hope this helps solving your query

  • Please help me out with some fundamentals in BW

    Hello,
    Please guide me regarding the below mentioned questions.
    1. what is the key date in query designer.
    2. when do we perform attribute change run
        like once the master data is loaded then we perform attribute change run and load the transactional data ?
    3.what is the disadvantage of using aggregates.
    4. what is full repair options?
    please help me out with these questions

    HI,
    Repair full request :
    If you indicate a request in full update mode as a repair request, then it is able to be updated in all data targets. This is also true if they already contain data from initial runs or deltas for this DataSource / source system combination, and they have overlapping selections.
    Consequently, a repair request can be updated at any time without checking each ODS object. The system supports loading in an ODS object by using the repair request without having to check the data for overlapping or request sequencing. This is because you can also delete selectively without checking an ODS object.
    Posting such requests can lead to duplicate data records in the data target.
    Hierarchy/attribute change run after loading master data;
    When hierarchies or attributes of characteristics change, the aggregate affected by the change can be adjusted manually or calculated automatically in process chains.
    Aggregates:
    Aggregates are materialized, pre-aggregated views on InfoCube fact table data. They are independent structures where summary data is stored within separate transparent InfoCubes. The purpose of aggregates is purely to accelerate the response time of queries by reducing the amount of data that must be read in the database for a given query navigation step. In the best case, the records presented in the report will exactly match the records that were read from the database.
    Aggregates can only be defined on basic InfoCubes for dimension characteristics, navigational attributes (time-dependent and time-independent) and on hierarchy levels (for time-dependent and time-independent hierarchy structures). Aggregates may not be created on ODS objects, MultiProviders or Remote Cubes.
    Queries may be automatically split up into several subqueries, e.g for individual restricted key figures (restricted key figures sales 2001 and sales 2002). Each subquery can use one aggregate; hence, one query can involve several aggregates.
    If an aggregate has less than 15 components, BW 3.x puts each component automatically into a separate dimension that will be marked as “line item” (except package and unit dimension); these aggregates are called flat aggregates. Hence, dimension tables are omitted and SID tables referenced directly.  Flat aggregates can be rolled up on the DB server (i.e., without loading data into the application server). This accelerates the roll up (hence the upload) process.
    Disadvantage : The more aggregates exist, the more time-consuming is the roll-up process and thus the data loading process; the change run is also affected.
    Hope this info Helps.
    Thanks,Ramoji.

  • My iPhone 6 ear speaker is not working properly I couldn't able to hear any thing from ear speaker to lissen I had to put on loud speaker or to use handsfree please help me out with this problem if some body have answer?

    My iPhone 6 ear speaker is not working properly I couldn't able to hear any thing from ear speaker to listen I had to put on loud speaker or to use hands free please help me out with this problem if some body have answer?

    Hi Venkata from NZ,
    If you are having an issue with the speaker on your iPhone, I would suggest that you troubleshoot using the steps in this article - 
    If you hear no sound or distorted sound from your iPhone, iPad, or iPod touch speaker - Apple Support
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • How to configure Time-sheet in Project server 2013 please share the doc with screen shot

    How to configure Time-sheet in Project server 2013 please share the doc with screen shot
    Thanks and Regards, Rangnath Mali

    Hi,
    Please refer to the following Youtube video and article.
    https://www.youtube.com/watch?v=lZWvg4q17JE
    https://support.office.com/en-sg/article/Set-up-timesheets-and-task-status-672fa06f-8c4b-4e43-bfbc-4c355d681605
    Please don't forget to mark it answered, if your problem resolved or helpful.

  • My apple account is disabled, please help me deal with as soon as possible!

    My apple account is disabled, please help me deal with as soon as possible!

    Change the password, but did not receive the letter to change the password

  • TS1741 my i pad is lock up and i cant get it unlocked can you please help the password was used to many times

    my i pad is lock can someone please help  the password was used to many times

    If you have forgotten the iPad passcode and you cannot unlock the device, you have to restore the device within iTunes. You want to use the same computer that you always sync with so that you can restore your iTunes content. You can restore with any other computer, but you will lose everything on the iPad.
    Instructions can be found here.
    http://support.apple.com/kb/ht1212
    You will probably need to restore using Recovery Mode. You can read about it here.
    http://support.apple.com/kb/ht4097

  • I have bought game FF ATB in app store but when I buy the in-app purchase it error and I cannot buy again it's show"please launch the game with a secure connection to resume."

    How to fixed the "please launch the game with a secure connection to resume."

    without them wanting me to pay for support that I wouldn't need if it wasn't because of them screwing up
    Apple has nothing to do with this. The "blame" lies 100% in your lap.
    A stranger's Apple ID appears on your Mac in conjunction with an update notice -
    https://discussions.apple.com/docs/DOC-5261

  • Here is the message I got from the red "i" message... please help.The backup disk image "/Volumes/Data/Lisa's MacBook Pro.sparsebundle" is already in use.

    Here is the message I got from the red "i" message... please help.The backup disk image “/Volumes/Data/Lisa’s MacBook Pro.sparsebundle” is already in use.

    http://pondini.org/TM/C12.html

  • Please help the elderly (me). I took pics on my iphone and need to get them up on craigslist and nothing is working. I admit to being technologically challenged.

    Please help the elderly (me). I took pics on my IPhone and need to get the pics up onto craigslist. Can someone please walk me through this process. I plugged my iphone into the usb port of my windows7 desktop computer and now I am lost!
    If you help, you can consider it your good deed of the day! Thanks

    Get this app & you can upload your pics directly, no need to import them to your computer:
    https://itunes.apple.com/us/app/craigslist./id438875956?mt=8

Maybe you are looking for