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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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