2 Replies Latest reply on Aug 8, 2017 8:37 AM by an.mats

    Javascripts are behaving different in Wildfly 10

    an.mats

      Hi,

       

      We were using Jboss7 so far for deployments. We are in teh process of migrating to Wildfly. But I noticed that the javascripts are behaving differently in WildFly. Tinymce editor is not editable also the bootstrap and css styling are coming really different. Could someone help me with how to configure standlone.xml os that I can get the same behaviour as before

       

       

      Thanks in advance

      Ann Mathew

        • 1. Re: Javascripts are behaving different in Wildfly 10
          jaikiran

          You'll have to add more details on what exact issues you are running into, including the URLs you access, the response codes you get and what it means when you say "css styling are coming different". Which exact version of WildFly 10 are you using?

          • 2. Re: Javascripts are behaving different in Wildfly 10
            an.mats

            Hi,

             

            We are using wildfly 10.1.0

             

            If I deploy following html page with just tinymce into wildfly

             

             

            <!DOCTYPE html>

            <html>

            <head>

              <script src='https://cloud.tinymce.com/stable/tinymce.js'></script>

              <script>

              tinymce.init({

                selector: '#mytextarea'

              });

              </script>

            </head>

             

             

            <body>

            <h1>TinyMCE Quick Start Guide</h1>

              <form method="post">

                <textarea id="mytextarea">Hello, World!</textarea>

              </form>

            </body>

            </html>

             

            It loads the editor correctly first, then overrides the editor part with non editable tinymce editor.

            Please let me know you need any further information