This tag is for questions about views, a database construct that allows a user to join several tables together or restrict access to certain data.
0
votes
1answer
28 views
In views, Drupal 7, is there a way to display the total number of fields being displayed from one node?
I have one view outputting images with specific taxonomy term. These are all coming from different nodes. Some nodes might have 2 images, some 3, you get the point. So what you have is one view ...
0
votes
0answers
14 views
Space for movable 2D obects
I have a rather general question regarding android app design. The idea is to create two wide(screen width) columns that user can swipe between in a Windows Phone fashion. First column would contain ...
-1
votes
2answers
21 views
Database view - is it just an alias
Is a database view simply a way to alias a more complicated query into a shorter one?
If so, are there performance impacts of using them?
0
votes
0answers
12 views
IOS 5.0 - How to play Videos in a programmatically generated View from a “GameManager”class?
After testing and trying hours and hours i think i need a hint for the solution of my "little" programming problem: I have a GameManger.m class file where I want to programmatically opening a view on ...
1
vote
0answers
34 views
android - onClickListener causes a reset of my animation
I have an Activity with some elements like ImageView, Button, ToggleButton, ... . And a subview (LinearLayout) that contains an HorizontalScrollView of ImageView.
The subview is an element that I ...
1
vote
0answers
16 views
Model validation and redirect in Partial Views in MVC 3
I have multiple partial views in one page, when there is a submit on one partial view, and there is a model level validation on it, I need to stay in the same Page.
Using the below code
return ...
0
votes
0answers
9 views
Problems with youtube api to get monetized info such impressions, earnings
I'm using Google APIs explorer to figure out how it works. I try to extract some metrics like views, comments, likes, impressions*. For that purpose I'm usigng two scopes:
https:// ...
0
votes
1answer
22 views
access a users predictions scores via has_many/belongs_to association
Feel a bit ridiculous asking this question, but seems i still cant quite grasp it, thought i had but more learning needed it seems.
Ok so models set up like so
class User < ActiveRecord::Base
...
0
votes
1answer
33 views
Access one instance in different controllers views along with its own instance in Grails?
Access one instance in different controllers views along with its own instance in Grails?
My scenario:
Status controller with _list.gsp template that lists all the statuses.
User Instance has ...
2
votes
2answers
24 views
MySQL select most recent survey score per customer
To put it very simply, I have a table that looks like this:
customer_surveys
----------------
id | customer_id | score | date
1 | 1 | 5 | 01-01-2013
2 | 1 | 6 | ...
1
vote
2answers
28 views
SQL (Oracle) Creating a view [closed]
CREATE OR REPLACE VIEW Tax_Deductions_Employee AS
SELECT e.first_name||','||e.last_name, AS Employee, e.salary, e.income_tx_rate,
e.salary * e.income_tx_rate AS Deduction
FROM employees e
This is my ...
0
votes
0answers
5 views
Combining a Task and Resouce view/table Ms Project 2010
Is there any way to create a custom "summary" view where i can combine Tasks and Resources fields?
I'm looking for something like:
Task Name | Resource Name | Standard Rate | Baseline Work | ...
0
votes
1answer
27 views
Transitioning between views: translation between segues and code
In my storyboard I have 2 VCs: VC1 is a login page and VC2 is the home of my application after the user is logged.
1) the best way to change from one view to another is by using a modal segue? Is ...
0
votes
1answer
20 views
How can I use a list function in CouchDB to generate a valid (/normal) ViewResults object?
I have a simple problem I need to solve, and list functions are my current attempt to do so. I have a view that generates almost what I need, but in certain cases there are duplicate entries that make ...
0
votes
1answer
27 views
Getting values from text box in controller and save it in another model
I have a controller called users_controller and one action called getdata().getdata.ctp is the view corresponding to that action. in that view i added a elemet called route.ctp which contains a from ...
0
votes
1answer
18 views
Enable autosubmit ONLY for sort exposed filter in Drupal Views
I have an exposed filter block with multiple select filters including "sort by" type of filter. All filter values are submitted by pressing "Apply" button.
I want to give auto-submit function only ...
1
vote
1answer
37 views
Returning a GET view after a POST view Fails ASP.NET MVC
I have a View in MVC called Action, which accepts and ID as parameter. I also have another view called Action, but it is marked as HTTPPOST.
The POST version of Action can fail programatically. When ...
0
votes
1answer
24 views
Android no Network in Main Thread and no View update in external thread [duplicate]
I have written application that combines widget, service syncronizing widget and activity for configuring widget.
I've started network transfer to server to fetch weather data and app crashed. After ...
0
votes
1answer
20 views
How to get data from multiple form elements within a single view
I have added three form elements
defineroute.ctp
singleroute.ctp
singletrip.ctp
in a view called route.ctp.there is a function for the route.ctp in the users_controller called route().
my doubt is ...
4
votes
2answers
50 views
Partial View model doesn't resolve
I have a model A which has a property which is of another model type, B. I have a view which is tied to A. I want to add a partial view to to A which takes a model of type B. This is my code
...
0
votes
1answer
27 views
How to generate table dynamically in grails?
I need to display list of servers running up on ec2. I am able to display them in the page row by row without any columns, however I need to display them in a table where the server name is in one ...
1
vote
2answers
49 views
A button in a view brings back the previous view on click
I'm building an MVC app and I want to submit a form. So I did something simple like this. Here is the "DisplayItems" view:
@model List<MyApp.Models.Inventory>
@{
ViewBag.Title = "Display ...
0
votes
1answer
40 views
DateDetailView of django 1.5
I am writing a new blog with django 1.5 but in my template i don't have link related to my entry object.
My Model
def get_absolute_url(self):
return reverse('article_archive_date_detail',kwargs ...
0
votes
1answer
22 views
make a foreground view click-through
I don't find the way to make this work.
My application has 2 FrameLayouts with many child views (suppose ImageViews for simplicity), stacked one over the other.
My problem is, I need the ...
0
votes
1answer
32 views
Drupal 7: How to use checkboxes values in Views filter
How can i use the values (0/1) given by the checkboxes created in a content type to create a filter within Views?
0
votes
1answer
29 views
Couchbase: Why do my views never return more than 22 rows?
I have a view defined like this:
function (doc, meta) {
emit(meta.id, null);
}
I'm expecting this view to return ids for all documents but it never returns more than 22 documents. At the moment ...
0
votes
1answer
31 views
Understanding the job of routes in Node.js (api) when utilizing Backbone.js (frontend)
I am just beginning to learn using Backbone.js. Previously I have used a web framework built on top of Node.js to handle all the routes and responses. With Backbone is the possibility of a SPA (single ...
0
votes
0answers
21 views
Drupal Custom Views Template
How can i create a Views template? (not Theming)
like the Image Gallery views template.
I would like to setup a custom view template which the end user can import to create more views with the right ...
1
vote
0answers
17 views
How to shorten the namespace of custom view in xml in android?
I have a custom view defined deep in a package structure.
<com.android.notepad.example.customview.MyEditText
id="@+id/note"
... />
It is not visually good to use the entire package name ...
0
votes
0answers
23 views
Competency Assessment using Drupal with Recommended Node report [closed]
My task is to:
Create a public-facing form that lists competency statements (i.e. "Able to do X")
Allow for self-assessment of confidence level on each statement (1=not confident through 5=very ...
0
votes
1answer
20 views
RoR, where do I put generally used templates?
I am new to Ruby on Rails. I know that for each controller you have a specific views folder that holds all of it's views. I also know there is the layout folder for the layouts.
But what if I have a ...
0
votes
1answer
27 views
Integrating data from multiple objects in one view in MVC4
Hi I have three classes as objects which go into the database.
public class Employees
{
public int Id { get; set;}
public string Name { get; set;}
public string SocialSecurityNumber{ get; ...
0
votes
1answer
24 views
Django Template not being rendered correctly using Class based views
I'm a django newbie and wanted to integrate Singly into the django Polls application. I have used class based views to allow for models from the singly app to be passed along with the Polls models.
...
1
vote
1answer
32 views
Zero-order hold in time… Possible?
Now, I have a table X in MS Access with the following fields:
X (Table)
- Dates (Date/Time)
- Number1 (Double)
- Number2 (Long Integer)
Now suppose it has the following three records:
2000-01-01 ...
1
vote
1answer
41 views
Rails form in a controller action, rendered in another view?
Let me preface this with "I am new and inexperienced". I will setup the scenario followed by my question, in detail.
Here is the scenario:
I have a contact controller, with new and create actions. ...
0
votes
1answer
16 views
How to create a view that dynamically updates based on entries in 2nd mysql table?
I have a mysql query which counts how many records contain a specific keyword for a given name. Instead of having a php script do a loop to get the data I would like to create a view with all the data ...
0
votes
1answer
21 views
How to handle an event trough multiple subview-levels in BackboneJS
Is there a handy way to throw/catch (custom) events from/to multiple levels of child/parent views in Backbone?
Let me explain my situation. I'm catching "keydown" events and check if some ...
0
votes
1answer
43 views
Model Backbone Views can't be removed from DOM at first Collection re-render
I've been facing an issue for the entire day now, and I'm kind of desperate! I'm pretty sure this will be simple for some Backbone experts around here...I'm new with Backbone and I might have not ...
0
votes
1answer
19 views
Adding strings to Rails JSON output
I need to output custom JSON in order to be backwards compatible with existing software, which is written in Javascript, so I need to wrap my JSON with "parseDate(" at the beginning of it, and ");" at ...
1
vote
3answers
79 views
How to ensure that Backbone has rendered the page completely?
I work on a large enterprise application with BackboneJS. One page in the application is constructed using multiple sub-system calls via REsT. How do I make sure that, all the services required to ...
0
votes
0answers
26 views
Explanation for Fancy Uses of Collection Views: Map Algebra- manager employee map - in java tutorial map interface
In the following example given in the java tutorial, I understand the first bit about the individual contributors.
What I am confused about is how the next few requirements (e.g firing the employees ...
0
votes
0answers
54 views
ASP.NET MVC 4 Mobile Views only rendering for iPhone browser on production server
I want to figure out how to get this working on all phone browsers. The problem is that on my production server, I can't get the mobile views to render on an Android phone, nor Android emulators on ...
0
votes
1answer
34 views
Is there a way to print out output in a pyramid view callable?
I am new to python and pyramid and I am trying to figure out a way to print out some object values that I am using in a view callable to get a better idea of how things are working. More specifically, ...
0
votes
1answer
18 views
Drupal Slideshow small image at bottom
I have made a image gallery with a strip of thumbnails and 1 fullsize image.
(when a thumb is clicked, the images is loaded full size):
The problem is the little thumbnail underneath the full size ...
-2
votes
1answer
20 views
How add multiples views in the same template? [closed]
I want to make a django application, with a form and a view showing the objects, but in the same template (Just like Twitter).
How can i get a form and a view in the same template?
0
votes
1answer
15 views
Combing data from multiple tables using view on mysql
I have two tables Employee and Customer.
I want an Employee's Name and Address and then a Customer's Name and Address in one view.
This is what I have:
CREATE VIEW Mail_List AS
SELECT ...
0
votes
1answer
21 views
Drupal Views referencing content node
How can I get a Views block to query information from the page it's assigned to and filter it's output?
Please see graphic below to see what I'm trying to accomplish. (Open in new tab to enlarge)
0
votes
1answer
13 views
How can I import UnixFileAttributes?
When I execute this snippet:
FileSystem fs = FileSystems.getDefault();
for (String s : fs.supportedFileAttributeViews())
{
System.out.println(s);
}
I get this result: "basic owner user unix dos ...
0
votes
0answers
12 views
When i apply the filter fb like button is missing
I using fb_social module. I can see like button but when i apply a (exposed) filter, like button not showing. Have anybody a solution?
Views 7.x-37
7.x-2.0-beta4
0
votes
0answers
15 views
bring output of one controller in another controller -mvc
please reply to this question and sorry as i face problem posting question here i give you the link to my question i posted in this forum, kindly help
...



