Results 354 comments of Decebal Suiu

I don't know how many projects/users use this library (I am thinking to not disturb them with an update that contains an updated version of Wicket). @stefv You can propose...

I don't know what to say. In other project [available](https://github.com/decebals/pippo) on Github I used [runtime exception](https://github.com/decebals/pippo/blob/master/pippo-core/src/main/java/ro/pippo/core/PippoRuntimeException.java) and I think that it's not bad. I reviewed `DefaultPluginManager.getExtension() -> AbstractextensionFinder.find(...)` and I...

> An other way would be to create a new project (decebals/pivot) and move only the data model and Rest API module into that project. I would then change the...

Your problem is replicable on demo application or can you supply a quick start application that to highlight the bug? Do you use wicket 6 version (master) or wicket 7...

I committed on github some modifications on dashboard.css. Can you verify that everything is ok for you? Thanks

`ResultSetPivotDataSource` keeps all data in memory. In other project I wrote an implementation of `PivotDataSource` that keep data in [Orientdb](http://orientdb.com/orientdb). So, I can say that we can resolve this aspect....

@evermanisha The sensible part (from the memory point of view) of `ResultSetPivotDataSource` is the data field (https://github.com/decebals/wicket-pivot/blob/master/wicket-pivot/src/main/java/ro/fortsoft/wicket/pivot/ResultSetPivotDataSource.java#L28). The current implementation of RSPDS is like an offline cache (all records in...

Thanks! I love to see code that optimize something but I must admit that are rare the moments when something submit code that resolve a performance problem.

> 1) Is it possible to specify width of a widget? In my case: there should be 1 full-width widget with dynamic height and configurable set of subwidgets. For the...