[xwiki-devs] Using Java Script File In XWIKI
Hi, How to call a java script file in XWIKI page. I want to validate a form in XWIKI page, and i am having a script file, don't know how to call the file. For example in HTML we call the js file using this tag <script language="javascript" src="login.js?randomJsVer=84" ></script>, like this is there anyother way to call the js file in XWIKI. -- Thanks, Prathap Pandian M
Prathap Pandian wrote:
Hi,
How to call a java script file in XWIKI page.
I want to validate a form in XWIKI page, and i am having a script file, don't know how to call the file.
For example in HTML we call the js file using this tag <script language="javascript" src="login.js?randomJsVer=84" ></script>, like this is there anyother way to call the js file in XWIKI.
You do the same, but the src URL will probably be different. If the js is in the skin directory, use src="${xwiki.getSkinFile('login.js')}?randomJsVer=84" If the js is attached to the document containing the form, use src="${doc.getAttachmentURL('login.js')}?randomJsVer=84" If the js is someplace else, just copy its full address and put it in the src, like src="http://www.someserver.org/login.js" -- Sergiu Dumitriu http://purl.org/net/sergiu/
thanks a lot... -- Thanks, Prathap Pandian M On Wed, May 21, 2008 at 9:25 PM, Sergiu Dumitriu <sergiu@xwiki.com> wrote:
Prathap Pandian wrote:
Hi,
How to call a java script file in XWIKI page.
I want to validate a form in XWIKI page, and i am having a script file, don't know how to call the file.
For example in HTML we call the js file using this tag <script language="javascript" src="login.js?randomJsVer=84" ></script>, like this is there anyother way to call the js file in XWIKI.
You do the same, but the src URL will probably be different.
If the js is in the skin directory, use src="${xwiki.getSkinFile('login.js')}?randomJsVer=84"
If the js is attached to the document containing the form, use src="${doc.getAttachmentURL('login.js')}?randomJsVer=84"
If the js is someplace else, just copy its full address and put it in the src, like src="http://www.someserver.org/login.js" -- Sergiu Dumitriu http://purl.org/net/sergiu/ _______________________________________________ devs mailing list devs@xwiki.org http://lists.xwiki.org/mailman/listinfo/devs
Hi, Probably first option didn't work for me, i have placed my js file in my skins folder(../xwiki/skins). If the js is in the skin directory, use src="${xwiki.getSkinFile('login.js')}?randomJsVer=84" -- Thanks, Prathap Pandian M On Wed, May 21, 2008 at 9:25 PM, Sergiu Dumitriu <sergiu@xwiki.com> wrote:
Prathap Pandian wrote:
Hi,
How to call a java script file in XWIKI page.
I want to validate a form in XWIKI page, and i am having a script file, don't know how to call the file.
For example in HTML we call the js file using this tag <script language="javascript" src="login.js?randomJsVer=84" ></script>, like this is there anyother way to call the js file in XWIKI.
You do the same, but the src URL will probably be different.
If the js is in the skin directory, use src="${xwiki.getSkinFile('login.js')}?randomJsVer=84"
If the js is attached to the document containing the form, use src="${doc.getAttachmentURL('login.js')}?randomJsVer=84"
If the js is someplace else, just copy its full address and put it in the src, like src="http://www.someserver.org/login.js" -- Sergiu Dumitriu http://purl.org/net/sergiu/ _______________________________________________ devs mailing list devs@xwiki.org http://lists.xwiki.org/mailman/listinfo/devs
Hi, I am really sorry, i had a some spelling errors in the file name. Now its working fine. -- Thanks, Prathap Pandian M On Thu, May 22, 2008 at 12:06 PM, Prathap Pandian <prathapmeister@gmail.com> wrote:
Hi,
Probably first option didn't work for me, i have placed my js file in my skins folder(../xwiki/skins).
If the js is in the skin directory, use src="${xwiki.getSkinFile('login.js')}?randomJsVer=84"
-- Thanks, Prathap Pandian M
On Wed, May 21, 2008 at 9:25 PM, Sergiu Dumitriu <sergiu@xwiki.com> wrote:
Prathap Pandian wrote:
Hi,
How to call a java script file in XWIKI page.
I want to validate a form in XWIKI page, and i am having a script file, don't know how to call the file.
For example in HTML we call the js file using this tag <script language="javascript" src="login.js?randomJsVer=84" ></script>, like this is there anyother way to call the js file in XWIKI.
You do the same, but the src URL will probably be different.
If the js is in the skin directory, use src="${xwiki.getSkinFile('login.js')}?randomJsVer=84"
If the js is attached to the document containing the form, use src="${doc.getAttachmentURL('login.js')}?randomJsVer=84"
If the js is someplace else, just copy its full address and put it in the src, like src="http://www.someserver.org/login.js" -- Sergiu Dumitriu http://purl.org/net/sergiu/ _______________________________________________ devs mailing list devs@xwiki.org http://lists.xwiki.org/mailman/listinfo/devs
participants (2)
-
Prathap Pandian -
Sergiu Dumitriu