Dandelion Datatables + Thymeleaf Cannot specify custom loading message

183 views Asked by At

I'm trying to specify a custom processing message while Datatables is making an ajax call, however Dandelion Datatables provides no direct dt:config (or whatever) option to set it. I've tried to follow the documentation here and here by specifying a custom configuration property like so:

<div dt:confType="property" dt:name="global.i18n.msg.processing" dt:value="My custom message..."></div>

...with no success. What am I doing wrong, or are the properties specified in the documentation not "configuration properties"?

1

There are 1 answers

2
tduchateau On BEST ANSWER

Just remove the group name from the configuration option, and it should work:

<div dt:confType="property" dt:name="i18n.msg.processing" dt:value="My custom message..."></div>