hello:
Trying to get a livetable with custom JSON working. I read through the
documentation, but the section that explains about the custom JSON is a bit
terse. I see that the returned JSON has a field $request.reqNo, but it
doesn't explain what it means. Is there a more complete explanation on what
the JSON handler gets in the request?
Dan
--
View this message in context: http://xwiki.475771.n2.nabble.com/custom-JSON-for-livetable-tp7600351.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello everyone:
I have noticed that top level pages remain visible even when setting to
"hidden". Is this standard behavior, or is it some kind of bug? or am I not
doing something right? version 8.0
Dan
--
View this message in context: http://xwiki.475771.n2.nabble.com/Top-level-pages-visible-even-when-hidden-…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello,
Please, how to include a panel within a page?
I tried to use the line below but did not work.
{{Include reference = "Blog.RecentPostsPanel" context = "new" /}}
Thank you in advance,Julio
Hi XWikiers,
We need your help in testing 8.2-RC1 in order to have the best quality for
the 8.2 final release.
You can download from
http://www.xwiki.org/xwiki/bin/view/Download/DownloadVersion/?projectVersio…
The release of version 8.2 was planned for 18 Jul, but we want to delay it
by a week in order to have the maximum time to test the new features.
There are a lot of improvements, you might like and be interested in:
- CKEditor Becomes the Default WYSIWYG Editor
- New Homepage
- New Tour for the Homepage
- Application Index, Template improvements, Livetable improved filtering,
available syntaxes configuration and many others. You can read a partial
release note at
http://www.xwiki.org/xwiki/bin/view/ReleaseNotes/ReleaseNotesXWiki82
Issues found can be reported on http://jira.xwiki.org/browse/XWIKI
Thank you,
Caty
Hi,
I`m sharing with you the addition of a new article on xwiki.org's blog:
"Updating the XWiki UI using a bit of JavaScript and Velocity code"
by Oana Tabaranu
http://www.xwiki.org/xwiki/bin/view/Blog/Updating+the+XWiki+UI+using+a+bit+…
It is a quick tutorial, exemplifying how you can use a bit of JavaScript
and Velocity coding to update certain parts of XWiki's (or your
application's) User Interface on the fly (without reloading the entire
page). For more info on the topic, make sure to follow the links at the
bottom of the article or feel free to ask here and either Oana or anyone
else from the community with the knowledge should help you out.
Reminder:
If you have something XWiki-related that you would like to share on
xwiki.org's blog, please see my previous mail on how you can easily do that:
http://xwiki.markmail.org/thread/r4r4celltmdprqia
Thanks,
Eduard
Hi,
Does anyone know why an unregistered user (not logged in) receives rights to manage the wiki when I give permission program for it?
I'm using version 7.4.4
Regards,Julio
Hello:
I have a problem. I created an XClass with personal info (name, address
etc); but instead of attaching one XObject to many pages (1 to 1), I have
attached many objects of the same class to one single page (an array of
xobjects if you will). Is it possible to query the xobjects for a particular
name, and have the query return an xobject, instead of the name of the page?
the name of the page does me no good, because I still have to search through
the objects...
doing:
#set( $hql = "select obj.name from BaseObject obj where obj.className =
'$class.name'" )
returns a list containing the same page over and over, instead of a list of
xobjects.
Can this be done?
Dan
--
View this message in context: http://xwiki.475771.n2.nabble.com/hql-query-returning-objects-tp7600307.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi,
How can i come back to the initial state of my xwiki space ?
... Seem i have deleted the administration pages in my first tries !!!
Thanks for your help.
Paule Bouton
paulebouton(a)gmail.com <mailto:paulebouton@gmail.com>
---
This email has been checked for viruses by Avast antivirus software.
https://www.avast.com/antivirus
The XWiki development team is proud to announce the availability of XWiki
8.2 Release Candidate 1.
This release integrates CKEditor as the default WYSIWYG content editor and
adds a *tour* on the home page to describe the XWiki user interface to
newcomers.
You can download it here: http://www.xwiki.org/xwiki/bin/view/Main/Download
Make sure to review the release notes:
http://www.xwiki.org/xwiki/bin/view/ReleaseNotes/ReleaseNotesXWiki82RC1
The following people have contributed code to this release (sorted
alphabetically):
Alexandru Cotiuga
Anca Luca
Ecaterina Moraru (Valica)
Eduard Moraru
Guillaume Delhumeau
Marius Dumitru Florea
Raluca Stavro
Thomas Mortagne
Vincent Massol
Thanks for your support
-The XWiki dev team
You can use this code:
http://platform.xwiki.org/xwiki/bin/view/DevGuide/APIGuide#HAccessobjectsfr…
"## if you have more than one object on a page, you will have to loop over them and use "$doc.use""
Pascal BASTIEN
--------------------------------------------
En date de : Mer 13.7.16, Thomas Mortagne <thomas.mortagne(a)xwiki.com> a écrit :
Objet: Re: [xwiki-users] hql query returning objects?
À: "XWiki Users" <users(a)xwiki.org>
Date: Mercredi 13 juillet 2016, 7h56
On Tue, Jul 12, 2016 at
7:03 PM, dullfig <dan.u(a)grmcompany.com>
wrote:
> Hello:
>
> I have a problem. I created an XClass with
personal info (name, address
> etc); but
instead of attaching one XObject to many pages (1 to 1), I
have
> attached many objects of the same
class to one single page (an array of
>
xobjects if you will). Is it possible to query the xobjects
for a particular
> name, and have the
query return an xobject, instead of the name of the page?
> the name of the page does me no good,
because I still have to search through
>
the objects...
>
>
doing:
>
> #set( $hql
= "select obj.name from BaseObject obj where
obj.className =
>
'$class.name'" )
>
> returns a list containing the same page
over and over, instead of a list of
>
xobjects.
>
> Can this
be done?
You can't
directly get an XObject from a hql request but you can
get
enough information to get the object
from the document.
obj.name is indeed the
name of the page, you already know the class
name so what is missing for you is the
obj.number.
Then you can
do
$xwiki.getDocument($name).getObject($classs.name,
$number)
>
>
> Dan
>
>
>
> --
> View this message in context: http://xwiki.475771.n2.nabble.com/hql-query-returning-objects-tp7600307.html
> Sent from the XWiki- Users mailing list
archive at Nabble.com.
>
_______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
--
Thomas Mortagne
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users