similar to: How to execute multiple queries in one report of iReports?

Displaying 20 results from an estimated 80000 matches similar to: "How to execute multiple queries in one report of iReports?"

2008 Mar 05
4
blank ireports from jasper
hi all i have successfully integrated jasper with my application but the problem is that when i m generating reports thru it...its giving me a blank rtf file...... if i write a xml file its giving me the xml data but the conversion of xml to text is not taking place... Is there a way to solve it pls let me know thanks -- Posted via http://www.ruby-forum.com/.
2009 Nov 10
6
Master/detail report with Rails and Ireport/JasperReports
Hi all, has anyone made it already? -- Posted via http://www.ruby-forum.com/.
2009 Oct 11
6
A simple editable grid for Rails
Hi All, I''ve been posting some queries about an editable grid but did not get any response. I''ve started writing my own - http://github.com/ckkashyap/rails_editable_grid I''d appreciate it very much if someone could comment on it! -- Regards, Kashyap
2008 Feb 14
0
Facing display issue in the HTML view of an iReport in IE
I have designed a report using iReport 1.2.0. Some of the controls are not displaying in the HTML view of that report in Internet Explorer. But those are working fine in Firefox. Also, noticed that many properties (say, alignment, etc) are not reflecting in IE. Can anyone please help me to resolve this issue? -- Posted via http://www.ruby-forum.com/.
2007 Jun 21
1
Validation Through Multiple Models from one Form
Hey All, I have a form that submits data to multiple models. I have class Man < ActiveRecord::Base has_many :notes has_many :contacts validates_associated :contacts, :notes validates_presence_of :first_name validates_presence_of :last_name class Contact < ActiveRecord::Base belongs_to :man validates_presence_of :contact_info class Note < ActiveRecord::Base
2008 Dec 16
3
Princely Plugin: get nil.size error
Hi All, I want to generate pdf with css. I am using princely plugin. This is code which I written def pdf prince = Prince.new() html_string = render_to_string(:template => ''/users/paid_invoice.pdf.erb'') send_data( prince.pdf_from_string(html_string), :filename => ''some_document.pdf'', :type =>
2009 Apr 27
5
ruby jasper report
Hi, I am trying to create a pdf using ruby jasper. For this I am referring this url:- http://oldwiki.rubyonrails.org/rails/pages/howtointegratejasperreports I have done everything whatever is in that link. Still I am not able to get the pdf. I am not getting any error in log file. My log file is:- "Processing AccountController#customer_report (for 127.0.0.1 at 2009-04-27 13:19:34) [GET]
2008 Jan 18
63
Jasper reports and iReport
Has anyone succeeded in producing Rails reports using jasper reports? I have prepared reports directly with Jasper''s iReport tool using my MySQL data. It is a very powerful reporting tool. The reports look greate. But I have not been able to produce the reports from my Rails application. I have followed the instructions provided at:
2009 Oct 22
19
undefined method `stringify_keys!' for "":String
i have an error undefined method `stringify_keys!'' for "":String my view is given below <%= form_tag :action => ''resolve_create'', :resolve => @resolve %> <p>resolution:<br /> <%= text_area ''resolve'',''content'', :cols => 40, :rows => 12 %></p> <%= submit_tag
2008 Nov 03
17
SQL queries in Rails
Hi... I want to know the equivalent instructions to insert, update, search and delete a registry. I know Rails can do it easily Thanks to ActiveRecord, but here''s the catch: I''m using PostgreSQL. As I''m using SQL to do the migration (Including the foreign keys), I need to know if I can use SQL queries to do those actions. Is there an example out there? I uncommented
2008 Apr 22
2
Custom Mysql queries slower than ActiveRecord in production
I have been working on optimizing the performance of a Rails app by rewriting the AR record methods into custom sql queries. What I did is that the result from the query is not instantiated as an object, which is supposed to be too time consuming. Here are the performance difference between using default AR methods and its custom equivalent. The number of requests per second was read from the log
2008 Jun 20
0
Queries in development log using ODBC adapter
Hi all. I''m in a project right now where I''m using the ODBC adapter to connect to a MS Sqlserver DB (believe me, it''s not my choice). Is there any way to get the SQL queries being generated a la the log when using MySql? Thanks, Andrew --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups
2007 Feb 05
0
help, queries in each page
hi, i''ve just installed this plugin http://code.google.com/p/query-stats/ but it seems to don''t work, is there anyone who use it ? eventually, is there other ways to show the database queries in each page? thanks -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google
2005 Feb 07
0
Multiple Netbios name queries on ports 32944, 33169 and 33171
I've had to set up an iptables filter to drop packets originating from ports 32944, 33169 and 33171 on a samba 3 server as broadcast 'storms' lasting ~3seconds have intermittently been taking down all net communication. Can anyone shed any light on this? The packet capured in ethereal is below. Lee Baker Sorry for not trimming - not sure what's important: No. Time
2007 Apr 04
1
[PLUGIN] count_from_query - easily convert finder queries into count queries
count_from_query gives you the ability to generate a COUNT query from a standard Rails find. For example, if you have the query User.find :all it would be trivial to get a count: User.count however, if you have a more specific finder method, such as class Company < ActiveRecord::Base def complete_videos Video.find :all, :conditions => "company_id=#{id} AND
2007 Jan 15
1
Using One Lookup Table for Multiple Model Properties
I have a model that has two properties that both come from the same database table. Let''s say I have a "Lead" model. This Lead has both a contact "State" (as in Colorado, Arkansas, etc.) and a "Property State" where the house he''s looking to refinance is located. Both of these should obviously be objects of the type "state".
2007 Oct 25
8
report generation in rails
Hi is there any way of generating reports other than xls and pdf. I am using my sql . -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To
2008 Dec 18
0
Multiple top level domains and one session
Hello all, I''ve been struggling with this for quite awhile and haven''t been able to find a solution. I need a user to be able to view multiple top level domains with a single login. My understanding is that this needs to be set in environment.rb and called with before_dispatch. This is what I''ve come up with: require ''activesupport'' require
2007 Sep 18
0
How to have multiple independently working controlllers for one view
Hi, i have the following problem - on my web project i will have two areas (components) which will change (submit) independently. However, the two areas will interact with each other, too, when some link is clicked for example . There is a rough picture of my problem at thios address : http://offtype.net/image_965035194627.gif.html . The blue areas are those who work independently form one another
2008 Aug 20
2
Re: undefine "require_gem"
On 20 Aug 2008, at 13:47, Amin Shah wrote: > > Frederick Cheung wrote: >> On 20 Aug 2008, at 13:41, Amin Shah wrote: >> >>> update, boot.rb replace the "requiregem" etc. But still don''t get at >>> any >>> success. >>> >> require_gem is just gem now. >> >> Fred > > Thanks for your reply, > So at