Sha256: 37dec8b4c886a6dfb4eef69e79ea5c24bd23ca104db4019c351b6eb2af65e1c6
Contents?: true
Size: 789 Bytes
Versions: 16
Compression:
Stored size: 789 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%>&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
16 entries across 16 versions & 1 rubygems