Sha256: d007ab7adae4f7cbe48325500d8619492a925088d72aada4d44a15ee9cba0503
Contents?: true
Size: 817 Bytes
Versions: 20
Compression:
Stored size: 817 Bytes
Contents
<!-- TODO move these to the head --> <%= stylesheet_link_tag "old_sql/jqgrid/ui.jqgrid.css" %> <%= javascript_include_tag "old_sql/jqgrid/jquery.jqGrid.min.js" %> <%= javascript_include_tag "old_sql/jqgrid/ui.multiselect.js" %> <script> jQuery(document).ready(function(){ jQuery("#rowed1").jqGrid({ url:"http://<%=@host%>:<%=@port%>/sql/reports/query.json/?report=<%=@report_name%>&report_sql=<%=@report_sql%>&generation=<%=@generation%>&start_date=<%=@start_date%>&end_date=<%=@end_date%>", datatype: "json", pager: false, colNames: <%=jqgrid_col_names%>, colModel: <%=jqgrid_col_model%>, rowNum: <%=@row_num%>, rowList: [10,20,30], width: <%=@width%>, height: <%=@height%>, caption: "<%=@reports[@report_name]['value']%> Report" }); }); </script> <table id="rowed1"></table>
Version data entries
20 entries across 20 versions & 1 rubygems