Viewing 4 replies - 1 through 4 (of 4 total)
  • i added some meta box.But short code is not working in the meta box.
    Please HELP me!!!!!!!!!!!

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    WP-Table Reloaded does actually not make a difference on what kind of code or content you enter into a table cell. For code, like JavaScript, there is however one (yeah, annoying…) thing to note: You can not any manual line breaks in the code, as those get transformed to HTML <br /> tags automatically (which breaks the JS code).
    Could this be the case here? If not, what exact outcome do you experience when adding JS code to a cell? Can you maybe post a link to your table?

    @kaoser: I will answer your question in the other thread at http://wordpress.org/support/topic/plugin-wp-table-reloaded-about-short-code

    Regards,
    Tobias

    Thread Starter Lonnie

    (@lonniehb)

    I wish I could post the table – but this client has confidential information and the site is not public.

    I tried removing the line breaks but it still doesn’t work. I can take the code out of the table and place it in the page and it works fine.

    Any help is appreciated, thanks.

    The code is —

    <div>
    <script type="text/javascript">// <![CDATA[
    var myChartId = 'chart3';
    var myChartSWF = '../../../../../fusion/charts/Pie2D.swf';
    var myChartWidth = '280';
    var myChartHeight = '280';
    var myDataXML = '../../../../../fusion/data/EAI 1000 Chart.xml';
    document.write('<span id="' + myChartId + 'container">')
    var chartObj = new FusionCharts(myChartSWF, myChartId, myChartWidth, myChartHeight);
    chartObj.setDataURL(myDataXML);
    chartObj.render(myChartId + 'container'); // ]]></script>
    </div>

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    I can’t really see why this should not work – if everything is written in one line…

    You might want to check the page with a tool like the Chrome Developer Tools, to see if there are JavaScript errors reported.

    Regards,
    Tobias

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: WP-Table Reloaded] Using Javascript inside a table cell’ is closed to new replies.