ok this is a bit late in coming but heres a reference to them. they are not publicly available.
...
Type: Posts; User: jetlag; Keyword(s):
ok this is a bit late in coming but heres a reference to them. they are not publicly available.
...
thank you for this post. it seems so basic it should be in the main spring documentation. i struggled with this for hours and this is the only post i have seen anywhere that has any sanity to it.
I apologize this is a bit of a crosspost with spring security, but on resin with webflow 2.0 the spring pre-auth filter seems to be rewriting the action= url of the <form:form tag to something that...
i was able to work around the problem by manually setting the form action to:
action="searchPlain?execution=${flowExecutionKey}"
heres some additional strange information. when i remove the filter, i get the form on my page posting to:
<form id="bookingForm" action="/WebGNR/searchPlain?execution=e1s1" method="post">
...
I am using Resin 3.1.8 and Spring security 2.0.4. I have the below filter defined in the web.xml. I have tried it alone and with the RequestHeaderPreAuthenticatedProcessingFilter.
I am using...
Same here - I am using siteminder and i get a 500 error that it cant find the auth token. i am interested in providing the unauthenticatable user (like in my test box where i dont have siteminder)...
I also tried changing the bindings to:
<form:input path="checkinDate.date" />
<form:input path="checkinDate.month" />
<form:input path="checkinDate.year" />
but still get the same NPE. The...
i have a site with two different views - one ajax form with a nice date field, and one with three different fields that convert to a date field. i'd like to use the same model object for both. am i...
What is the preferred way of showing a progress indicator or busy indicator while i'm waiting for a long-running fragment update to occur?
is there an example of using Webflow in a situation with multiple windows? I have a requirement for a search and results page, though the users want to have a new detail window open for each result i...
it worked out well - here's what i did - included this transition inside the view-state:
<transition on="submitSearch">
<evaluate expression="loadBookingsAction.load" />
</transition>
...
i have an explorer-style interface - one div has a query form, one a results list and one the details of the currently selected result from the list. each of the three is a tiles fragment in its own...
thats brilliant - it worked like a charm :cool:. is there any documentation on that currently? thank you for the help!
now i am trying to set the widgetType attribute on the inner panel like so:
<div id="bpanel">my content<br>my content<br>my content<br>my content<br></div>
<script...
maybe this will help - i did a view source on the webpage so you could see whats actually being sent to the browser. i do indeed get an error:
_6.getTitleHeight is not a function
web page:
...
here is an update on the code. it just shows up with absolutely no decorations - a box and two text items in it - Test1 and Test2. additionally i have the following script includes. The dijit.js may...
sorry yes i removed a couple attributes and re-edited my code before posting. i think theres an extra comma where there shouldnt be. anyway i'm not getting any firebug exceptions.
I am trying to figure out how to use some of the dojo tools as shown below with no success at all. i can't seem to make either the accordion or the expando container work. the text prints out but...
I am helping to make an existing workflow engine transactional and am getting stuck on something. i am using Spring 2.0.1 and Hibernate 3.2.
I have a number of DAO's defined. I have an engine...