Questions tagged [page-flow]

15 questions
10
votes
4 answers

What is the best way to graphically represent page flow, as applicable to an action oriented web application?

What is the best way to graphically represent page flow, as applicable to an action oriented web application? What model do you use to represent page flows (page flow diagrams) encompassing pages (views), user actions on those views (events) and…
Vihung
  • 12,947
  • 16
  • 64
  • 90
7
votes
3 answers

How to implement a complex page flow in a Java Web application

I am trying to implement a reasonably complex page flow (100+ pages) as a traditional web application. I found a few options, but none of them are 100% convincing Harcode the flow into the controllers, do redirects, etc. This is obviously not the…
Peter Szanto
  • 7,568
  • 2
  • 51
  • 53
5
votes
3 answers

page after login in playframework

In my play! app,I have coded the controllers.Security as class Security extends controllers.Secure.Security { ... static void onDisconnected() { Application.index(); } static void onAuthenticated() { User user =…
Damon Julian
  • 3,829
  • 4
  • 29
  • 34
2
votes
1 answer

How does CSS writing mode interact with page flow

The CSS Writing Modes Level 3 specification establishes logical terms such as "block dimension", which would be vertical for horizontal writing modes (as I'm writing now). Thus "block size" in Western writing would correspond to the physical…
Garret Wilson
  • 18,219
  • 30
  • 144
  • 272
2
votes
1 answer

WSRP Portlets in Oracle WebCenter: transforming task flows(ADF) in portlets

I am doing some research on the portlets offered by WebCenter, but I have some problems related with transferring parameters between them. My idea was to create 2 portlets: a department portlet where I can chose a departmentId which is sent as a…
Georgiana
  • 21
  • 2
1
vote
1 answer

responsive web design for n columns of random height portlets

Briefly: How do I lay out N columns of random height portlets all in CSS so that if the browser is resized, the number of is columns reduced (using @media (min-width:)) and the portlets still sit nicely together on the page with no gaps. This is…
Steve
  • 3,601
  • 4
  • 34
  • 41
1
vote
1 answer

Managing page flow in Play! framework tags

In a web app built using Play framework, I have a checkout page which lists the user's shopping cart as well as an address form. I created the address form as a tag (addressform.html) so that it can be reused. checkout.html: #{if…
jimgardener
  • 637
  • 2
  • 10
  • 26
1
vote
0 answers

Jump to a state not defined on the jbpm pageflow

I have a pageflow with 4 steps,
JGS
  • 813
  • 2
  • 8
  • 17
1
vote
0 answers

Pageflow installation: Getting 'uninitialized constant Pageflow::User (NameError)'

I'm trying to install Pageflow (latest v.0.6.0) and getting this error, after typing rails generate install:pageflow: /Library/Ruby/Gems/2.0.0/gems/pageflow-0.6.0/admins/pageflow/membership.rb:11:in `block (2 levels) in ':…
maschino
  • 41
  • 5
1
vote
2 answers

Unexpected padding/margin in image links

Below the main product image here: http://www.ivault.sg/shop/audio/speakers/bowers-wilkins-mm1-speakers There's a space between the line and the image that's not specified in CSS. Inspecting element using firefox doesn't show any css…
JC Lee
  • 2,337
  • 2
  • 18
  • 25
0
votes
2 answers

Is there a way to place text over image without background-image, or position: relative?

My situation is that I don't want it as a background-image because I'm changing the opacity on hover, and so that it didn't affect the text as well I made them separate elements. However, moving them using position: relative; means that I am left…
DexHewitt
  • 3
  • 2
0
votes
2 answers

Do you think the Spring WebFlow Flow Definition format would be suitable for externalising a Web Flow for a non Spring framework?

I like the idea of Spring WebFlow - particularly the way the flow definitiion abstracts the higher level web flow from components in the Spring Bean Container. The Flow definition format seems to include everything one needs in a Web Flow - views,…
Vihung
  • 12,947
  • 16
  • 64
  • 90
0
votes
1 answer

Seam pageflow example NumberGuess Not landing on to the second page

I'm trying to run simple Seam PageFlow example NumberGuss. I have deployed it on Jboss Server. When I access the URL it lands on the first page but if I hit any of the button provided on that page it says "The page isn't redirecting properly".On…
Aniket
  • 1
  • 3
0
votes
0 answers

Getting 'undefined method `to_sym' while migrating while setting up Devise

I am trying to set up Pageflow. Finally I managed to create DBs and install pageflow. I can run rails s but I get Migrations are pending; run 'bin/rake db:migrate RAILS_ENV=development' to resolve this issue. in my browser. Anyway, typing bundle…
maschino
  • 41
  • 5
0
votes
1 answer

html vertical wrapping page flow

Say I have a list of spans that's an alphabetical list. Normally with html, if I create a bunch of them, say display:inline-block, they'll show up like so: +------+------+------+ | a | b | c | +------+------+------+ | d | e | …
phazei
  • 5,323
  • 5
  • 42
  • 46