Is there any tab priority settings in Sugar Pro 6.3.0 - tabs

I am using sugar pro 6.3.0 but when i redoeder my tabs with the Display Module Tabs and Subpanels option available in Administration tab, the tab like Accounts automatically gets displayed before other tabs even if the Accounts tab is displayed below the other tabs on the Administration»Display Module Tabs and Subpanels as shown below:
Any idea where to change that priority to see the tabs in the exact order as shown in the Displayed Tabs column in the above figure?

Click your username at the top, next to 'Log Out'.
Then click the tab 'Advanced'.
In the panel 'Layout Options', you should be able to arrange the order of tabs for the particular user.
Clicking 'Reset User Preferences' button on the same page should also fix it.

Related

How to disable button behind <p:selectOneMenu> overlay

I have an upload area using p:fileupload with 3 buttons, Add Files, Upload and Cancel. Just above this upload area, I have a p:selectOneMenu, and when the user click on the list, the dropbox menu appears, obscuring part of the 'Add Files' button. If the user then happens to select an item that is in the area of the 'Add Files' button behind it, the window pop up letting them select a file to Add, as if the user actually presses the 'Add Files' button, and not select the item from the drop down list. Is there a way I can disable these fileupload buttons when the dropdown menu is displayed in front of it ? Thanks. Primefaces 3.5.
Can anyone please help ?
I fixed my problem by creating an overlay div and hiding the background div if the event is destined for the selectonemenu.

Order tab page in oracle forms?

I have four tab page A,B,C,D.
I have a master and detail views and the tab pages are on detail view.
When i click on the detail views, the tap page who have the focus is the first tap page. When i close it and reopen again the the tab page which have the focus is the last tab page which has the focus not necessary the first one.
how can i set a default tab page ?

Form in design mode missing close button and tab name

How do I turn the option on to see the tab name of the form and the close button as viewed below. In another database, a previous developer turned it off and when I edit that database, I don't see those controls (Form tab and close button)
This form appropriately has the tab name and a close button on the right.
****Please look at the image below. I am showing it in design mode to prove a point. What I have outlined both in red and in green - are missing. Yes, both in "Form view" and in "Design view" they are missing. This makes it a struggle to develop in because I have to close Access in order to close the form. Right-clicking does not offer 'close' or design in the contextual menus. How do I get them back?
Go to File->Options->Current Database and check "Display Documents Tabs" checkbox. Also you can change designers presentation style to Overlapped Window", in some cases it may be more comfortable for design.
The designer window, including windows without tabs can be closed by pressing Ctrl-F4
Go to :
Form in design view
Properties
Format
Min Max buttons -> Set to : Both Enabled

iOS7 - <select> menu not reset on history.back / browser back button

This is a strange bug that occurs on the iPhone 5 when navigating back to a previous page.
Here's the steps to reproduce the bug on an iPhone 5:
Select a menu option that directs to a new page
From the new page press the browser back button
Try and navigate to the same page again using the same menu
An example page to try this on is here. On this page, select 'Javascript Tutorials' from the first menu on the page. Then follow steps above...
In my situation there is no go button to follow the link (like the second menu on the example page). The option is followed when clicked. The problem with this is that because the page you returned from is selected in the menu, you are unable to navigate to it. You cant re-select it.
My question: Is this a known iOS 7 bug? And is there a solution? My search has come up empty so far.
My JS code selects the first option when the menu is generated on page load. And as said, this bug only occurs on the iPhone.
This is not an iOS 7/iPhone 5 bug.
I can recreate it in Chrome on Windows 7.
As you said,
"because the page you returned from is selected in the menu,
you are unable to navigate to it"
The menu is pre-selected because of autocomplete behavior
When you press browser "back" in step 2 (versus page refresh), browser remembers the state you left the select in
https://stackoverflow.com/a/2699400/1175496
When you re-select an option that is already selected
You haven't changed anything; so the change event doesn't fire
Scripts listening for that event (as with the onChange attribute in your example) won't send you to the page
I fix this by putting autocomplete="off" attribute on the form element containing your select;
this prevents number 1, which prevents number 2.

Open a toolbar on click of a button in MSOffice apps

What i want is to create a button on the toolbar via the standard Customize … in Office apps, that ‘enables / calls / opens another toolbar’? This is still in Access 2003.
You can't do that without VBA (but as you tagged your question this way, this is probably what your are looking for).
First, create a macro that displays your toolbar:
Sub RestoreToolbars()
On Error Resume Next
Application.CommandBars("The toolbar you want to display").Enabled = True
On Error GoTo 0
End Sub
Source on ozgrid
Then, create a custom button that will call that macro:
Add or delete a toolbar button (#addicon)
Customizing your toolbars is from customize, and there are several ways of getting into customize:
View --> Toolbars --> Customize, --or from--
Tools --> Customize, --or from--
right-click on toolbars area --> Customize
To add a button to a toolbar select one of the choices under customize, move the button to the toolbar you want to see it in. Click on an button in customize and look in lower left corner of customize window for it's description.
Add or delete a toolbar button
Customize (Tools --> Customize)
Click on the Commands tab
To add a button, click the name of the category in the Categories
box, and then drag the button or item from the Buttons area to the
displayed toolbar.
To delete a button, drag it off the toolbar to delete.
It can be moved to another toolbar, instead of deleting, but dragging it to the worksheet area will delete the button.
If a button is dragged off a toolbar during customize it can only be restored from an existing toolbar or the builtin pattern toolbars. It is for this reason that you should store originals in a hidden toolbar.
Right-click on the toolbar icon to assign a description, and to
assign a macro.
Source - Add or delete a button