Portal - New Tab Issue - websphere-portal

I have a program capable of displaying two sets of portlet. One for the customer and one for employee. I have a link in the screen so that I could switch between the two. When the link is click, it will redirect into two different urls.
Employee - my_url/employee?language=en
Customer - my_url/customer?language=en
My problem is, when I am in the screen for customer, then I click the employee link it shows perfect. But when I open a new tab in the browser then type my_url, it always shows the customer screen. The desire behavior is it should display the employee screen since it is the screen in my previous tab.
Thanks in advance.

Related

Select box automatically opens on clicking button in Chrome Android and Chrome Responsive Mode using IONIC FRAMEWORK

Short description of the problem:
I have a form in which a group of fields in repeated based on an array of objects.
There is a button which pushes an object into the array. So the user can add as many groups as he like one by one.
There is a select box as the first element of this group.
However, upon clicking the button, the select box is opened automatically after the new group appears.
Steps to reproduce:
1. Visit http://52.66.117.243/app-test/ for testing.
2. Scroll down and click on add more button.
3. The new select box for title automatically opens
Chrome in responsive mode is also able to reproduce the problem
I think the issue might be due to the click event passed on to the newly added select box since the position w.r.t screen of the button is occupied by the new select element. However, I cannot be very sure.
Interestingly, a small timeout before adding of the new elements seems to solve the problem.
If the problem is indeed the click event being propagated, can someone be kind enough to explain what is causing it, event bubbling/capturing on the ng-click or something else ?
Thank you.

MS Access 2016 Open Record on Click and Then Be Able To Go To Previous Or Next Record

Long time reader first time poster here. I have basic knowledge of access coding but nothing fancy. Anyways here it goes. I have coded on click from a Tubular List in access of our products table to be able to open up a certain specific file. When I click on a product name or SKU it does just that and opens that specific record for me called (Product Profile Form). AWESOME! I have on that Product Profile Form Next and Previous Buttons to go to the next or previous records. But if I go through the Product List and click on the Product Title. It Opens and If I then click Next or Previous record Button it first shows a blank Product Profile but on the next click it says "You cant go to that specific record" in a pop up. The Code Macro I have on the Tubular Product List Form is
/ Form Name: Parent Product Profile Form /
View: Form /
Filter Name: /
Where Condition=: ="[Product Parent SKU]='" & [Product Parent SKU] & "'" /
Data Mode: Edit /
Window Mode: Normal /
Parent Product SKU is The Primary Key Field Name in my ParentProductTable
I have tried and tried to figure this out for hours online and here.
Thank you all for any help.
Ok I solved it myself and if anyone else has this same issue the resolution is this. Make a command button on your form. You will have to run a few different macros for the on click event for the command Button. For the Next Record Button After clicking where you want your command button to go on your form the Command button wizard will pop up. Choose Record Navigation in the categories box and then choose Go To Next Record in the Actions Box. Finish the Command Button Wizard. Then Right click the button and choose Build an event. This will open the Macro Tools. Click add new action and choose the Macro RemoveFilterSort.After that if you hover over the macro RemoveFilterSort you will see green arrows to place your macros in the order you want. Click the green arrows up until it is first at the top. Click Save and then exit. Now you should be able to go to the next record. Do the same for the previous record except in the command wizard pop up choose Record Navigation in the Categories area and then choose Go To Previous Record instead of like before we chose Go To Next Record. I am using Access 2016. What you basically did is told the button to remove the filters before moving on to the next or previous record. If you dont want to make command buttons and use the access supplied navigation buttons at the bottom. You can make a command button with the macro RemoveFilterSort only and you will have to click this button to remove the filter then you can click the Access supplied navigation button. I hope this helps someone.

Refresh/Update a report page with checkboxes

