I put a tabbed panel on a page and it's showing up as Berger dots vertically.
It's very simple
Instead of showing up as tabs, it renders as:
o New Tab
o New Tab2
When I select 'New Tab', I see the label, when I select 'New Tab2', I see the button.
Any ideas on what's going on?
thanks
clem
Something with your CSS is not working correctly. You are seeing an unformatted list. What theme are you using in your application?
Related
I'm starting a new xpages project, and I'm going to use the bootstrap. I will use application Layout with responsive bootstrap configuration. I will use the 'Title bar' property. I'm doing tests but I have not found a solution to keep the active tab of the active title bar highlighted with another color. What happens is that when clicking on a certain tab of the title bar, it changes color, for the color defined for active tab, however, when I select any option in the navigation bar, the link to the color set for the tabs not selected. I have already tried using the navigationPath property, which works with OneUi layout, but with no bootstrap. Does anyone know how to solve this problem?
I use Sublime Text 3 in two column mode. I have several tabs open in each panel/column.
Current behavior:
(Upper part of diagram)
There are seven tabs open in the left panel. The current displayed tab is tab 2. I move tab 7 over to the right panel.
(Lower part of diagram)
Result: The tab moves over to the right panel. It's displayed in the right panel. That's fine, whatever. On the left panel, though, tab 6 is now displayed instead of tab 2.
Desired result: On the left panel, tab 2 should be displayed instead of tab 6. Is there any setting to do this?
There is no setting to do this as at build 3157. Someone wrote a plugin to handle this when closing tabs, maybe it could be adapted to work when moving tabs between groups also.
https://github.com/SublimeTextIssues/Core/issues/455
https://SURU.tinytake.com/sf/MTQxMTgzOV81MDc2MDI2
I want to stick some text of the bottom of the page, like on the screen, just before footer always. When there is text (from mergefield), next should be new lines. I hope screenshot make it easier to see.
You can put the text in a text box or frame with position set to "Bottom
Relative to Margin". It's the only idea I have due you don't want to use a footer.
Or you can see this article
Basically it gives three options:
Negative left indent
Margin text box
Anchor to the header
I found the solution to the problem on Microsoft's page and I hope that this page comes up for as many people as possible.
Select the text you want to stick to the bottom (or top) of the page. Under Layout tab take a look at the bottom right of the page layout section and you should see a small arrow that, when clicked on, opens a new menu. In that menu, go to layout tab and set vertical alignment to be "bottom". IMPORTANT! Make sue that the next menu option (at the bottom of that window) is set to "apply to selected sections" otherwise, you will be writing from the bottom of the page upwards.
Here is the source image that helped me. https://filestore.community.support.microsoft.com/api/images/0382c4a8-ade9-4fc4-be66-bcd2c7101479?upload=true
Here is the visual representation:
Note that the person who took the screenshot set the last setting to whole document, not just selected sections.
If selected sections option isn't available, make sure you selected a text before opening the menu.
Hope this helps!
I have used a customized list view in which i have added 4 TextView basically for
name,address,city,telephone
Actually what i want when i click on the name it should navigate to browser.
same task i have achieved for telephone by using
android:autoLink="all" using layout in main.xml file.
Now here if i use url instead of name then it will become hyperlink
But for the name purpose what can i do so that name become as a hyperlink.
Please help me.
Thanx in advance.
Hi all I got solution by myself, I put text view of name over the text view of URL and set the background color of name text view to white, So if any one click on the name text view it navigate to the given hotel's URL... Thanks all
I have written the code programmatically for my tab bar in my table view.The problem whenever i am scrolling the table view,the tab bar is also moving.The tab bar created in one cell,so it is also scrolling.How to keep that in static.Please help me in this.
Thanks in advance
DOn't put the TabBar in the Scrollview. Rather, have the TabBar at the bottom of the main view, and have the ScrollView extend only to the top of the TabBar. That should fix it. If you put the TabBar on the ScrollView, it will scroll around (that's what the ScrollView does).
If you're creating the tab bar as one of the cells, this will always happen. (It's the expected behaviour for the table cell.)
Why on earth are you using this approach, rather than simply putting the tab bar above or below the UITableView?