Priority: Normal
Current State: Closed
Released In: n/a
Target Release:
I believe there is a mistake in lib/Foswiki/Plugins/JQDataTablesPlugin/SearchConnector.pm
At line 111 the query is formulated as
form='formTitle'
The correct query is:
form.name='formTitle'
--- a/lib/Foswiki/Plugins/JQDataTablesPlugin/SearchConnector.pm
+++ b/lib/Foswiki/Plugins/JQDataTablesPlugin/SearchConnector.pm
@@ -108,7 +108,7 @@ sub buildQuery {
$form =~ s/\//./g;
my @query = ();
- push @query, "form='$form'" if $form;
+ push @query, "form.name='$form'" if $form;
my @columns = $this->getColumnsFromRequest($request);
With this change the following macro presents a result.
%DATATABLE{
web="Applications"
form="TopicFunction"
}%
--
BramVanOosterhout - 31 Mar 2017