[ANN] wicket-jasper-ui repository

2009-10-29 Thread Eman Nollase
Hello,

Just to announce that the wicket-jasper-ui has finally got a maven 2
repository: in maven pom.xml

dependency
  groupIdcom.ccti.jasper/groupId
  artifactIdwicket-jasper-core/artifactId
   version2.3/version
/dependency

..

repositories
  repository
   idwicket-jasper/id
   nameWicket-Jasper Repository/name
url
http://wicket-jasper-ui.googlecode.com/svn/wicket-jasper-repo/url
  /repository
/repositories


wicket forum api

2009-10-05 Thread Eman Nollase
Hello,

Is there a wicket base forum API?

thanks a lot.
cheers.


Update ListView using ajax

2009-09-05 Thread Eman Nollase
Hello,

For no apparent reason the listview is not updating when i targeted it. im
using wicket 1.4.1.

here is the code:

final WebMarkupContainer resultcontainer = new
WebMarkupContainer(resultcontainer);
add(resultcontainer.setOutputMarkupId(true));

final ListViewCustomFileDescription files = new
ListViewCustomFileDescription(files, results)
{
@Override
protected void populateItem(ListItemCustomFileDescription item)
{
final CustomFileDescription fileDesc = item.getModelObject();
item.setModel(new
CompoundPropertyModelCustomFileDescription(fileDesc));
item.add(new Label(name));
item.add(new Label(lastModified));
}
};
//files.setReuseItems(true);
resultcontainer.add(files);

final ListCustomFileDescription results =
fileSearchService.search(query.getDefaultModelObjectAsString());
System.out.println(results.size());
files.setDefaultModelObject(results);
target.addComponent(resultcontainer);

...the results are just appending to each other.

Thanks a lot.
Cheers.


How to target PagingNavigator

2009-07-04 Thread Eman Nollase
Hello,

It may sounds weird but i had to ask anyway, is there a way to target
PagingNavigator? I need this to update the list of page presented by the
navigator. the need came when every page of the queried from DP will be
updated.

here is the scenario:
1. i have queried 100 rec not updated and 10rec/page. So there is 10pages
displaying 10 records each.
2. when the first 10 record display, when it passes in the service layer it
will be updated. The number of count still the same. So in the DB now i have
10rec updated and 90 is not. (but in the display it shows 10 pages in
navigator).
3. i  pressed page 2 till 5.Now there is 50 updated and 50 not updated. but
still the navigator display 10 pages.
4. i clicked page 6 and return empty. My hunch is that it is looking for
limit from 51 - 60 which is really no value because the DB only contains 50
not updated records. same goes for 7th to 10th page.

What I'm missing step here? How do i update PagingNavigator listing of
pages? so that everytime i click the pages it will also be updated of the
current count in DB?

Thanks a lot.
Cheers.

- eman


Grizzly + Wicket integration

2009-06-01 Thread Eman Nollase
Hello,

Is there a Wicket + Grizzly integration?

Thanks a lot.
Cheers.


Palette problem

2009-05-14 Thread Eman Nollase
Hello,

I have a problem about palette. here is the scenario:

if there is already values in selected side and when I add values from
available side there is only n-1 values get. If there is currently 2 values
in the selected side then i add 2 values from available side, i only get 3
values. The last one is not included in the result. Any idea?

Thanks a lot.
Cheers.


wicket-jBPM integration

2009-05-09 Thread Eman Nollase
Hello,

im currently developing wicket-jbpm integration. and currently doing the
infrastructure setup and once done i will upload it to googlecode. anyone
wants to join the development is cordially invited.

Thanks a lot.
Cheers.


wicket-push project

2009-04-30 Thread Eman Nollase
Hello,

As I browse to wicketstuff repository the wicket-push project is already
gone?

Thanks.
Cheers.


wicket + jbpm

2009-04-29 Thread Eman Nollase
Hello,

Is there a wicket + jBPM integration? Thanks a lot. Cheers.


How to update PagingNavigator display

2009-04-24 Thread Eman Nollase
Hello,

My problem is how to upddate display of paging navigator display. for eg..if
update 10rows in 100 rows it should dsiplay 9 items link.

Thanks a lot.
Cheers.