Questions tagged [tabview]

Any visual layout that incorporates selectable tabs as an organizational element.

770 questions
4
votes
4 answers

Android manifest.xml

I'm working on the Tabs example from Google Android Developers site (http://developer.android.com/resources/tutorials/views/hello-tabwidget.html) but I'm stuck in step 2. At the very end of step 2 says "Duplicate this for each of the three…
esausilva
  • 1,964
  • 4
  • 26
  • 54
4
votes
2 answers

Get current header of the tabView PrimeNG

I'd like to get current header of the PrimeNG tabView. I tried to do it by binding activeIndex property but it didn't work.
AKZB
  • 157
  • 1
  • 12
4
votes
1 answer

how to change YUI3 tab using javascript

I want to provide an additional link to change tab using YUI3. I have a form spread over multiple tabs, so at the bottom of tab-contents I want a 'continue' link which will take use to next tab. any ideas.
Bryan
  • 645
  • 1
  • 6
  • 18
4
votes
5 answers

Android Disable zoom effect in bottom navigation bar

I was trying to implement bottom navigation bar. Here I am facing a problem when the menu item getting in zoom on click and that leads some title text truncating from the bar. Like screenshot given Is there any solution to prevent from this…
shafeeq
  • 1,499
  • 1
  • 14
  • 30
4
votes
2 answers

Trying to pass data between tab bar controllers

I'm trying to pass some data between my views in a tab bar. my first view is able to load the data from my model class and manipulate it. But when I hit the second or third tab in my tab bar controller, the data doesn't get passed. Here's how I'm…
S.G.
  • 71
  • 3
4
votes
4 answers

setOnTouchListener not working for android Fragment

I am using TabView and in it, I am using Fragment to load each tab. I want to get the Touch event when the user touches any of the fragments. Fragment Code public MobileBankingFragment() { // Required empty public…
4
votes
1 answer

How come position information isn't being passed to my fragments?

I have an Activity that is largely unmodified form the default Android Studio example for a tabbed activity. Its FragmentPagerAdapter is modified to display all 50 United States, with 50 corresponding tabs displaying their names. This works until a…
Ky -
  • 30,724
  • 51
  • 192
  • 308
4
votes
2 answers

JSF dynamically include src in "ui:include src="#{bean.pagePath}"

I tried to include multiple source page path using ui:include tag in different tabs. The problem is when i gave the source page path as static one means that page will be shown but if give the source page path from backing bean mean it won't include…
Mariyappan
  • 57
  • 1
  • 1
  • 4
4
votes
3 answers

Primefaces tabview tabChange event fired after displaying tab

I am working on a project using Primefaces 3.5 & JSF2.1 (Mojarra) I have created a primefaces with two tabs inside and each tab has a primefaces datatable
Ali Saleh
  • 258
  • 1
  • 4
  • 12
4
votes
1 answer

How do I set the background colour of NSTabView?

[tabView setBackgroundColor:[NSColor colorWithCalibratedRed:0.227f green:0.251f blue:0.337 alpha:0.8]; The above code does not work :( Thanks
neutrino
  • 341
  • 1
  • 3
  • 19
3
votes
1 answer

Primefaces TabView by a model - remove model associated with tab on close

I'm using Primefaces (version 3.0.1) p:tabView component, which displays dynamic number of tabs backed by a list in a model. Tabs inside TabView are closable. I'd like to remove list element associated with a tab by close event. Here is my…
nikagra
  • 835
  • 2
  • 9
  • 23
3
votes
0 answers

How to use Paged TabView inside ScrollView in SwiftUI?

Context I am having a SwiftUI ScrollView and would like to use Paged TabViews inside to display data. However, this concludes in strange behaviour of the View collapsing to zero height. Code struct SomeView: View { var body: some View { …
christophriepe
  • 1,157
  • 12
  • 47
3
votes
3 answers

Simple TabView is crashing in iOS 16

There is a weird crash that only happens in iOS 16. When I try to create a TabView with page style, it's crashing when the array is empty. But it's working perfectly fine in iOS 15. Is this an iOS 16 bug? Xcode version: Version 14.0 (14A309) iOS…
GreatCornholio
  • 97
  • 2
  • 16
3
votes
1 answer

How to use/capture Primevue's Tabview component's "tab-change" event in vue3 composition API?

What I have read in Primevue documentation, does not seem enough to figure it out. I did not find adequate examples at all, and the docs only says: Primevue docs about the issue Can someone help me out? I am stuck.
Tamás László
  • 139
  • 1
  • 8
3
votes
1 answer

SwiftUI Combine: TabView is not updating on selection when property stored in different viewmodel

I'm working on Tabview with page style and I want to scroll tabview on button actions. Buttons are added inside NavigationMenu. NavigationMenu view and NavigationModel(ViewModel) are separated from a parent. Selection handling is done inside…
Abhishek Thapliyal
  • 3,497
  • 6
  • 30
  • 69