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

learn more… | top users | synonyms

0
votes
0answers
6 views

Accessing Button Properties In Java

i have a button in my android app that i need to access after a certain amount of time has elapsed. i've created a button object for the button in the oncreate function and using a timer for the count ...
0
votes
0answers
6 views

errors when using tastypie resource in view

here is my resource: class ImageResource(ModelResource): album = fields.ForeignKey(AlbumResource, 'album') upload_by = fields.ForeignKey(UserResource, 'upload_by') class Meta: ...
0
votes
1answer
21 views

android:state_enabled=“false” doesnt work

This is my selector: <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item ...
0
votes
0answers
34 views

how to collect json with same value in one view and others in another view and make a dynamic view

i have json as bellow : { "transaksi": { "jenis_link": "unit_link", "rks_ulink": [ { "lji_invest": "Excellink Dynamic Fund", "tgl": ...
0
votes
0answers
11 views

customize the height of tab indicator in view pager?

I am looking to style the tab indicator like pininterest where the indicator does not look like the normal "android" style . Is there some attribute where i can set the indicator height ?Please look ...
1
vote
2answers
24 views

How to close a view class to return to the parent activity?

I have an activity (MyActivity1) which starts a view class (MyView1) using setContentView(); In MyView1, after some drawings with canvas, I want to be able to return to MyActivity1. I tried ...
0
votes
2answers
16 views

Dynamically load jade templates

I'm working on a small documentation website and the content is stored in files. For instance I have two files chapter1.jade and chapter2.jade in a module1/ directory. I'd like to read the module1/ ...
0
votes
1answer
15 views

Flash and redirect_to in one line not producing flash

I have the following code redirect_to questionnaire_url, error: "Now please fill in the questionnaire." Normally if I set a flash[:notice] value above the redirect the flash shows on my page, ...
0
votes
2answers
21 views

Create SQL view column from result set

I'm new to SQL and attempting to revise a Create View script to add a new column from a select statement result set I've googled this quite a bit but haven't seen a good example. Here's the select ...
0
votes
1answer
19 views

View keeps empty after opened through an alert

there's an alert in my app and when the user clicks on its ok-button an new few opens: But this few keeps empty...no buttons, etc. are shown (somehow the background is correctly shown). This alert ...
0
votes
2answers
18 views

ReferenceError: users is not defined rails + backbone + firebug

So I asked this question: render view in backbone.js + rails I feel I have gotten close to the answer thanks to people pointing me in the right direction. The code in my ...
0
votes
1answer
18 views

Relational database show fields from different tables in view, rails

I have 4 tables, customer, customer_site, site and connection. customer and site have many customer_sites and a site has many connections. This has all been set up in my models. Now i'm trying to have ...
0
votes
1answer
22 views

Grails rendering json to specific view

in a controller I am trying to render json to a specific view. Here is what I was doing before using json : def create() { render(view: "/book/create", model: [bookInstance: new Book(params)]) } ...
1
vote
1answer
19 views

Zend - How to include file in view like masterpae asp.net?

I have structure folder like this: http://nx9.upanh.com/b4.s37.d4/3fd103509d1ac25ece02096b5e25a5f0_55810779.capture.png (I really sorry, I'm not enough reputation) I want to include 2 files are ...
-2
votes
0answers
13 views

Free light weight rails email template editor

I need have a simple editor for mail editing purpose in my admin section. like I want an editable email i.e. Hello {user.username}, Please find this mail. Thanks! I only want text file need ...
1
vote
1answer
14 views

Global button not showing in some views - MVC AS3

I'm writing a program that simulates a travel experience where a user can type in a city name in a view (writing the program in MVC style) and then the user gets "transported" to a view that ...
0
votes
1answer
21 views

Zend from a view to another view

Im a Zend Noob, I have it working showing the default index page [local] http://myzftest.test/zend_template/public/ I have created another view for my controller called about; I can see this ...
0
votes
2answers
30 views

NSPredicate not filtering UITableView?

For some reason NSPredicate isn't filtering my UITableView (it's supposed to be filtering my TableView by selections made in a UIPickerView). Users make their pickerview selections, press the GO ...
1
vote
1answer
22 views

getView's DialogFragment returning null on onDismiss

I have a custom dialog derived from DialogFragment. When the user click in the OK button I need to save the information that is on the screen. So I made my PositiveButton calls dismiss and I ...
0
votes
0answers
74 views

NullPointerException on orientation change

I am implementing the new DrawerLayout in a new project. My code is almost verbatim from the DrawerLayout guide and works find until I change orientation. What happens on orientation change is that ...
-4
votes
2answers
105 views

Object reference not set to an instance of an object - foreach loop [closed]

Right, So basically the error is that apparently the loop is empty. However, this is very weird as I have similiar loops running in other places in my application. The example comes from the MVC ...
0
votes
1answer
20 views

Sencha: Set Dataview XTemplate when created dinamically

i have some data that i'm getting from the server that depending on the situation may bring different fields, so what i have is this: //This is the way i'm attaching the newly created template to ...
0
votes
0answers
31 views

Add view with canvas

I wanna insert a view (with canvas, bitmaps and so on) in a view group The code below is on onCreate and does not run (the screen is blank). v1 = new SampleView(this); gv = (ViewGroup) ...
0
votes
1answer
9 views

object reference not set to an object when display location

I have Locations column in my site. In database there is separate tables for , Country State city Region These all table id's are stored into Locations table then Location Table Id is referred to ...
0
votes
1answer
13 views

JSF 2 doesn't find my method

So I have a view that create pie chart. Th recurring code looks like this. function drawChart() { var dataBest = new google.visualization.DataTable(); ...
0
votes
4answers
57 views

How to use Model data in a view ASP MVC?

I'm a beginner with ASP MVC and I'm trying to show data from a model in a view. This is how I display the data : @Html.DisplayFor(modelItem => item.Budget_Year) But I don't know how to use this ...
0
votes
3answers
26 views

Is there a way to cache a View so that queries against it are quick?

I'm extremely new to Views so please forgive me if this is a silly question, but I have a View that is really helpful in optimizing a pretty unwieldy query, and allows me to select against a small ...
0
votes
2answers
68 views

Same data in multiple views using AngularJS

Maybe there is someone who can help me a little bit. I have to share data between multiple views. Because it is a school project, I have to use AngularJS, but I am new to it and I don't know where to ...
0
votes
2answers
40 views

JPA and Table Views. Can it be done?

We currently have a Java EE system where we are mapping to our database using JPA. It is a fairly well developed system with about 20 entities. We now have been ordered to use Views for everything. ...
0
votes
1answer
21 views

Kendo UI or MVC JSON viewer, or Formatter to display JSON string

Is there a control or any other way to format a JSON string, that is to give different colours/ arrange/ indentations etc... Please reply me if anyone have an idea about it. Thank you
0
votes
2answers
46 views

iOS Controllers for universal (iPhone/iPad) app

I am just working on iOS app and I want to make it universal for both iPhones and iPads. This is done and works without any problems: if ([[UIDevice currentDevice] userInterfaceIdiom] == ...
3
votes
0answers
29 views

overriding the onScroll method of the com.android.View in android coding?

How can I override the onScroll method of the View in android? I using it for the view to prevent the update in the view's checkboxes while when I scroll. I use a two dimensional array for storing the ...
2
votes
2answers
39 views

How to load different views on different desktop browsers

I am creating ASP.Net mvc4 application..In this, I want to load different views for different browsers on desktop version.. In mvc4 we can load different views for desktop vs. mobile but here I want ...
0
votes
0answers
16 views

Spinner with an CursorAdapter

Hi i would like to ask is it possible to make an Spinner directli from a CursorAdapter Class without an ArrayAdapter or an SimpleCursorAdapter. I am asking because i am trying to set up an Spinner ...
0
votes
2answers
16 views

Android: Compensate for screen offset due to menus/toolbars?

MotionEvent.getRawX/.getRawY return absolute coordinates (i.e. based on the entire screen). But the View receiving that MotionEvent may be (probably is) a child of yet another View, which itself may ...
0
votes
0answers
10 views

display webforms submission data in a view

I have simple webform in Drupal 7, with a private approval checkbox. I am trying to create a View which will display all approved submissions. What is the best way to accomplish this?
0
votes
1answer
20 views

Update reused BackboneJS views with jQuery

I have a secondary navigation that is used on some views but not all. Thus I include the following in views that use the secondary navigation which works without a problem: ...
0
votes
0answers
25 views

Android how is View position controlled?

According to the docs for the View class: The geometry of a view is that of a rectangle. A view has a location, expressed as a pair of left and top coordinates, and two dimensions, expressed as a ...
0
votes
1answer
31 views

How can I make my app search an existing UITableView for values selected in a UIPickerView?

So I've developed an app that currently has a populated UITableView. The UITableView is currently populated with data from a MySQL database. The UITableView also contains a working Search Bar. ...
3
votes
0answers
11 views

Dynamically hide a viewstub when a new one is created

I made a viewstub that is inflated and created again many times. The layout it uses includes a "delete" button that hides the viewstub (or deflates it). In the onCreate method I have this: ViewStub ...
-1
votes
2answers
71 views

View in MYSQL with 3 tables

I have 3 tables in mysql table 1 date name total recieve 2013-05-09 "aa" 20 15 2013-05-09 "bb" 10 17 table 2 name tree "bb" "a1" "aa" "a2" table 3 date ...
0
votes
1answer
48 views

How to pass values from view to controller in grails

I need to pass the Id value to my controller to execute the action. Currently this is what I have in my controller. def StartServer() { amazonWebService.ec2.startInstances(new ...
0
votes
1answer
20 views

Modify how auto resize works on UIView?

I have a UIView that is sized to fit the entire screen minus 5 pixels on each side. I have set it to autoresize however this makes the view lose its 5 pixels on one side, and completely fills the ...
0
votes
1answer
15 views

JSF 2 can't find my xhml files

I have a web jsf project, with, inside my Web Pages directory: /WEB-INF /faces /res index.jsp My faces dir got the files all.xhtml and login.xhtml. My web.xml <servlet-mapping> ...
0
votes
0answers
9 views

Entity Framework One 'Create' view for multiple models

Here is my 'Mentees' model: { namespace BEMentoring.Models { using System; using System.Collections.Generic; using System.Collections.ObjectModel; using ...
3
votes
1answer
23 views

NullPointerException when using .addView to ViewGroup

I'm trying to use .addView to add another LinearLayout to the ViewGroup. I am getting the following error: 05-21 16:23:04.096: E/AndroidRuntime(2086): FATAL EXCEPTION: main 05-21 16:23:04.096: ...
0
votes
2answers
25 views

Android - Creating listview with floating headers

Targeting 2.3 - 4.2 I would like to implement the following effect (see image), basically a group list where next item header pushes the last one. What would be the best approach?
0
votes
1answer
28 views

How would I use button in the following situation in grails?

I am returning a map value that contain multiple items. The map is as follows: def myList = [] //Some code to obtain the List List << ["Id": Id,"Name": Name,"Code": sCode, "RunType": x ] ...
0
votes
2answers
44 views

Is there a way to find all View.GONE elements on a page?

I have an android application where I'm hiding and showing different custom items on the page. Is there a way to loop through all the items on the page that are set to view.gone or am I going to have ...
0
votes
1answer
19 views

Detect if a video is playing on Android

Can my app detect if a video is playing via a 3rd party player? I want to hide a floating view (think Chatheads) when a video starts playing or becomes full screen. Chatheads does this when a video ...

1 2 3 4 5 150