[JBoss JIRA] Commented: (JBIDE-1226) Various bugs in visual previews of richfaces components
by Sergey Vasilyev (JIRA)
[ http://jira.jboss.com/jira/browse/JBIDE-1226?page=comments#action_12385422 ]
Sergey Vasilyev commented on JBIDE-1226:
----------------------------------------
The most of components, according to Gavin's opinion, are nonfunctional because of we do not support executing of JavaScript in Visual Editor.
> Various bugs in visual previews of richfaces components
> -------------------------------------------------------
>
> Key: JBIDE-1226
> URL: http://jira.jboss.com/jira/browse/JBIDE-1226
> Project: JBoss Tools
> Issue Type: Bug
> Components: Visual Page Editor
> Reporter: Gavin King
> Assigned To: Sergey Vasilyev
> Fix For: 2.0.0.CR1
>
>
> Here's a list of previews that need fixing:
> rich:calendar won't popup, and puts the button in the wrong place
> rich:dataDefinitionList broken
> rich:dropDownMenu nonfunctional
> rich:panelMenu nonfunctional
> rich:panelBar functional, but rendering is broken
> rich:toolTip nonfunctional
> rich:modalPanel nonfunctional
> rich:dataTable broken
> rich:tree sorta works, but the nodes are not functional and don't render as links
> rich:inputNumberSlider and other sliders are ugly
> a4j:status should show some kind of preview
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
18 years, 5 months
[JBoss JIRA] Created: (JBIDE-1014) Generated entities error
by Slava Litskevich (JIRA)
Generated entities error
------------------------
Key: JBIDE-1014
URL: http://jira.jboss.com/jira/browse/JBIDE-1014
Project: JBoss Tools
Issue Type: Bug
Components: Seam
Affects Versions: 2.0.0.Beta4
Environment: RHDS 1.0.0 beta 2
JDK 1.5.0_12
Reporter: Slava Litskevich
Fix For: 2.0.0.Beta4
1. Generate entities for the project using New -> Seam Generate Entities (Reverse Engineer from database)
Entities are generated. There is an error message in the Problems section: Entity "Employee" has no Id or EmbeddedId
Employee entity has the following method:
...
public Employee(EmployeeId id) {
this.id = id;
}
@EmbeddedId
@AttributeOverrides( {
@AttributeOverride(name="id", column=@Column(name="ID", nullable=false) ),
@AttributeOverride(name="name", column=@Column(name="NAME", nullable=false) ),
@AttributeOverride(name="startDate", column=@Column(name="START_DATE", length=0) ) } )
@NotNull
public EmployeeId getId() {
return this.id;
}
...
If I remove empty line in getId method annotations error message disappears:
...
@EmbeddedId
@AttributeOverrides( {
@AttributeOverride(name="id", column=@Column(name="ID", nullable=false) ),
@AttributeOverride(name="name", column=@Column(name="NAME", nullable=false) ),
@AttributeOverride(name="startDate", column=@Column(name="START_DATE", length=0) ) } )
@NotNull
public EmployeeId getId() {
return this.id;
}
...
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
18 years, 5 months