similar to: Populating values from html

Displaying 20 results from an estimated 4000 matches similar to: "Populating values from html"

2011 Jun 20
2
analysis with the data from mysql database
Hi everyone, I have certain values retrieved from mysql database.How can i do certain analysis like histogram, correlational analysis tc using this data,I tried it. But when i tried to plot a histogram it actually showed error the data is not numeric evenif it was stored as integer data type in mysql db. Please anyone help. Can anyone specify the steps for doing data analysis after
2006 Mar 16
4
Table Relationships Problems.
I have the following tables setup: locations :id :name systemmessages :id :name systemmessage_validtimes :id :name :systemmessage_id :location_id :start :end The systemmessage_validtimes has a ''has_many'' relationship with systemmessages, meaning that there could be many valid times for each system message. @systemMessage = Systemmessage.find(1) E.g. I
2011 Jun 08
5
Can we prepare a questionaire in R
Is there a way to prepare a questionnaire in R like html forms whose data can be directly populated into R????? [[alternative HTML version deleted]]
2005 Jun 09
8
RDoc Dashboard Widget
Hi everyone - sorry if this is a bit OT, I''m not subscribed to the ''ruby-talk'' list, but if anyone wants to cross post this over there... This is just a quick announcement to let people know that I''ve built a basic RDoc Dashboard widget for Mac OS X Tiger. It''s still beta-ish, but seems to work okay for me - and it''s a convenient reference
2001 Dec 01
4
features in samba 3.alpha
now that samba3 compile in my redhat 7.2 i want to test it.. reading the documentation that described the new features supported in samba3alpha i cant find too much explanation.. and here is the quiz: now from a win9x client when i see the list of users, i can see groups for adding to my win9x clients shares?? what is the state of support of changing password from a terminal like NT SERVER
2009 Dec 12
6
How to scrape a page without knowing its html structure
Hi, I''m doing one module in my site, there I need to import user blog into my site. I can use RSS feeds to read the blog information but using RSS feeds I''m not getting entire information. So, I need to scrape the user blog page. How to scrape a pages without knowing its html structure of a page? Please anyone can help me for this issue. Thanks in advance. -- You received this
2006 Jul 26
4
MasterView rails-optimize (x)html friendly template engine - Release 0.2.4
MasterView is a rails-optimized (x)html friendly template engine plugin that provides another option to the existing rails view templates (rhtml and rxml). The main idea is to provide a template engine that would provide all the power of layouts, partials, and rails helpers but still be editable/styleable in a WYSIWYG editor. It was also a major goal that the syntax of these attribute directives
2011 Aug 29
1
reading tables from multiple HTML pages
Hi, beginner to R and was having some problems scraping data from tables in html using the XML package. I have included some code below. I am trying to loop through a series of html pages, each of which contains a single table from which I want to scrape data. However, some of the pages are blank - and so it throws me an error message when it gets to htmlParse(). The loop then closes out and I
2006 Jul 05
0
MasterView rails-optimized (x)html friendly template engine - Release 0.2.3
MasterView is a rails-optimized (x)html friendly template engine plugin that provides another option to the existing rails view templates (rhtml and rxml). The main idea is to provide a template engine that would provide all the power of layouts, partials, and rails helpers but still be editable/styleable in a WYSIWYG editor. It was also a major goal that the syntax of these attribute directives
2006 Nov 04
0
populating select boxes, view or controller?
Over the past few days I''ve seen a number of examples posted here where people are populating their select boxes in the view; that is: <% options = Model.find(:all, ...).map{|m| [m.name, m.id]} -%> <%= select(:object, :attribute, options, ... %> Is this the preferred way of doing this? I''ve generally done this in my controller, where I can catch exceptions and
2006 Mar 23
0
Newbie - populating select list from db - BUMP :)
Hi! in the same problem with a select with some values from db: the following select in test.rhtml: <%= select(:listSetting, :code, @listSettings) %> where @listSettings = ListSetting.find(:all, :order => "code").map {|u| [u.code, u.id] } i have an observer_field defined in test.rhml as below: <%= observe_field("listSetting_code", :update =>
2012 Aug 02
0
Pre-populating volumes
Hey guys, I'm a server admin working on some high-availability web server setups with Amazon's EC2. We're running Gluster to keep our assets sync'd up between regions globally using replicated volumes with one brick in each geographic region. Each brick is a single EBS drive, so it's easy to snapshot and create a new volume from the snapshot, taking maybe 30 seconds total for
2009 Dec 02
1
Extract html tables to data.frames
Hello, I would like to scrape some html tables from a web page and convert them to a data.frame so I can perform further analysis. Could anyone tell me the best way to do this? Would it be more appropriate to use an external tool first? Thanks Dan -- ************************************************************** Daniel Brewer, Ph.D. Institute of Cancer Research Molecular Carcinogenesis
2006 Aug 18
1
Populating Select Box from DB table...
Hi everyone, I have in a DB table item id''s (ints) and what i''d like to do is populate a select box (in another separate ruby app) with the corresponding name of each item. What''s the best way to go about that - this isn''t working too well for me(http://www.protoscript.net/article/4/ruby-on-rails--filling-select-boxes) -- Posted via
2006 Jul 18
1
Auto-populating time portion of a datetime field from a form
I see that if I use the date_select helper in my view, then in the generated page, my selects are named obj[datetime_field(1i)] (and 2i and 3i for the other parts). These auto-populate the date portion of my datetime_field. I have another datetime field that I''m presenting the time from and I would like to use a similar scheme to autopopulate it. Currently, I''ve used the
2006 May 16
0
strange MySQL data populating
I am getting weird data when trying to use HABTM. I have a Images table with columns id, title, and file. I have a Categories table with columns id, name. I have a join table for them with image_id, and category_id when I do @images.inspect I get: [#"image 1", "id"=>"52", "portrait"=>"0",
2006 Apr 30
0
populating model attribute from one of many lists
I have a model named Project which contains a name attribute, and I have a second model named Booking which has, among other things, a date and a Project. (has_many :bookings, belongs_to :project). When a user creates a new Booking, they have the option of using an existing Project or creating a new Project. As an added complexity, when choosing from existing Projects, they can either choose from
2006 Jan 13
2
Populating form elements with AJAX
Hi All! Is it possible to populate a form (or certain elements) with the shipped AJAX library? When using link_to_remote it seems that only innerHTML of a DOM element can be updated, but I would like to set the value of a text field (or perhaps multiple). Greetings, Wouter -- Posted via http://www.ruby-forum.com/.
2006 Jan 19
1
Populating a select field using observe_field
Hi, I''ve just started toying with Rails and AJAX, so forgive me if this is a bit of a stupid question. I''m trying to populate a select field when the value of another select field is changed. Looking through the API doc, it seems like observe_field is what I need. In my view I have: <p><label for="wine_country_id">Country</label><br/>
2006 Jan 25
1
Migrations for populating authority tables
I''ve got a number of fixtures which populate ''authority'' tables in an app (eg tables which are used to construct the values of selects or valid ''constants''). These will be updated infrequently and are ''configuration'' data, so I''m not sure its worth constructing an interface to do this in the deployed app. Seeing as