This tag is for questions about database view or UI / architectural view. See also the following tags: views, sql-view, uiview.
0
votes
0answers
2 views
Translate data in view sent from controller
I have a question about translating data sent from the controller to the view.
I can translate text in my view like this <?php echo $this->translate("Hello World!"); ?>
But in my controller ...
1
vote
0answers
6 views
set only only video view landscape in ios?
my application in portrait and landscape mode.
I want to show only one videoviewcontroller in landscape mode other all in portrait.
So please help me and tell me how can I change only one Videoview ...
0
votes
1answer
10 views
How to create a view in eclipse which contains SWT components?
I am trying to create a view in eclipse. I want my view to contain a Textfield and a button. the action is triggered by clicking on the button and some processing will be done on the inserted query in ...
0
votes
0answers
10 views
Dismissing Modal View Controller In Landscape On iPad Always Changes to Portrait
I have situation where I'm displaying a View Controller via a Modal Flip segue. Then, from the newly presented VC, I'm presenting another VC modally as well (sliding up from the bottom). When I ...
0
votes
0answers
23 views
why does my view in postgresql not use the index?
I have a large table (star catalog), of which I have a subset. I implement the subset
as a union of two tables, where I make use of a cross index.
The issue is that a query from the view doesn't seem ...
0
votes
2answers
21 views
SQL function to search across all columns in view for a string
I have a table with 99 columns and a rowid:
[RowID] [int] NOT NULL,
[Col1] [nvarchar](max) NULL,
[Col2] [nvarchar](max) NULL,
[Col3] [nvarchar](max) NULL,
[Col4] [nvarchar](max) NULL,
.......
[Col99] ...
0
votes
0answers
16 views
dojo parser error with core-web-layer.js:56
i have and app in worklight 6.0.0 and with dojo 1.9 and when i add a callback function and do the transition to this view i receive this error:
dojo/parser::parse() error at ...
1
vote
1answer
15 views
PHP - Access MS SQL View and Echo Results
I'm trying to access and read a view from a MS SQL database with PHP. For now I'm just trying to echo out the results on the screen. When I test, my page shows nothing at all.
This is what I have:
...
0
votes
2answers
17 views
Hashcode() and equals() implementation in View Class
Does View class overrides equals() and hashcode() methods? I want to create HashMap with AdapterViews
0
votes
0answers
9 views
How to set an Alert/Notification on a specific View?
How can I set a SharePoint alert on a specific view in SharePoint 2013?
I can't find the option anywhere. Was it removed?
SharePoint 2013:
SharePoint 2010:
A simple Google search for "How to set ...
0
votes
2answers
33 views
Best way to join parent and child tables
I have Parent table A.
A has few child tables such as B,C,D,E,F,G
The child tables are not linked to each other. They are only linked to A.
A has a key Id which is used as foreign key in all the child ...
1
vote
3answers
26 views
Does using Backbone's dynamically created .el couple templates with the view?
I'm learning how to use Backbone in a project that I'm working on and have a question about the best practices when it comes to decoupling Views and Templates in Backbone. In particular what is the ...
0
votes
1answer
25 views
Android Draw rectangle on canvas using ontouch
I need to draw a rectangle on the canvas with points from ontouch events. i got the rectangle shape working but when i draw another rectangle the previous rectangle disappears. I think i need to store ...
0
votes
1answer
16 views
Fuelphp: Can't load module's view from module's controller
Hi There need assistance here(specially those fuelphp developers),
I'm having these set-up on the fuelphp where I am using a module implementation. Below is my current set-up:
app
-modules
--design
...
0
votes
0answers
22 views
Performance issue in WCF Data Service with MySQL view
I have a wcf dataservice named properties.svc with MySQL database. And I included one table tbl as well as one view vw. This view is just a select statement from the table tbl.
Now I am making http ...