How to add external CSS and JS files to servoy application

Hello

I want to add some .css and .js files with my servoy web application.
Here i cannot see any html, body or head tags. So I dont know how to add these external files to my application.
Is it possible in servoy ? If yes, then please tell me the trics to do the same.

Thanks
Pradeep

To do that, put an htmlarea on your form and in a onLoad method do something like:

	globals.myHTML = "<html><head><style type='text/css'>\
						#test {\
							position: absolute;\
							top: 30px;\
						}\
						</style></head>/html>"

Joas,

This is what Bob Cusick wrote about webclient development:

bcusick:
9. When displaying HTML in a HTML area - DO NOT use your own tags in the HTML - in WC it will render incorrectly. Just use for WC HTML areas - and the style of the label/field will determine the overall font/size

Do not use your own tags and you say here that is can be used.
Can it be used now?

Martin

That was an old post with an older version of Servoy and an older version of Java.

Using Servoy 4.1.2 - you can put in your own style tags - but just be aware that the FONT attribute will inherit directly from the style of the field ON THE FORM.

Hope this helps!