-
Hi,
I would like to ask you to a big favour.
The EclipseLink 1.2 is already capable of ScrollableCursor, can you put it into the JPAUtils.java LAST_BLOCK_ACTION just as Hibernate?
Thanks, Attila.
2010-01-08 13:50:53 UTC by aszomor
-
Hi,
If I use Hibernate and went to the last page and I got a null exception.
I resolved it with these patches:
after below line 1113
scrollableResults.getClass().getMethod("close", new Class[0]).invoke(scrollableResults, new Object[0]);
insert these new lines
startIndex = Math.max(resultSetLength-blockSize,0);
query.setFirstResult(startIndex);
query.setMaxResults(blockSize+1);...
2010-01-08 10:21:52 UTC by aszomor
-
Hi.
I am see you have add shortcut before.
But the shortcut is not that kind, I am trying to add shortcut like this (Ctrl + F1), (Ctrl + F2), (Ctrl + A).
Like have in action Change User, Change Language, Exit.
KR.
2010-01-07 17:13:41 UTC by nobody
-
Hi i try to implement an ComboColumn which uses the Information of an JAXB generated enum.
But i have some problems with the data exchange between column and the VOListAdapter.
The enum looks for example like that:
[code]
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for...
2010-01-07 14:32:33 UTC by oliver83
-
Hi,
if mouse click on the CalendarButton and focus in the DateControl textfield part the from,validateCointrol called twice!
We found another little bug, please repair this too.
Thanks,
Attila.
2010-01-07 11:51:39 UTC by aszomor
-
Hi,
If in a DateControl value changed with a mouse click on the CalendarButton and the focus not in the DateControl textfield part the from,validateCointrol does not called.
Please repair this little bug.
Thanks,
Attila.
All other situation is OK (date changed in its textpart, or focus in its textpart and changed by calendar).
2010-01-06 15:29:08 UTC by nobody
-
Hi,
I would like to ask you an caseinsensitive like possibility in the additional search, when possible.
Grids.java 3693
new FilterWhereClause(attributeName,ClientSettings.INSENSITIVE_LIKE, value),
Just a simple solution as possible eg.
where UPPER(attrname) like UPPER(condition)
or
where LOWER(attrname) like LOWER(condition)
Because we use then quick search attribute in...
2010-01-06 10:24:46 UTC by aszomor
-
Hi,
One of them the LAST_BLOCK_ACTION which was only Hibernate feature till now.
Thanks, Attila.
2010-01-05 09:52:35 UTC by aszomor
-
Hi,
The actions that are assigned to first level menus can not started from MenuBar just from MenuTree!
You can try this behavior in "srcdemo/demo" application with a little change in ClientApplication.java
-change n312 to n4 in line 234
ApplicationFunction n4 = new ApplicationFunction("Function5","F5",null,"getF5");
-remove from line 244
n31.add(n312);
-add a new line to 247.
2010-01-04 14:19:59 UTC by aszomor
-
Hi,
You can try this behavior in srcdemo/demo application with a little change in ClientApplication.java
-change n312 to n4 in line 234
ApplicationFunction n4 = new ApplicationFunction("Function5","F5",null,"getF5");
-remove from line 244
n31.add(n312);
-add to line 247
root.add(n4);
Attila.
2010-01-04 14:09:06 UTC by aszomor