Used for instances of using multiple pages in a single UI control. i.e. - A NavigationView that can display different Content depending on which MenuItem is selected.
Questions tagged [multiple-views]
113 questions
1
vote
1 answer
C# UWP closing application multiple views
I have a UWP app that dynamically creates another view. But, the problem is when I close the first window, the second still stays on.
With this code I am creating new view:
CoreApplicationView newView = CoreApplication.CreateNewView();
…

user3239349
- 877
- 1
- 12
- 33
1
vote
2 answers
MVVM New window that uses the same ViewModel
Is there some way to have a New Window which uses the same ViewModel as the MainWindow?
The reason for this is that I have a data grid that I want to insert to, delete items, update, etc. But, when it comes to insertion I want to do it in a separate…

Aleksa Kojadinovic
- 337
- 3
- 14
1
vote
0 answers
FOSCommentBundle and thread_id
I've followed FOSComment's instruction to have multiple threads in one page. It's ok everything works. Just kidding, the world isn't that beautiful.
I'll try to explain my problem : When I submit my comment, i've got Integrity constraint violation…

PierreB
- 31
- 5
1
vote
1 answer
Tabbar Nav app, allowing one view to rotate while others do not
I have a tab bar application in which i have 3 diffrent views each with there own view controller.
In the tab bar code i have this, to handle rotation.
#import "RotatingTabBarController.h"
@implementation RotatingTabBarController
// Override…

Matt
- 2,803
- 9
- 33
- 57
1
vote
1 answer
What would be the best way to have a dynamic footer that can be triggered from multiple locations using AngularJS
So I've been going round and round trying to figure out the best way to have a footer that has a hidden panel for actions that slides up. The site is pretty basic, it has a header, content area and footer. I made a simple wireframe to explain this a…

Tom Bird
- 999
- 3
- 17
- 31
1
vote
0 answers
Recovering pose from essential matrix gives inconsistent sign of translation vector
I have three views with point correspondences and I want to compute the pose of the camera at the second and the third view. I therefore generate a random dataset (no noise) containing points in the different views with known rotation and…

takahashi
- 2,081
- 3
- 14
- 24
1
vote
1 answer
angular and ui-router example is not working
Hello I'm trying a simple application with Angular and UI-Router...
But for some reason, it's not working at all.
In chrome, there is no error in the console, but there is even no output at all
Maybe some one has some clue on what's happening... I…

Laurent Lequenne
- 902
- 5
- 13
1
vote
1 answer
How to return a dynamic number of multiple partial views inside another partial view
I want to return a dynamic number of multiple partial views inside another partial view in the controller, and inject it to the DOM using an Ajax call.
The user is going to select a package (radio buttons) and depending on this package I need to…

Guillermo Sánchez
- 143
- 1
- 3
- 15
1
vote
1 answer
Multiple views using sections for SPA using UI-Router and generator-angular
I'm trying to create a SPA using the UI-Router's multiple views functionality but cannot figure it out why my sections are not displayed into the page.
Here's my app setup:
angular
.module('myApp', [
'ngAnimate',
'ngCookies',
…

shklsw
- 11
- 2
1
vote
1 answer
MVC: does anyone know a multi view design for MVC?
I have a system that need two representations of the same model,
and for simplicity i want to use one model, and not keep multiple models - because than my system will suffer from translation errors (the models will not be compatible) that might…
Itay L
1
vote
1 answer
Codeigniter CLI not loading multiple views
I am trying to run a weekly email update via a cron job using codeigniter. Everything works fine if I check it in a browser, however when I run it via a command line it goes through the loop once and then dies on setting the $message variable to…

user2217323
- 11
- 1
1
vote
0 answers
How do you make a UIImageView's image change when a button is pushed? The UIImageView and UIButton are on two different views
I have a UIButton and a UIImageView. The UIButton and UIImageView are on different views in storyboard. What I want to happen is when the button is pressed, it switches views and the UIImageView switches to a different image. Right now, the view…

user1681741
- 11
- 2
1
vote
0 answers
How to send variables between different views on XCODE?
I am currently trying to create an application that will allow the user to build a "fake" report card. How would I be able to use variables to go from SecondViewController to ThirdViewController? I would need to be able to take Users' text from 15…

user1673797
- 21
- 1
- 3
1
vote
1 answer
opengles view switching problem
I´m trying to make simple game using OpenGLES.
I have two EAGLViews(menu and game view).
Each view has its own viewController. Initializing of the views is done by initWithNIBName method of the viewController.
And when I want to show the view, I…
Jenicek
0
votes
3 answers
Reusing views on multiple activites in Android
I have the following scenario: android up, compatible starting with android 1.6 and up. At the bottom of ALL activities I have a set of ToggleButtons that only start activities. Don't ask me why, that was the request :) Having these buttons do the…

Alin
- 14,809
- 40
- 129
- 218