Questions tagged [view]

This tag is for questions about database view or UI / architectural view. See also the following tags: sql-view, android-view, uiview.

The purpose of almost any computer program is to process data in one form or another. When the program requires user interaction it is often necessary to provide the user with a view of that data to represent it in a useful and comprehensible manner.

View also refers to:

  • A stored query in a relational database that can be accessed as if it were a table.
  • The display or presentation layer of a MVC architecture.

Questions tagged should also be tagged with the relevant language.

25981 questions
5
votes
1 answer

How to grey out Views. Specifically an EditText?

Hey guy's First of all thanks for reading this. I'm having trouble to find a way to change my EditText when I loose focus to it. I would like it to be greyed out when this happens, but I don't want it to be disabled because the user can touch it…
Rogério Peixoto
  • 2,176
  • 2
  • 23
  • 31
5
votes
1 answer

View Transition Animation

I have this code: - (void) displayView:(int)intNewView{ NSLog(@"%i", intNewView); [currentView.view removeFromSuperview]; [currentView release]; switch (intNewView) { case 1: currentView = [[EnterView alloc] init]; break; …
Jack Nutkins
  • 1,555
  • 5
  • 36
  • 71
5
votes
2 answers

Hide the bottom image view when showing keyboard react-native

How I can hide this picture... Thank you for any help!
5
votes
2 answers

node.js Express - How to get partial views asynchronously

I've got a layout - navigation menu. In express tutorials theres only old-school pages loading. whole old page is thrown away and a new one is downloaded with all layouts,views and partial views. And i want navigation menu to stay. So how can i do…
kulebyashik
  • 5,359
  • 4
  • 18
  • 13
5
votes
0 answers

SwiftUI: resize View to the content size

I have some large view full of some sort of subViews I don't know which size of content of the view How to: Automatically resize view to it's content Set maxSize of window? (If content is larger than this size, window must will have this size,…
Andrew_STOP_RU_WAR_IN_UA
  • 9,318
  • 5
  • 65
  • 101
5
votes
3 answers

Is it possible to programmatically clear Rails 3 layouts and views cache?

I have a Rails 3 based CMS that allows users to create and modify layouts and views. These layouts and views are the same ones built into the framework, only backed by a model for some additional capabilities. The problem I would like to address…
cmarin
  • 51
  • 2
5
votes
1 answer

Create ranges custom view functions (operator() and operator|)

I'm currently trying to wrap my head around the upcoming std::ranges. As an exercise I'd like to implement a "toupper" view from scratch which takes a range/view over some characters and transforms those to upper case. Hacking together a view and…
Vinci
  • 1,382
  • 10
  • 12
5
votes
2 answers

MVC get all action methods

Is there a way to get a list of all Actions Methods of my MVC 3 project?
Mats Hofman
  • 7,060
  • 6
  • 33
  • 48
5
votes
1 answer

How to scroll into View in React Native?

I'm developing an app using React Native. There, I want to scroll into a View when I press a button. I've tried something like this. render() { return( this.myView = field} > //something inside the view
Sennen Randika
  • 1,566
  • 3
  • 14
  • 34
5
votes
2 answers

View not found Laravel

I want to add a view to my email. I already set the namespace in my provider but it cannot be found My map structure is: src-> Domain -> Quotation -> views-> BookedMail.php src-> Domain -> Quotation -> QuotationController.php src-> Providers The…
Nick Alexander
  • 361
  • 2
  • 5
  • 21
5
votes
2 answers

How to fix scrollable content size ambiguity in xcode 11 using auto layout beta 7 UIKIT

When using Auto Layout, I am unable to set up a simple UIScrollView in my view controller in Xcode 11 beta 7. I know that I must constrain the scroll view to the edges, and then set the scroll view width and height equal to the width and height of…
5
votes
2 answers

Changing between views using MVVM with prism

I'm new to WPF, but from what I've read, a correct way to build applications is to switch up views on the same window. What I mean is something like a "frame" with a menu and a workspace where views are shown. So far I've been following this,…
Silva
  • 270
  • 4
  • 16
5
votes
0 answers

Adding dimming view when tableView cell passes from the middle of scrollView

I have scrollView. In this scrollView I have another view. In this view I have tableView. ScrollView>View>TableView The cells of the tableView are custom and have labels in it. I need when the label passes thru the center of the scrollView to appear…
Bogdan Bogdanov
  • 882
  • 11
  • 36
  • 79
5
votes
2 answers

Different layout for devise controller, problem when form errors

i assigned a different layout for my sign in and sign up view in the application_controller like this: layout :layout_by_resource def layout_by_resource if devise_controller? && resource_name == :user && action_name == 'new' "login" …
trnc
  • 20,581
  • 21
  • 60
  • 98
5
votes
4 answers

Magento "catalog/product/view" url returns 404

I'm supporting a magento web site. The problem is that product view urls e.g. [link] http://localhost/magento/catalog/product/view/id/23 always return 404. The category view url e.g. [link] http://localhost/magento/catalog/category/view/id/4 is…
1 2 3
99
100