I just ran into the same issue on Mac OS X 10.7.4, STS 2.9.2 and ROO 1.2.2 and didn't find a solution by doing the usual Google search but found out, that CTRL-ALT+SPACE seems to do what CTRL+SPACE...
Type: Posts; User: Harald Walker; Keyword(s):
I just ran into the same issue on Mac OS X 10.7.4, STS 2.9.2 and ROO 1.2.2 and didn't find a solution by doing the usual Google search but found out, that CTRL-ALT+SPACE seems to do what CTRL+SPACE...
In my case it was a combination of two issues. Because of how Oracle handles empty strings, the version number of the entity got increased each time (even if there was no change) and if a user uses...
I changed pagination.tagx like this:
<spring:url value="" var="next">
<spring:param name="page" value="${page + 1}" />
<spring:param name="size" value="${size}" />
<c:forEach...
I seem to be running into the same problem when a user edits an entity including an empty string field, saves the edit form and then goes back (browser back function) to the form and tries to save...
yes, that's the same issue and delivers a solution for the date column. Setting maxLength to a negative number avoids the problem described in ROO-1861 and in case of a formatted date field it...
Solved it now by extending the column and table tags with column type information and adjusting the display based on the type.
Am still wondering if there is a nicer or better solution?
Does anyone have an answer for this?
I have the same issue with boolean fields of an entity. While the create and update forms display the dojo decorated checkbox, the show page and list view...
In my list view of an entity I have a modified date with the @DateTimeFormat(style="MS") annotation. ROO picks up this format for the view page but the list display is not using the format...
Set a breakpoint at the end in installLabelConverts() and inspect the registry. I can see, that my custom converters have been registered correctly.
in ApplicationConversionServiceFactoryBean_Roo_ConversionService
public void ApplicationConversionServiceFactoryBean.afterPropertiesSet() {
super.afterPropertiesSet();
...
Please post your ApplicationConversionServiceFactoryBean code. It sounds familiar but I have it working now. Just copying my old converters was not enough.
Seems like pushing in and removing any request mapping is enough.
E.g. just:
public String createForm(Model model) {return null;}
does the trick but it is not nice having these dummy methods...
OpenID and OAuth support.
I have the same problem. Almost all of my controllers with pushed-in methods are broken because ROO re-generated methods in the roo_controller.aj files since the update from 1.1.0 to 1.1.1. In this...
If all you want is validation of numbers, you could copy input.tagx and change the decoration widget from dijit.form.ValidationTextBox to dijit.form.NumberTextBox.
screenshot:...
Even though required is set to false (the default behavior in select.tagx), Dojo keeps showing me 'This value is required'.
I think required: ${required} should be added to the widgetAtttrs.
...
Dojo is being packaged by spring-js-resources-x.jar, which belongs to Spring Webflow.
I am using 2.2.1.Release in my ROO project. Unfortunately none of the dojo javascript files includes a version...
@pavan4uus: has your problem been solved?
I am using my ROO application with Oracle 11g as well. Had some issues when switching from MySQL but everything is working fine now.
You might be running into an exception which is not being displayed. That would explain why you go back to the form and don't see the correct results in the database. You could set a breakpoint in...
Could you show us your entity class and controller?
The error message is pretty clear. So either add the message or change id="c_my_domain_image_image" to one of your domain objects which already has an entry in application.properties.
Have a look...
That is being shown in
http://forum.springsource.org/showpost.php?p=290144&postcount=4
This is my upload form:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<div xmlns:c="http://java.sun.com/jsp/jstl/core" xmlns:field="urn:jsptagdir:/WEB-INF/tags/form/fields"...
Hatim, I am talking about the tags in the tag folder, not the generated views. The views use the z attribute so that ROO can handle them. I've started to modify the tags which are being used by the...
I am trying to get the file upload styled nicely.
In the Dojo demo (http://demos.dojotoolkit.org/demos/uploader/?forceNoFlash) they have styles like 'dijitFileInputReal' for the file upload but I...