I have to choose between the normal Table and the Livetable.
I like the possibility to make select boxes with the normal table (using:
class="unsortable selectFilter")
But I have problems with the filtering. If I add pagination and use the
filter field he shows me only the results of the current page.
Livetable finds all pages but I can't make such Filter-Boxes.
Please tell me if I did something wrong with the normal table!
Here is my code:
## The full data to display
#set ($spaceDocs = $xwiki.getSpaceDocsName("Projects-Todo"))
#set($itemsPerPage = 3)
#if($request.ipp)
#set($itemsPerPage = $xwiki.parseInt($request.ipp))
#end
#set($pageNumber = 0)
#if($request.page)
#set($pageNumber = $xwiki.parseInt($request.page))
#end
#set($startAt = $itemsPerPage * $pageNumber)
#if($startAt < 0)
#set($startAt = 0)
#end
#set($endAt = $itemsPerPage * ($pageNumber + 1))
#if($endAt > $spaceDocs.size())
#set($endAt = $spaceDocs.size())
#end
#if($startAt > $endAt)
#set($startAt = $endAt)
#end
#set($totalPages = ($spaceDocs.size() - 1) / $itemsPerPage)
#set($crtPageNumber = $startAt / $itemsPerPage)
#set($spaceDocsInPage = $spaceDocs.subList($startAt, $endAt))
#set ($hql = ", BaseObject as obj where obj.name=doc.fullName
and obj.className='XWiki.Todo2Class' and obj.name<>'XWiki.Todo2Template'
order by doc.date desc")
#set ($todos= $xwiki.searchDocuments($hql, $itemsPerPage, $startAt))
<table id="todoTable" class="grid sortable filterable doOddEven"
cellpadding="0" cellspacing="0" border="0">
<tr class="sortHeader">
<th>Page</th>
<th>Description</th>
<th class="unsortable selectFilter">Priority</th>
<th class="unsortable selectFilter">Status</th>
<th>Date</th>
</tr>
#foreach ($todo in $todos)
<tr>
#set ($todoDoc = $xwiki.getDocument($todo))
#set ($todoObj = $todoDoc.getObject("XWiki.Todo2Class"))
<td>[$todo]</td>
<td>$todoObj.Description</td>
<td>$todoObj.Priority</td>
<td>$todoObj.Status</td>
<td>$todoObj.Date</td>
</tr>
#end
</table>
--
View this message in context: http://xwiki.475771.n2.nabble.com/Table-Pagination-Filtering-capabilities-t…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi XWiki users,
Using XE2.3.1, the Panel Wizard does not work. You can try to save your new
layout, it is not registered.
A workaround is to define the list of panels in the Presentation section.
Do you encounter the same issue ?
Regards,
Maxime
The XWiki development team is pleased to announce the release of XWiki
Enterprise 2.4 Milestone 2.
Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download
This is second and last milestone of the XWiki Enterprise 2.4 version.
Main changes from XWiki Enterprise 2.4 Milestone 2:
* Objects and classes editor improvements
* New Template-based page creation
* New Invitation Manager application
* New search application improvements
* WYSIWYG Improvements
* JMX Administration Console
* Watchlist improvements
* Script improvements
* Javascript improvements
* Lots of bugs fixes
For more information see the Release notes at:
http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXWikiEnterprise24M2
Thanks
- The XWiki dev team
Greetings All,
I recently downloaded the XWiki enterprise package that was as fool proof as they came.
I read through all the instructions then carefully (or so I thought) installed it. I went to go
Open "start wiki" and a black box appeared, immediately the box closed, I tried again a few
Times but the same thing continued to happen. I tried to go to "my wiki" in IE and it wouldn't
Load. I have no idea where I went wrong. I tried to uninstall so that I could reinstall it and try
Again, the "uninstall" option from my start menu (I'm using windows 7) wouldn't work. Any
Help or insight would be greatly appreciated.
Thanks for taking the time to read this,
Alex.
Hi XWiki users,
We have an urgent request, as we need to be able to make a response
TONIGHT (it's not that we did it at the last moment, but that we got the
information very late).
We would like to have XWiki included in the Gartner "Magic Quadrant for
Social Software in the Workplace", which has some tough criterias to get in.
The criterias are to have:
- at least 100000 users (internal to companies, all deployments included)
AND
- at least 4 companies with more than 5000 users (internal to companies)
willing to talk to Gartner about their usage.
While we do have at XWiki SAS companies we work with that we know the
deployment size and that we can contact to see if they are willing to
talk to Gartner, we do need more.
If you have or know of a deployment with more than 1000 users of the
Wiki for INTERNAL USAGE (not public web sites), it would be great if you
can contact us ASAP at marketing(a)xwiki.com
If you have more than 5000 users, please do contact us even more.
Even if you are not sure that you can talk to Gartner please do tell us,
as we need to answer before tonight if we meet the inclusion criterias.
Then there is a follow-up process and we can verify then if talking with
Gartner is possible (we would need at least the deployment acknowledged)
This is very important for XWiki as in can give a lot of visibility to
XWiki and widden the user base thanks to this visibility.
Thanks for your help
Ludovic Dubost
XWiki SAS CEO and XWiki creator
--
Ludovic Dubost
Blog: http://blog.ludovic.org/
XWiki: http://www.xwiki.com
Skype: ldubost GTalk: ldubost
Hello All,
I have some question regarding access rights while creating a page in XWiki.
I'm trying to create a private wiki space, meaning the wiki page created in
that space should be viewable or commented or deleted only by the creator of
the wiki page.
I have a following scenario
I have a group called "MyUsers"
The group "MyUsers" has 50 users. Say for now they are "User001", "User002",
...., "User050".
If the user "User001" creates a page, I would like to make it private for
that user.
Now the only way i can think of to achieve this is to set the access right
permission as "False" for all other 49 users. Then set it "True" for the
User001
Setting it "False" for the group "MyUser" and "True" for the User001 doesn't
seem to solve it.
Can we achieve the latter solution somehow?
-
Thanks,
Manish
--
View this message in context: http://xwiki.475771.n2.nabble.com/How-to-Make-Access-right-permissions-for-…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello All,
I have some question regarding access rights while creating a page in XWiki.
I'm trying to create a private wiki space, meaning the wiki page created in
that space should be viewable or commented or deleted only by the creator of
the wiki page.
I have a following scenario
I have a group called "MyUsers"
The group "MyUsers" has 50 users. Say for now they are "User001", "User002",
...., "User050".
If the user "User001" creates a page, I would like to make it private for
that user.
Now the only way i can think of to achieve this is to set the access right
permission as "False" for all other 49 users. Then set it "True" for the
User001
Setting it "False" for the group "MyUser" and "True" for the User001 doesn't
seem to solve it.
Can we achieve the latter solution somehow?
-
Thanks,
Manish
--
View this message in context: http://xwiki.475771.n2.nabble.com/How-to-Make-Access-right-permissions-for-…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Dear all,
we are using XWiki for the project websites and online
documentation of our open source projects and are
(almost) very happy with it.
For releasing distributions and for easy printing of multi-page
documents, we would like to use the PDF export facility
of XWiki. The problem is that the {code} snippets used
often in our documentation are nearly unreadable in PDF.
Here is an example (web page and PDF export):
http://jadex-agents.informatik.uni-hamburg.de/xwiki/bin/view/Standalone+Pla…http://jadex-agents.informatik.uni-hamburg.de/xwiki/bin/export/Standalone+P…
We browsed the documentation, but found it a little bit confusing.
Can anyone please point us in the right direction for solving
this issue or (even better) suggest a fix?
Kind regards and thanks in advance,
Lars
Alex
I have been looking at the ListWebSearch page that's in incubation,
and like what I see. Displaying highlighted words in context is very
useful when searching for pages.
(Found here: http://incubator.myxwiki.org/xwiki/bin/view/Main/ListWebSearch )
I see that the Jira issue is listed as "fixed" for 2.0M1, but the
pages don't seem to exist within the xar file. How would I go about
testing this search page on my deployed wiki? Are there any
requirements or dependencies on code in Xwiki-core, or is this
implemented as a page (or pages) that could be imported?
Thanks,
- James Cuzella
Hello,
I'm running a new installation on a public address. However, I'd like to
screen new users. That is, new users insert their username and email, and I
get a notification. Then they get a confirmation email only if I approve the
user.
Is this possible? If so, how? If not, is there any other way to screen user
registrations?
Thank you very much.
Gonçalo Luiz