0

アプリでパーシャルをレンダリングしようとしていますが、何らかの理由でレンダリングされません。アセット パイプラインと、パーシャルで使用したい JavaScript を正しく実装していないという事実に関係していると思います。単純な文のテスト パーシャルは問題なく機能します。アプリで JavaScript を適切に使用する方法を教えてもらえますか?

これが私が見せようとしているもののjsFiddleです:http://jsfiddle.net/yZQg4/

問題のある部分:

<%= javascript_include_tag "highcharts", "exporting", "jquery-1.4.2.min", "rails" %>

<script type="text/javascript" charset="utf-8">
  $(function() {
    var chart;
    $(document).ready(function() {
        chart = new Highcharts.Chart({
            chart: {
                renderTo: 'panel_contents',
                type: 'column'
            },

            xAxis: {
                categories: ['Automotive', 'Agency', 'Contractor', 'Country Club', 'Other']
            },
            yAxis: {
                min: 0,

                title: {
                    text: 'Business Summary'
                },
                stackLabels: {
                    enabled: true,
                    style: {
                        fontWeight: 'bold',
                        color: (Highcharts.theme && Highcharts.theme.textColor) || 'gray'
                    }
                }
            },
            legend: {
                align: 'right',
                x: 100,
                verticalAlign: 'top',
                y: 0,
                floating: true,
                backgroundColor: (Highcharts.theme && Highcharts.theme.legendBackgroundColorSolid) || 'white',
                borderColor: '#CCC',
                borderWidth: 1,
                shadow: false
            },
            tooltip: {
                formatter: function() {
                    return '<b>' + this.x + '</b><br/>' + this.series.name + ': ' + this.y + '<br/>' + 'Total: ' + this.point.stackTotal;
                }
            },
            plotOptions: {
                column: {
                    stacking: 'normal',
                    dataLabels: {
                        enabled: true,
                        color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || 'white'
                    }
                }
            },
            series: [{
                name: 'Mobile',
                data: [5, 3, 4, 27, 2]},
            {
                name: 'Foursquare',
                data: [2, 2, 3, 2, 1]},
            {
                name: 'Facebook',
                data: [3, 4, 4, 2, 5]},
            {
                name: 'Yelp',
                data: [3, 4, 4, 2, 5]},
            {
                name: 'Google',
                data: [3, 4, 4, 2, 5]}]
        });
    });

});​​
</script>

動作テスト部分:

<h1> hello world </h1>

ありがとう!

4

2 に答える 2

0

javascriptコードの前にこれを追加します:

<div id="panel_contents"></div>

PSそれに加えて、JavaScriptの包含を部分的なものから移動するか、content_forを使用する方がよい

于 2012-06-27T16:09:02.383 に答える
0

TextEdit でファイルを再作成したところ、うまくいきました。何らかの理由で、TextMate は密かにこれをファイルに追加していました: &#8203;.

于 2012-06-27T18:46:02.620 に答える