The presentation-layer tag has no wiki summary.
1
vote
1answer
99 views
The N-layers paradigm - is this concept wrong?
I just saw the lecture:
Breaking apart conceptions
He keeps saying that the 3 layers paradigm started because of the problem with connection pooling.
And NOT because of architectural ...
0
votes
1answer
93 views
Presentation logic vs UI logic
Can anyone clarify these terms please.
I find them to be very vague or context-dependent.
For example we have a VM with the items list. The selection affects not only the accesibility of the buttons ...
0
votes
0answers
79 views
Seam project structure and Presentation Layer
I'm in the process of planning to moving a Seam 2.3 project from Tomcat (Seam with POJO) to JBoss 7 to use full EJB capabilities. I chose to go for a maven-based EAR packaging, since all Seam ...
0
votes
1answer
189 views
Presentation, Service and DAO layers relationships
I have thought a lot about this question, but couldn't found some clear answer on this:
As I've understood at the last time, business layer should works only with model objects. It shouldn't know ...
0
votes
0answers
93 views
cannot get presentation layer from UIImageView in NSMutable array?
I have 10 UIImageViews in different locations. At a certain time a method gets run which moves each of those UIImageViews y up the same distance. This is called the 'scrolling method'
Well, during ...
0
votes
1answer
204 views
Animate a UIImageView in the middle of an animation
I have an object that is moving right to left across the screen:
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:7.8];
[UIView setAnimationCurve:UIViewAnimationCurveLinear];
...
0
votes
2answers
306 views
Business Layer and Presentation Layer responsibilities [closed]
(this is an independent question, but came again to my mind while I was asking this. Just to provide some context.)
I was wondering about this: in a desktop application with a Swing GUI, designed ...
0
votes
2answers
88 views
MVC: calculation of UI elements in Controller or View?
I am working on an ASP.Net MVC application, and its architecture consists of the usual DAL, BL, and PL layers.
Addresses are stored as separate fields in the database, but shall be displayed in a ...
1
vote
1answer
233 views
MVC design pattern for the Presentation Layer in 3 layer architecture
I currently have a web application that is based upon a 3 Tier architecture. I wish to change my Presentation layer from using Web Forms to MVC4.
Now I have done some research and from what I read I ...
0
votes
1answer
136 views
MVVM Pattern Contradiction - Architectural Vs Presentation?
What is a Presentation Layer Pattern/Presentation Pattern? As far as I know MVVM is an Architectural Pattern, but I see many people, articles, blogs referring it as a Presentation Pattern. And I got ...
0
votes
1answer
588 views
GWT or Other Presentation Layer Technologies with Spring WebFlow/MVC Framework
First off, I've never used GWT before. I have good experience in HTML/CSS/JS/JSP.
I'm looking for people's opinions on the suitability of Google Web Toolkit for a brand new web app I'm developing.
...
0
votes
0answers
380 views
Completely rewriting the user interface of OpenGTS [closed]
Hi I was asked to completely rewrtie the user interface of the OpenGTS (gps tracking system)
Has anyone attempted something like that before ?
Is the presentation layer mixed with the business logic ...
0
votes
1answer
43 views
Interrupting the Agile iterations process to revamp presentation layer.
We're about a year in to an Agile project having had multiple releases already. Our process is to get new designs, dev and test in 2 week iterations.
That works OK, but after a year of this, we're ...
0
votes
1answer
63 views
What are my options for a CMS that has either no presentation layer or a highly abstracted presentation layer
A little context...
One of the big downfalls of most CMS's in my opinion are tight integration of their presentation and back-end content management layers. I see Drupal, for instance, as tightly ...
0
votes
0answers
80 views
How do I sense that a UIImage View has hit the side of the iPad screen?
I am new to iOS programming so I do not know precisely the correct terms so bear with me. I have a CAKeyframeAnimation occuring where the presentationLayer of a UIImageView moves in a quadratic curve ...
0
votes
1answer
35 views
drawbacks for implementing presentation layer inside data layer
whats the drawback in implementing the presentation layer inside data layer. i guess that would be much dynamic and performance oriented way to go for, for example if i compile to code (i mean full ...
3
votes
1answer
910 views
How to get UIImageView real location in view while animation?
Hi all,
For the animation i used:
[UIView commitAnimation:@"anim" context:nil];
[UIView setAnumatioDuration:10];
imageView.center=CGPointMake(100,100);
[UIView commitAnimation];
The thing is that ...
0
votes
1answer
425 views
Separating BLL, PL and DAL in a web application
I have been given to develop a web application that can have multiple presentation layers, currently its on the web but soon to be on desktops and other platforms. So I searched around on how to do it ...
1
vote
0answers
558 views
JSP/Servlet architecture with Java Backend
EDIT:: Instead of Not using a framework, i just had a look at the Play framwork, which uses .index file for the layout and just plain java for the business part. Kinda like what i want :P ;;
After ...
0
votes
2answers
309 views
Presentation Design Patterns
I've been studying and working with presentation design patterns for a while, and i have successfully impleneted design patterns like FrontController, MVP etc. for WebApps, and of course the MVC ...
0
votes
1answer
227 views
Develop application layer which has no dependencies to Presentation Layer?
I am learning general development strategies but there are a lot question in my mind about them. One of them is about creating application layer which shouldn't have dependencies Presentation layer.
...
2
votes
0answers
352 views
Layer size/bounds during a core animation
I am working on a Mac app for Mac OS X 10.6+ and need to redraw the contents of a CAOpenGLLayer while an animation is occurring. I think I've read up on all the necessary parts, but it is just not ...
1
vote
0answers
211 views
How to fix 2 columns(First and last) present in gridview, and moving columns present in between?
I am working with ASP.net 4.0 version. I want to create UI as shown in below image.
However I am not sure about controls that I am using are suitable for this UI or not. I am using data repeater ...
3
votes
2answers
177 views
Is there a neat way to get attribution for a background image in the presentation layer?
I have a CC-BY image that I'm using as a background, brought in by CSS. This image is purely there for its looks, and definitely not content. I need to put attribution on this image somewhere, and ...
0
votes
2answers
115 views
Where should I create new entity - in presentation layer or not?
As I'm just learning all the fruits of Java and everything I wanted to find out one thing which was flying around in my mind for some time.
The code bellow is quick example of two methods in two ...
0
votes
1answer
219 views
Techniques for setting up a web application's presentation layer
I am working on a Ruby on Rails web application, although I guess it should not matter too much what my backend layer is.
I am currently evaluating ways for my application to elegantly handle the UI ...
0
votes
3answers
300 views
Separating SQL reporting layer and presentation layer?
I'm using SQL Server Reporting Services. Most of my queries run as reports which are simply exported as PDF.
I'd like to know which type of calculations, if any, should done in the actual SQL query ...
0
votes
3answers
148 views
.net: Introducing anonymous types in business layer?
I don't want to create a new class and decided to use anonymous type in order to send data from presentation layer to biz layer.
But my problem is how can I introduce an anonymous type in biz layer? ...
0
votes
6answers
1k views
Three tier architecture
I have some questions about three tier architecture.
how to implement an application in three tier architecture correctly?
how to communicate between these tiers ?
Is data tier completely equals to ...
1
vote
3answers
91 views
Should I try to put asp control events into the BLL?
I have recently been learning about Data Access Layers, Business Logic Layers and Presentation Layers, but I still have a few things that aren't quite clear.
I can use the DAL and BLL with the ...
1
vote
1answer
502 views
querying the presentation layer of a UISlider
i am setting up a simple UISlider to animate it's progress:
[UIView animateWithDuration:songLength
delay:0.0
options:UIViewAnimationOptionRepeat|
...
2
votes
1answer
327 views
Using business object in presentation layer
In a 3-Layer application, from better design/architecture point of view, can/should i instantiate a business class (which resides in Business Layer) in Presentation Layer? I mean, is that a bad ...
2
votes
3answers
323 views
Presentation layer / Public Services layer. A common term?
While defining our application architecture (which contains both web UI and external web services) we stumbled upon our inability to find a common name for the topmost layer.
It is quite clear that ...
0
votes
1answer
200 views
What is the best framework for web application without using web/app server?
I want to deploy an web application without using web server(Tomcat,Jboss etc.) like sonar/hudson does. What presentation framework is suitable for it which has JSP/Struts like capabilites?
0
votes
1answer
307 views
Multi choice UI - best practice
Mayby it's not a question strictly for software developers but let's face the truth... everyone is sometimes an UI designer - web apps, winforms... everyone have to place some components...
Now here ...
1
vote
1answer
189 views
WPF: Control Visibility from Database / Prerender Hook
we have a rather odd requirement: The visibility of any control in our WPF-Application is to be driven by a database-table.
That means we have a table which stores the name of the element and its ...
0
votes
1answer
46 views
Writing custom controls
HI Guys,
I'm interested writing a set of custom controls (most likely in ASP.NET), was wondering what sort of guidelines I should follow.
- Is there any generic requirements for UI controls that ...
0
votes
2answers
200 views
Separation of logic from presentation: HTTP variable names?
This could probably be considered an academic question, rather than a real world one - but throwing it out to see if anyone has any great ideas! We all know that keeping the business logic of an ...
1
vote
2answers
201 views
What is the suggested way to show exception messages on UI which were produced in Business Layer?
Is there a pattern OR 'a best practice' on creating user's friendly messages in the presentation layer by using exceptions which were thrown from the Business Layer?
Actually in many cases I prefer ...
1
vote
1answer
1k views
presentationLayer position property yielding bad values on iPad, no problem with iPhone
I have a game with several small objects animated using CAKeyframeAnimation. Objects animate perfectly for BOTH iPhone and iPad. However, the value of the position property of the animated CALayers' ...
1
vote
2answers
828 views
best way to reference business objects from presentation layer..?
I want to develop an enterprise app that includes a WindowsForms presentation layer, middle-tier components for business logic and data access, and a MsSQL Server database. Middle-tier components ...
0
votes
2answers
437 views
How best to implement support for multiple devices in a web application
My client would like a business application to support 'every possible device'. The application in question is essentially a web application and 'every possible device', I believe encompasses mobile ...
3
votes
1answer
361 views
New Presentation Layer for Webapplication
we've got an existing webapplication written in magic. But now we eventually want to exchange the existing web-presentation layer (maybe also rich client) to a server side presentation layer. What do ...
4
votes
1answer
1k views
Passing Business Validation Error from Service layer to presentation layer
We are using MVP pattern in our Presentation Layer(PL) and a WCF based service layer(SL). PL calls operation contracts on the SL and internally it does some business validations. If the validation ...
3
votes
3answers
367 views
Presentation technology for multiple devices
Our application is supposed to serve multiple devices, from simple to smart-phones, IPhones, touch-screens to normal browsers.
Application is layered, so we can reuse the business and persistence ...
4
votes
2answers
704 views
Refactoring a legacy WebForms app to better separation of concerns
i.e. Is MVP still the next best choice when MVC is not an option?
I thought I'd ask this here as I'm sure there are others like me who don't have the luxury of being on a green-field project and want ...
1
vote
2answers
580 views
Framework recommendation request: Spring, Struts, Java EE?
The last time I looked at web applications, the consensus seemed to be Struts/Java EE. Now, it looks like Spring MVC/Java EE or Struts/Java EE are both viable solutions.
Is this generally correct? Or ...
0
votes
1answer
377 views
What WinForm Control To Bind List(Of T)?
I have been working on keeping things object oriented for my project. Currently, I'm using a .DLL which supplies all of the app's classes to the WinForms project acting as the presentation layer.
My ...
0
votes
1answer
434 views
Presentation Layer Objects
Should a Presentation Layer be split into presenting and receiving objects Or single objects that handle data in both directions?
3
votes
2answers
3k views
When to use @ in a Rails View and when to use a symbol?
<% form_tag(:action=>'update', :id=>@album.id) do %>
Title: <%= text_field(:album, :title) %><br>
Artist: <%= text_field(:album, :artist) %><br>
Genre: ...