I am using APex 4.2. I have a page with a shuttle list, (page 31), where a user can select some job categories (e, a, c, x, etc). The user can then click a button, (Generate Report), and it will take them to a page (Page 27) where a report is displayed. Each row of the report has a checkbox that is defaulted to yes (starts off checked).
The report query is along these lines:
select 'Y' as Selector, name, id, etc
from table
where (instr(':'||:P31_JOB_CATEGORY||':',':'||JOB_CATEGORY||':') > 0)
where P31_JOB_CATEGORY represents the shuttle list.
I am passing the value of the shuttle list (P31_JOB_CATEGORY) to page 27, therefore having the actual query to the report on page 27.
I ultimately have a two part question.
Once the user views the report, they will see that each row is
checked and will be able to uncheck specific rows if neccessary.
Once they done checking/unchecking, the report should be
saved/submitted/refreshed with their made changes that will take
them to another page to see the report. I am having trouble
accomplishing this on button click.
Ultimately their changes will need to be seen on a pdf report,
where once they click the refresh button, the report will update
with their changes and then possibly redirect to a page that opens
up an open/save pdf report. But first I need to tackle refreshing
the page with the changes they made to the report by
checking/unchecking specific rows.
Any help would be greatly appreciated. Thanks in advance.

Refresh page after hitting the back button on widonws phone 7

I am developing a windows phone application. It's some kind of reminder which can have custom reminder categories. I am using the mvvm pattern.
I have two pages. One is for entering new data (category name and description) and editing and the other is for selecting a specific category wchich can then be edited/deleted.
The second page has a listbox which displays all categories that exist... after clicking on one of them the first page where the values (category name and description) are already entered in the textboxes. I can now edit and save them. All this works fine except for one thing. After saving and hitting the back button (so that i can get back to the list) i realize that the page isnt refreshing so that the old value is still displayed. How can i make the page "refresh" after poping up again...
Your description of the problem is a bit vague without any code or XAML. There are few things you need to check -
Check if the items in the page are databound properly
Check if you have implemented properties of the ViewModel(s) correctly. RaisePropertyChanged in the property's setter must be implemented.
Code/XAML snippets will help others identify your problem.

How do I place a hyperlink on every page of a SSRS 2005 report?

I am building a SSRS 2005 report that has potentially multiple pages. I would like to put in a hyperlink so that it appears on the top of every page. The hyperlink links back to the same report - basically I have a "summary" and "detail" mode and want to have hyperlinks to switch between.
So far I tried two approaches:
Put a textbox in the body, and in Properties -> Navigation, jump to a report. This works fine except it only shows on the very first page.
Drag the same textbox in the header of the report. Now it appears on every page, but clicking on it results in an error message: "The source of the report definition has not been specified".
google turned up nothing, what now?
Thanks.
The best way to do this is to implement the summary report to drill-down into the detail report and use the data on the detail row of the summary report's table to access the detail of that row as a detailed report. For example, let's assume the summary report is a list of invoices with total billed, and the detail report shows the items that were on that invoice.
Right-click the InvoiceNumber field in the detail row of the table and choose Properties
Click the Navigation tab
Click the Jump to report radio button and select the detail report from the drop down list
Click the Parameters button and fill in the parameter name and value - in this example, the parameter name might be InvoiceNumber and the parameter value would be =Fields!InvoiceNumber.Value
Click OK twice and you now have a hyperlink from the summary report to the detail report where the user can drill-down to get the detail of each invoice
Its also good to give a visual indication that this is a hyperlink so I set the Color to MediumBlue
If you just want to link directly to the complete detail report from the summary report and vice versa, you can use the same style on navigation settings but this time do it on a textbox on the header row of your table and make sure that the header has the RepeatOnNewPage property set to True so that it appears on every page.
To make your report go back to the home page
Right-click the Title field in the detail row of the table and choose properties
Click the Navigation tab
Click the Bookmark ID and type ="Home" Click OK twice now have a hyperlink to the home page
Place a text box on where pages are being created then right click on it and choose properties
Click the Navigation tab
Click the Jump to report radio button and put ="Home" Click OK twice
type the word Home in the box

Resources