handlebars.java icon indicating copy to clipboard operation
handlebars.java copied to clipboard

Logic-less and semantic Mustache templates with Java

Results 176 handlebars.java issues
Sort by recently updated
recently updated
newest added

This is, in my opinion, a hard question to describe but I will try to do my best. For context, I was using [this](https://handlebarsjs.com/examples/builtin-helper-lookup-dynamic-property.html) example from the handlebars.js docs. I...

It appears that since v4.1.1, partial templates require the context to contain "size" and "empty" values. This is ok for Maps, but not for custom objects which don't contain these...

I not found any information about android versions support. I was surprised when my application crahed on supported device. Version handlebars.java:`4.0.6` works fine on androids before 4.4 I've updated from...

In order to use the compiler "compat" option, I needed to: 1. access the `Handlerbars.engine()` method which is private ; 2. execute the following code, so as to provide the...

I have a web app where tenants can build their own web pages via drag&drop and other methods (over simplified, but that's the general idea). The pages are put together...

We have some JAXB generated classes that have accessors that are all uppercase. Unfortunately when we try to use these accessors in handlbars we have to do this weird thing...

When using handlebars in an Android project using recent versions of gradle and the buildtools - gradle 3.2.1 - buildtools 28.0.3 There is an error when compiling: `Could not find...

for example, if i have a Class TestContext.java ~~~ class TestContext{ private SEOValue[] SEOValueArray; } ~~~ and the corresponding template: ~~~ {{#each SEOValueArray}} {{field1} {{/each}}} ~~~ handlerbars fails to render....

I wrote helper class to assign value in a variable through syntax `{{ var "$a" jsonObj }}` I got inspiration from enum "NumberHelper" and write my own enum VarHelper. Here...

Here is the custom javascript function that is used to assign value in a variable. I used it when I creating a template on UI http://tryhandlebarsjs.com/ and it is working...