Hi,
I installed the XWiki TableEdit extension, but I don't see the
"pencil" next to any tables.
Is there something else I need to do to "activate" it ?
I'm running xwiki 5.2 on tomcat7 on Ubuntu 12.04
Cheers
The pencils are injected using javascript so you might check
to see if there are any javascript errors in your browser
in firefox/chrome: right click -> inspect element -- click "console"
Thanks,
Caleb
On 11/13/2013 12:38 PM, shouldbe q931 wrote:
Hi,
I installed the XWiki TableEdit extension, but I don't see the
"pencil" next to any tables.
Is there something else I need to do to "activate" it ?
I'm running xwiki 5.2 on tomcat7 on Ubuntu 12.04
Cheers
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
The pencils are injected using javascript so you might
check
to see if there are any javascript errors in your browser
in firefox/chrome: right click -> inspect element -- click "console"
Thanks,
Caleb
It doesn't look like the skin extension is being pulled in,
are you sure it was saved by a user with programming right?
Thanks,
Caleb
On 11/13/2013 02:46 PM, shouldbe q931 wrote:
On Wed, Nov 13, 2013 at 12:20 PM, Caleb James DeLisle
<cjd(a)hyperboria.ca> wrote:
The pencils are injected using javascript so you
might check
to see if there are any javascript errors in your browser
in firefox/chrome: right click -> inspect element -- click "console"
Thanks,
Caleb
On Wed, Nov 13, 2013 at 1:55 PM, Caleb James DeLisle
<cjd(a)hyperboria.ca> wrote:
It doesn't look like the skin extension is
being pulled in,
are you sure it was saved by a user with programming right?
Thanks,
Caleb
Hi Caleb,
/embarrassed face
the account had admin rights, but not programming rights
Its now working correctly :-)
Hi Caleb,
er, working correctly as in the pencil shows, but when clicked on, the
table doesn't open, only seeing gery box named "ModalBox Window" with
no content
Cheers
On Wed, Nov 13, 2013 at 2:34 PM, shouldbe q931
<shouldbeq931(a)gmail.com> wrote:
On Wed, Nov 13, 2013 at 1:55 PM, Caleb James
DeLisle <cjd(a)hyperboria.ca> wrote:
It doesn't look like the skin extension is
being pulled in,
are you sure it was saved by a user with programming right?
Thanks,
Caleb
Hi Caleb,
/embarrassed face
the account had admin rights, but not programming rights
Its now working correctly :-)
Hi Caleb,
er, working correctly as in the pencil shows, but when clicked on, the
table doesn't open, only seeing gery box named "ModalBox Window" with
no content
Cheers
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
The above appears to have missed a bit of the error
GET https://xwiki.domain.com/xwiki/bin/ssx/XWiki/spinner.gif 404 (Not
Found) prototype.js:8
GET https://xwiki.domain.com/jQueryNoConflict.js 404 (Not Found) require.js:1
Uncaught Error: Script error for: jQueryNoConflict
http://requirejs.org/docs/errors.html#scripterror require.js:1
Uncaught Error: Load timeout for modules:
xwiki/bin/download/XWiki/TableEdit/jquery%2Dsheet%2Damd.zip/iframe!xwiki/bin/download/XWiki/TableEdit/jquery%2Dsheet%2Damd.zip/jqs@jquery-sheet-iframe_unnormalized2,xwiki/bin/download/XWiki/TableEdit/jquery%2Dsheet%2Damd.zip/iframe!xwiki/bin/download/XWiki/TableEdit/jquery%2Dsheet%2Damd.zip/jqs@jquery-sheet-iframe
http://requirejs.org/docs/errors.html#timeout
I'm not sure why it's looking for jQueryNoConflict.js in the root of
the webserver ? I've checked on the server, and jQueryNoConflict.js
does not exist on the server as a file.
A spinner.gif exist in /webapps/xwiki/resources/icons/xwiki/spinner.gif
I also don't understand the xwiki/bin path in the above, I don't have a /bin
I'm well out of my depth with this and would appreciate any assistance.
Cheers
I think at this point it's probably best to go ahead and report a bug on
jira.xwiki.org. This looks like it is just not performing correctly since
some changes in the underlying platform, I sincerely apologize and appreciate
your help on the matter.
Thanks,
Caleb
On 11/14/2013 06:36 PM, shouldbe q931 wrote:
The above appears to have missed a bit of the error
GET https://xwiki.domain.com/xwiki/bin/ssx/XWiki/spinner.gif 404 (Not
Found) prototype.js:8
GET https://xwiki.domain.com/jQueryNoConflict.js 404 (Not Found) require.js:1
Uncaught Error: Script error for: jQueryNoConflict
http://requirejs.org/docs/errors.html#scripterror require.js:1
Uncaught Error: Load timeout for modules:
xwiki/bin/download/XWiki/TableEdit/jquery%2Dsheet%2Damd.zip/iframe!xwiki/bin/download/XWiki/TableEdit/jquery%2Dsheet%2Damd.zip/jqs@jquery-sheet-iframe_unnormalized2,xwiki/bin/download/XWiki/TableEdit/jquery%2Dsheet%2Damd.zip/iframe!xwiki/bin/download/XWiki/TableEdit/jquery%2Dsheet%2Damd.zip/jqs@jquery-sheet-iframe
http://requirejs.org/docs/errors.html#timeout
I'm not sure why it's looking for jQueryNoConflict.js in the root of
the webserver ? I've checked on the server, and jQueryNoConflict.js
does not exist on the server as a file.
A spinner.gif exist in /webapps/xwiki/resources/icons/xwiki/spinner.gif
I also don't understand the xwiki/bin path in the above, I don't have a /bin
I'm well out of my depth with this and would appreciate any assistance.
Cheers
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
Hi Caleb,
I think the issue is that the 'jQueryNoConflict' module defined inline
in javascript.vm
define('jQueryNoConflict', ['jquery'], function($) { $.noConflict();
return $; });
is not available to the iframe that this extension creates. It's
available only to the 'mother' page, which includes the iframe. If you
inspect the iframe you can see that it loads 3 scripts:
/xwiki/resources/js/amd/require.js
/xwiki/bin/download/XWiki/TableEdit/jquery%2Dsheet%2Damd.zip/jqs.js
/jQueryNoConflict.js
The first too are fine. The last one is obviously wrong. Any idea how
to fix this?
Thanks,
Marius
On Fri, Nov 15, 2013 at 7:53 AM, Caleb James DeLisle <cjd(a)hyperboria.ca> wrote:
I think at this point it's probably best to go
ahead and report a bug on
jira.xwiki.org. This looks like it is just not performing correctly since
some changes in the underlying platform, I sincerely apologize and appreciate
your help on the matter.
Thanks,
Caleb
On 11/14/2013 06:36 PM, shouldbe q931 wrote:
On Wed, Nov 13, 2013 at 5:20 PM, shouldbe q931
<shouldbeq931(a)gmail.com> wrote:
On Wed, Nov 13, 2013 at 3:15 PM, Caleb James
DeLisle <cjd(a)hyperboria.ca> wrote:
Hmm,
does anything show up in the console as far as errors?
Thanks,
Caleb
The above appears to have missed a bit of the error
GET https://xwiki.domain.com/xwiki/bin/ssx/XWiki/spinner.gif 404 (Not
Found) prototype.js:8
GET https://xwiki.domain.com/jQueryNoConflict.js 404 (Not Found) require.js:1
Uncaught Error: Script error for: jQueryNoConflict
http://requirejs.org/docs/errors.html#scripterror require.js:1
Uncaught Error: Load timeout for modules:
xwiki/bin/download/XWiki/TableEdit/jquery%2Dsheet%2Damd.zip/iframe!xwiki/bin/download/XWiki/TableEdit/jquery%2Dsheet%2Damd.zip/jqs@jquery-sheet-iframe_unnormalized2,xwiki/bin/download/XWiki/TableEdit/jquery%2Dsheet%2Damd.zip/iframe!xwiki/bin/download/XWiki/TableEdit/jquery%2Dsheet%2Damd.zip/jqs@jquery-sheet-iframe
http://requirejs.org/docs/errors.html#timeout
I'm not sure why it's looking for jQueryNoConflict.js in the root of
the webserver ? I've checked on the server, and jQueryNoConflict.js
does not exist on the server as a file.
A spinner.gif exist in /webapps/xwiki/resources/icons/xwiki/spinner.gif
I also don't understand the xwiki/bin path in the above, I don't have a /bin
I'm well out of my depth with this and would appreciate any assistance.
Cheers
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
Hi Caleb,
I think the issue is that the 'jQueryNoConflict' module defined inline
in javascript.vm
define('jQueryNoConflict', ['jquery'], function($) { $.noConflict();
return $; });
is not available to the iframe that this extension creates. It's
available only to the 'mother' page, which includes the iframe. If you
inspect the iframe you can see that it loads 3 scripts:
/xwiki/resources/js/amd/require.js
/xwiki/bin/download/XWiki/TableEdit/jquery%2Dsheet%2Damd.zip/jqs.js
/jQueryNoConflict.js
The first too are fine. The last one is obviously wrong. Any idea how
to fix this?
Thanks,
Marius
On Fri, Nov 15, 2013 at 7:53 AM, Caleb James DeLisle <cjd(a)hyperboria.ca> wrote:
I think at this point it's probably best to
go ahead and report a bug on
jira.xwiki.org. This looks like it is just not performing correctly since
some changes in the underlying platform, I sincerely apologize and appreciate
your help on the matter.
Thanks,
Caleb
On 11/14/2013 06:36 PM, shouldbe q931 wrote:
On Wed, Nov 13, 2013 at 5:20 PM, shouldbe q931
<shouldbeq931(a)gmail.com> wrote:
On Wed, Nov 13, 2013 at 3:15 PM, Caleb James
DeLisle <cjd(a)hyperboria.ca> wrote:
> Hmm,
> does anything show up in the console as far as errors?
>
> Thanks,
> Caleb
>
Hi Caleb,
Apologies, should have checked first, there are two errors in the console
[17:18:33.222] Error: Script error for: jQueryNoConflict
http://requirejs.org/docs/errors.html#scripterror @
https://xwiki.domain.com/xwiki/resources/js/amd/require.js:1
[17:18:40.116] Error: Load timeout for modules:
xwiki/bin/download/XWiki/TableEdit/jquery%2Dsheet%2Damd.zip/iframe!xwiki/bin/download/XWiki/TableEdit/jquery%2Dsheet%2Damd.zip/jqs@jquery-sheet-iframe_unnormalized2,xwiki/bin/download/XWiki/TableEdit/jquery%2Dsheet%2Damd.zip/iframe!xwiki/bin/download/XWiki/TableEdit/jquery%2Dsheet%2Damd.zip/jqs@jquery-sheet-iframe
http://requirejs.org/docs/errors.html#timeout @
https://xwiki.domain.com/xwiki/resources/js/amd/require.js:1
Cheers
The above appears to have missed a bit of the error
GET https://xwiki.domain.com/xwiki/bin/ssx/XWiki/spinner.gif 404 (Not
Found) prototype.js:8
GET https://xwiki.domain.com/jQueryNoConflict.js 404 (Not Found) require.js:1
Uncaught Error: Script error for: jQueryNoConflict
http://requirejs.org/docs/errors.html#scripterror require.js:1
Uncaught Error: Load timeout for modules:
xwiki/bin/download/XWiki/TableEdit/jquery%2Dsheet%2Damd.zip/iframe!xwiki/bin/download/XWiki/TableEdit/jquery%2Dsheet%2Damd.zip/jqs@jquery-sheet-iframe_unnormalized2,xwiki/bin/download/XWiki/TableEdit/jquery%2Dsheet%2Damd.zip/iframe!xwiki/bin/download/XWiki/TableEdit/jquery%2Dsheet%2Damd.zip/jqs@jquery-sheet-iframe
http://requirejs.org/docs/errors.html#timeout
I'm not sure why it's looking for jQueryNoConflict.js in the root of
the webserver ? I've checked on the server, and jQueryNoConflict.js
does not exist on the server as a file.
A spinner.gif exist in /webapps/xwiki/resources/icons/xwiki/spinner.gif
I also don't understand the xwiki/bin path in the above, I don't have a /bin
I'm well out of my depth with this and would appreciate any assistance.
Cheers
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users