Displaying 20 results from an estimated 90000 matches similar to: "TWAIN and rails applications"
2007 Dec 27
1
Do any one have success stories using ExtJS with rails
Do any one have success stories using ExtJS with rails?
Its open to discuss about Ext-Js plugin''s features, success stories and
drawbacks..
Cheers,
Ratnavel
--
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
2008 Apr 18
1
RAILS Plugin for Twain
Hi,
Any one creating the rails plugin to integrate with Twain?
Thanks,
Ayyanar. A
--
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 Apr 15
1
How to call a java applet in rails application?
HI,
I have a applet file named "Scanner.class" which will scan and upload
image to the web server from Scanners.
I have couple of doubts in accessing that applet file.
1. How to call this applet from rhtml file, and where should i place
this file.
2. I also use some external jar files which i imported in my applet
file, where should i place these jars?
Thanks,
Ratnavel
--
Posted
2007 Dec 06
8
Default value for country_select
Using Country_select how to have default valur set to United States.
I have a select drop down in my Ui to display the Country names.
But i need United tates to be selected as default value.
I use country_select to populate the country names.
This is how i use <%= f.country_select :country, :selected=>''United
States'' %>
i also tried
<%= f.country_select :country,
2007 Dec 07
2
Pagination using will_paginate
Hi,
I use will_paginate plugin to paginate the records in my view file..
I implement the same in 2 of my modules..
Its working fine in one module where i perform only the basic CRUD
operation.
In the other module i do have search option. This plugin behaves
different for that method..
Normally if one click the page number links the request will be posted
back to the same action or method
2008 Jul 22
1
Rails and Giropay Integration help needed?
Hi,
I have a requirement to integrate paypal, google checkout, giropay to
my application for payment processing. Am done with Paypal and google
code.
I need help in integrating giropay since my cliet is from Germany..
Gimmi some fair suggestion in integration.
Thanks in advance,
Ratnavel
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You
2011 Apr 22
1
TWAIN scanners query
I see there's a TWAIN package for Wine, which is good news because I'm
trying to get a Minolta Dimage ScanDual slide scanner to work, BUT I
can't find any references to 'scanner', 'TWAIN', let alone 'Minolta' or
'Scan Dual' in the apps DB.
Where might I find a list of TWAIN apps that are known to run under Wine
and/or the status of Wine's TWAIN
2002 Dec 29
1
TWAIN
Hi :)
I installed TWAIN drivers for my scanner under wine ... everything done
with success, next I installed IrfanView ... everything done ... but when
I want to choose TWAIN driver in IF it says that it can't find driver. Is
there any solution? Wine doesn't support TWAIN or maybe its IrfanView
problem?
Greetings,
Nookie
2005 Mar 24
1
Wine and twain
Hi,
I haven't seen recent information on wine and twain.
I am trying to test a Finereader Office (version 5) with an USB scanner.
Everything seems working. But I get scanner not ready when searching for
scanner.
Sane, gimp or whatever are working well with my scanner.
Doing WINEDEBUG=+loaddll wine finereader.exe
I get:
...
trace:loaddll:load_dll Loaded module L"C:\\program files\\abbyy
2007 Dec 27
6
populate data in another fields on selection
Hi,
I would like to know how to populate data in another text fields on
selection from a drop down
For Ex
1) The form contains 4 fields out of which 3 are text fields and the 4th
one is
drop down list.
1) i would like to know how to populate the 3 text fields with data
simultaneously
on selection from the drop down list.
Please Help.
--
Posted via http://www.ruby-forum.com/.
2007 Dec 07
1
format.json
Hi did anyone used format.json before..
If so pls, do let me know how to use it....
--
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 Jan 07
0
Is Ext js compatible with Rauils 2.0.2?
Hi,
I was using Rails 1.8.6 till last week..
Now i updated my system dev environment to Rails 2.0.2, From then those
Ext js modules are not working..
Can some one help me out..
Thanks.
Ratnavel.
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails:
2008 May 27
0
How to find Date and Time difference in controller?
Hi,
I need a method similar to "distance_of_time_in_words_to_now" to be used
in the controller.
"distance_of_time_in_words_to_now" methods work only in view.
Thanks,
Ratnavel.
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails:
2007 Sep 04
3
Finding the position on an item in a collection
This feels like it should be easy but i can''t work it out: if i have a
collection of stories, ordered by (for example) date, then how do i find
out the position of the story with id = (eg) 23 in the collection?
I guess this is a ruby question rather than a rails-specific question,
but maybe there''s a rails way...
--
Posted via http://www.ruby-forum.com/.
2008 Mar 03
4
To use JS in RedBox Plugin
Hi All,
I''m using redbox plugin in my app. Redbox plugin is working properly.But
when i try to change text box values using js its not working.
The Code is
<input type="text" name="playlist" id="playlist_name">
<input type="radio" name="playlist"
2007 Jul 03
5
HOW TO: Easily output alternating item styles via metaprogramming
I always need to apply alternating item styles when outputting a collection,
here''s what I''ve been using recently.
In the app helper I define this method:
def alternate(items,alt=false
items.map{|i| i.class}.each { |k| k.class_eval {attr_accessor :alt}}
items.each { |i| i.alt, alt = alt, !alt }
end
When I call the partial I wrap the collection with this method:
2008 Mar 08
9
Newbie worries with "Developing Rails Applications on Max OSX Leopard"
Hello There,
As a new comer to RoR, I started to follow the article
http://developer.apple.com/tools/developonrailsleopard.html. In short
you create to entities and one one-to-many relation linking them.
Everything was good until the establishment of the relation. I am
unable to go any further than "Linking Models Together" : I can create
the "vendors" mentionned in the
2008 Feb 21
1
Creating incorrect plurals when generating scaffold
Preface: I''m trying to find my way through the "Build Your Own Ruby on
Rails Web Application" book. I''m completely new to programming and am
having a hard time figuring out the differences between rails 2.0.2 and
what''s in the book so please forgive me if this is a stupid question.
I''m confused because I finally thought I''d figured out the
2008 Oct 06
1
Rails console, saving objects
I was reading a book and following the instructions in it.
>> class Story < ActiveRecord::Base; end
=> nil
>> story = Story.new
=> #<Story id: nil, name: nil, url: nil, created_at: nil,
updated_at: nil>
>> story.class
=> Story(id: integer, name: string, link: string,
created_at: datetime, updated_at: datetime)
I do not remember me asking for id, name, link or
2006 Nov 27
5
What do you think about commercial applications for Rails?
Hello all,
I''m a RoR fan. I''ve read some RoR books, and I''m starting to use RoR for
commercial proyects.
As I use RoR more and more, I think about inexistent tools that would be
great to have when developing applications in RoR. For example: an IDE
with more features than RadRails. So then I think "hey! you could
produce one of these tools".
Some of these