Menu
  • HOME
  • TAGS

Dandelion Datatables Custom jqueryUI theme

spring,jquery-ui,themes,jquery-datatables,dandelion

I just made a test by downloading a theme from ThemeRoller. Here follows the required steps to apply a custom theme using Dandelion & Dandelion-Datatables v0.10.0. 1/ Download and install the jQueryUI-related assets Once you've downloaded all assets from ThemeRoller, place them inside your project. In my example, I use...

Spring Boot + Thymeleaf + Dandelion configuration not working

java,spring,spring-boot,thymeleaf,dandelion

There are several mistakes. Most of them are just same as what I did when i first used dandelion data tables. :) I'm writing the full simple examples for each of the code below for anyone's reference in future. So make sure you add only the missing ones to your...

Dandelion Datatables + Thymleaf + dt:format

datatable,thymeleaf,dandelion

Unfortunately, the dt:format attribute is not compatible with AJAX sources. See the last column of the link you've mentioned. In the upcoming version, it will simply be removed, because using DOM sources, expression utility objects meet all needs perfectly. So yes, currently the only way is to use the dt:renderFunction...

Adding nested columns to jstl report by datatables dandelion

hibernate,spring-mvc,datatables,jstl,dandelion

You should change to <datatables:column title="Father name"> <c:forEach items="${person.parents}" var="parent"> <c:out value="${parent.father_name}"/> </c:forEach> </datatables:column> The problem you're having is that property="parents.father_name"/> is not using the variable you've set in forEach, rather uses the parents property from the hibernate entity which is a collection...

Where to place the Dandelion datatables configuration on Netbeans

spring,jquery-datatables,dandelion

The dandelion/datatables folder is supposed to be placed under the classpath root of your application. In a Maven project, you would have placed it at: project |__ src |__ main |__ resources |__ dandelion |__ datatables |__ datatables.properties Everything placed under the src/main/resources folder of your project will be copied...

Dandelion Datatable taglib column filter not showing

jquery,jsp,datatable,taglib,dandelion

This bundle helped me: { "bundle" : "any-name", "assets": [ { "name": "dandelion-filtering", <= don't change this name, in order to override the asset "version": "1.6.1", <= doesn't matter (yet) "type": "js", "locations": { "webapp": "/your-asset-directory-inside-your-webapp/your-modified-filteringaddon.js" } } ] } I put in src/main/resources/dandelion, and now it loads the filteringaddon.js...

Dandelion DataTables deferRender not working

jsp,spring-mvc,jquery-datatables,dandelion

You may be interested by the deferLoading feature instead of deferRender. See this post for an example using plain DataTables. Unfortunately, Dandelion-Datatables doesn't support this feature yet. An issue has just been filled. Disclaimer required by Stackoverflow rules: I'm the author of Dandelion-Datatables...

NullpointerException at com.github.dandelion.datatables.core.configuration.Configuration.applyConfiguration only on Tomcat 8 (works fine on Tomcat 7)

java,datatables,tomcat8,dandelion,gvnix

Currently, gvNIX uses a Dandelion Datatables 0.9.2 custom-version which includes some patches than hadn't been applied until 0.10.0 (it was due to release-time problems). As far I know, we didn't make any test over Tomcat 8, so I think you found a bug ;-). If you want, you could report...

setting the number of visible rows in a dandelion datatable

java,spring,jsp,spring-mvc,dandelion

You can use lengthChange attribute which allows user to select the size of a formatted page from a select menu (sizes are 10, 25, 50 and 100) this property will only work when paginate="true" if you don't want to show dropdown and would like change it to 15 then you...

Dandelion datatables exporting to Excel - missing export links

spring,datatables,apache-poi,thymeleaf,dandelion

As soon as you activate export, Dandelion-Datatables makes available a new control element accessible through the E parameter and automatically updates the dom parameter to include this new control. Since you override with the dt:dom parameter, you need to specify the new control, for example with: dt:dom="Efrtlpi Disclaimer, as required...

Dandelion datatables not working on Liberty profile

websphere-liberty,dandelion

Found the issue in the ResourceScanner class. Websphere application servers use a jar naming convention of wsjar. I created a fix here https://github.com/ohiocowboy/dandelion/tree/feat/liberty