Albert Gan
Albert Gan
Migrated from mailing list: https://groups.google.com/forum/#!topic/cqengine-discuss/qwkUy4gPNOo Is there a way i can do multiple updates to multiple indexedCollections within a single transactional context 'commit' ? This is to achieve the same...
### Device Info * Name: Razer Pro Type Ultra * Product Number: RZ03-04110100 * Model Number: RZ03-0411 ### Device Information ``` Bus 001 Device 007: ID 1532:0277 Razer USA, Ltd...
Hi Rocker ! Is there a way to provide default value for null to avoid NPE during rendering, for example rendering empty string instead ? I understand there's a null-safety...
Hi, Is the current 1.3.0 rocker able to load template from jar files aside from the filesystem ? I tried this and it didnt work, it errors ```Compiled template my/package/module/form/TMyForm.rocker.html...
So i have this @with in my template: ``` @with(MyFields fields = getMyFields(), nameField = fields.get("name"), passwordField = fields.get("password")) { my template content here } ``` This will cause ```...
Hi, I have an error stating: > With block invalid: multiple equals symbols found for assignment String href = "/abc?x=y" With this code: ``` @with(String href = "/abc?x=y") { }...
I am having a common situation where a page template is using a common layout template for generating a html page. The page template example: ``` @args(MyObj obj, MyError error)...
I would like to import these into all of my templates without having to declare them manually. ``` @import com.fizzed.rocker.* @import java.util.* @import etc.* ``` And the list could grow...
I'm currently using dynamic interface + rendering approach to speed up my process development. And from time to time, i'd be refactoring classes into different packages, or diff names, or...
Hi, im currently learning rocker, and very much impressed with it at the moment. I'm just curious whether it's possible to define a subtemplate within a template, for the sake...