|
|
stackoverflow.com
- 2012-07-12 17:30:35
- Similar
- Report/Block
I'm running a QA testing program using Ruby's Vapir automation tool with Firefox and I am trying to resolve an issue with modal dialogs. To illustrate this, I am testing this piece of code from https://github.com/vapir/vapir/wiki/moda l-dialogs ======================================== ===== browser=Vapir::Firefox.new # or Vapir::IE.new brow...
|
|
|
stackoverflow.com
- 2012-07-24 18:01:10
- Similar
- Report/Block
Just starting to play around with bootstrap and it's amazing. I'm trying to figure this out. I have a textarea for feedback inside a modal window. It works great. But I want the focus to go on the textarea when you click on the button to activate the modal. And I can't seem to get it working. Here is a fiddle: http://jsfiddle.net/denislex...
|
|
|
stackoverflow.com
- 2013-04-21 07:29:20
- Similar
- Report/Block
My app (written using MvvmCross and with MVVM pattern in mind) needs to display popup windows where user can choose of confirm certain options. So basically it's a classic modal dialog, but since the app's view model is implemented in a portable class library, it needs to tackle modality in a generalized sense - some platforms simply don'...
|
|
|
|
stackoverflow.com
- 2012-06-24 12:55:44
- Similar
- Report/Block
I am going through the tutorial on http://ruby.railstutorial.org/ , but I already had ruby 1.8.7 installed. I need to have 1.9.2/1.9.3 version. I started to use rvm. $ rvm list rubies rvm rubies ruby-1.8.7-p358 [ x86_64 ] ruby-1.9.2-p318 [ x86_64 ] =* ruby-1.9.2-p320 [ x86_64 ] ruby-1.9.3-p194 [ x86_64 ] # => - current # =* - curren...
|
|
|
stackoverflow.com
- 2012-07-15 02:20:05
- Similar
- Report/Block
Any modal that I am creating using twitter bootstrap fails to appear. I'm not sure what I'm doing wrong seeing that I set up a test modal using the code that bootstrap provides and it still doesn't work. Here is my code (body only): You need to link to bootstrap.js, bootstrap-modal.js, jquery.js, and bootstrap.css <body> <div cl...
|
|
|
stackoverflow.com
- 2012-03-12 02:27:24
- Similar
- Report/Block
I have the following code: $('.uiModalWrapper').live('click', function() { var modal = $(this).find('.uiModal'); modal.addClass('shake'); modal.addEventListener('webkitAnimationE nd', function() { modal.removeClass('shake');...
|
|
|
stackoverflow.com
- 2012-05-16 23:19:11
- Similar
- Report/Block
I've got a couple of hyperlinks that each have an ID attached. When I click on this link, I want to open a modal ( http://twitter.github.com/bootstrap/java script.html#modals ), and pass this ID to the modal. I searched on google, but I couldn't find anything that could help me. This is the code: <a data-toggle="modal" data-id="@book.I...
|
|
|
|
stackoverflow.com
- 2010-09-25 20:03:18
- Similar
- Report/Block
I'm trying to get command-t installed for vim but my current version of vim doesn't have the (+ruby) flag. The command "which ruby" shows that ruby is installed. What do I need to do in order to activate the +ruby flag in vim? Also, what does the +ruby flag technically mean?...
|
|
|
stackoverflow.com
- 2012-02-28 09:46:17
- Similar
- Report/Block
Has anyone gotten Logstash working with ruby on rails? My client is telling to use Logstash for log collector etc. I am using ruby on rails technology. most of the part is almost done. But requirement is to get logs into logstash. Please let me know Is it possible,how?...
|
|
|
stackoverflow.com
- 2012-08-03 01:43:57
- Similar
- Report/Block
Ok, guys, i need your help. My English is not so good, so I hope that you'll understand what I want. I need some very simple modal that will be generated only trough JavaScript or Jquery. In that modal I will have some iframe. Modal and iframe in it must be generated via js or jquery, because I need just some code in <script> <a&...
|
|
|
stackoverflow.com
- 2012-07-10 03:12:17
- Similar
- Report/Block
I am on a VM (Lucid 64b) with a system ruby version of ruby 1.9.3p0 I have a ruby script that creates a .deb file -- The script needs to use ruby 1.8.7 which I have installed in /foo/ruby/1.8.7 There is an existing Gemfile to be used with bundler I can't use RVM and I can't install the gems at the system level My .bashrc includes (and has...
|
|
|
stackoverflow.com
- 2012-04-23 15:48:22
- Similar
- Report/Block
The user should be able to click on a link which will open a modal with a map inside. Everything works fine but when you close the modal and click on the link again the modal opens but the map doesn't load again. This is the jQuery that opens the modal when the link is clicked. $('.mapModal').click(function(){ var id = $(this).attr('valu...
|
|
|
|
stackoverflow.com
- 2012-05-28 16:00:02
- Similar
- Report/Block
i have simple ruby+watir-webdriver example: #!/usr/bin/env ruby require "rubygems" require 'watir-webdriver' browser = Watir::Browser.new # do something browser.close when i run this file manually with: /path/to/my/ruby/example.rb it works fine. When i put this in cronjob, doesnt work...i've changed the cronjob to ruby /path/to/my/ruby/ex...
|
|
|
stackoverflow.com
- 2012-04-04 21:33:36
- Similar
- Report/Block
var Modal = function (content, options) { this.options = options this.$element = $(content) .delegate('[data-dismiss="modal"]', 'click.dismiss.modal', $.proxy(this.hide, this)) ^^^^^^^^^^^^^^^^^^^^ What does this mean? I am quite fresh. I haven't seen this...
|
|
|
stackoverflow.com
- 2012-04-30 19:30:48
- Similar
- Report/Block
I have the following page: http://www.poker-labs.com/571010001-1050 -Super-Tuesday-300K-Gtd.html As you can see, for some reason the modal is launched initially although I have defined show: false , also, the 'x' button should be working but it's not. I feel like I'm missing something pretty basic...
|
|
|
stackoverflow.com
- 2013-03-20 07:03:17
- Similar
- Report/Block
I am creating a modal window using twitter bootstrap. The default behavior is if you click outside the modal area, the modal doesn't close. i have open a signup form on that so the user has to fill-up that form to go to the page.but my problem is that in slow internet connection or any other problem the modal window loaded very slow and t...
|
|
|
stackoverflow.com
- 2012-07-03 17:00:53
- Similar
- Report/Block
I currently have an app that is using a twitter bootstrap modal box. The div that the modal is displaying is getting loaded with JQuery from /users/new action. Everything works great if the user enters valid data in the modal box submitted but if the data sent to params does not pass validation the controller redirects back to the new act...
|
|
|
stackoverflow.com
- 2012-04-02 22:18:10
- Similar
- Report/Block
I am using Emacs 23.4.1 on my MacBook as a ruby development environment when I am on the go. Although ruby-mode works, Emacs doesn't appear to recognize ruby specific key bindings. For example, invoking C-c C-r isn't recognized, but manually invoking the command ruby-send-region will work. I should note that on my Linux VM using Emacs...
|
|
|
|
stackoverflow.com
- 2012-03-19 09:19:52
- Similar
- Report/Block
I am using RailsInstaller in Vista. I am working rottenpotatoes project of Saas Course. So I cloned it from Github. Then I did bundle install. When I ran the command 'rails s' in the directory "hw2_rottenpotatoes" I get an error: [31mCould not find ruby-debug-basw19-0.11.25 in any of the sources [0m Is there any alternate way to install r...
|
|
|
stackoverflow.com
- 2012-04-05 11:37:51
- Similar
- Report/Block
I am using Ruby 1.8.7 and Rails 2.3.5 version . When I try to start the server it throws the below error. When I list the gem its shows the rake there but of different version actionmailer (2.3.5) actionpack (2.3.5) activerecord (2.3.5) activeresource (2.3.5) activesupport (2.3.5) bundler (1.1.3) fattr (2.2.1) git (1.2.5) postgres-pr (0.6...
|
|
|
stackoverflow.com
- 2012-04-28 13:44:39
- Similar
- Report/Block
I use bootstrap modal plugin. But modal dialog is not shown in center. Why? my mistake? http://dl.dropbox.com/u/573972/stackover flow/bootstrap/modal.html <!DOCTYPE html> <head> <meta charset="utf-8"> <title>test</title> <meta name="description" content=""> <meta name="author" content=""> <...
|
|
|
|
stackoverflow.com
- 2012-08-11 16:38:12
- Similar
- Report/Block
I tried to create modal window using Twitter Bootstrap with the following code <link rel= "stylesheet" href = "/static/bootstrap/css/bootstrap.css" > <script src ="/static/bootstrap/js/bootstrap-modal.j s" ></script> <script type = "text/javascript" src= "/static/bootstrap/js/bootstrap.js" ></script> <scrip...
|
|
|
stackoverflow.com
- 2012-03-06 07:42:59
- Similar
- Report/Block
I'm not sure why this is happening, any clue??? $ echo $RAILS_ENV production $ bundle | grep debug Using ruby-debug-base19 (0.11.25) Using ruby-debug-base19x (0.11.29) Using ruby-debug19 (0.11.6) $ gem list | grep debug ruby-debug-base19 (0.11.25) ruby-debug-base19x (0.11.29) ruby-debug19 (0.11.6) Gemfile: group :development do gem "m...
|
|
|
stackoverflow.com
- 2012-02-26 20:42:48
- Similar
- Report/Block
I (think) I have researched this problem extensively in Apple's docs and online, both here and elsewhere. However, after several hours of troubleshooting I am out of ideas. My Modal view controller refuses to dismiss itself at the appropriate time. I am aware that modal controllers must be dismissed by the controller that presented the...
|
|
|
|
stackoverflow.com
- 2013-03-01 15:53:07
- Similar
- Report/Block
New to JSON/RUBY. I have a Rest Service returning a JSON string and I would like to parse this into a Ruby Class. Is this recommended? I have tried the following example and get error- Can't convert String to Integer. This is for a rhomobile app I'm working on. I'm thinking POJO-> JSON-> Ruby. Any advice would be appreciated. Ruby @@get_...
|
|
|
artviper.net
- 2013-06-05 07:05:19
- Similar
- Report/Block
Advertise here via BSA PopEasy is a light weight jQuery plugin that is a must have for any developer to easily create modal windows . Put focus on important elements by applying a mask to your page and opening a customizable pop up modal window. To use multiple modals on one page, you must sync the href attribute of the trigger to the id...
|
|
|
stackoverflow.com
- 2012-04-01 17:55:21
- Similar
- Report/Block
I am finding the CSV parsing in Ruby 1.9.3 to be remarkably fragile. So much so that I am wondering if I am doing something wrong If I do the following in irb I get an error: 1.9.3-p125 :011 > require 'csv' => true 1.9.3-p125 :012 > a = 'one,two,three, "four, five",six' => "one,two,three, \"four, five\",six" 1.9.3-p125 :013...
|
|
|
|
stackoverflow.com
- 2012-03-14 14:31:36
- Similar
- Report/Block
Working with simple modal, and I'm trying to prevent the close on escape. says it should be simple, but this $(document).ready(function(){ $("#login_modal").modal({ overlayCss: { backgroundColor: '#000', }, containerCss: { height: 485, width: 385, backgroundColor: "#f6f6f6", bo...
|
|
|
busyteacher.org
- 2013-05-20 03:34:10
- Similar
- Report/Block
This is a worksheet for revising modal verbs of advice at pre-intermediate level.There's a brief explanation followed by an activity in which students are asked to fill in the blank spaces with the appropriate modal verb.The answer key is included.
|
|
|
stackoverflow.com
- 2012-05-07 00:34:50
- Similar
- Report/Block
In my server, when I run ruby -v I get:} ruby 1.9.2p290 (2011-07-09 revision 32553) [i686-linux] but when I run sudo ruby -v I get ruby 1.8.7 (2010-01-10 patchlevel 249) [i486-linux] I have tried setting the alternatives as suggested , but I just got an error message. I have also tried the default option with rvm , but didn't work eithe...
|
|
|
|
busyteacher.org
- 2013-02-20 20:35:37
- Similar
- Report/Block
This is a rephrasing worksheet about Modal Vebs designed for Intermediate and Upper-Intermediate students. They can practise modal verbs such as can, can't, should, may, might in their present and perfect forms. There's a key to make the teachers' job ...
|
|
|
stackoverflow.com
- 2013-03-22 15:57:49
- Similar
- Report/Block
Trying to upgrade to the latest version of Ruby on Rails. I got ruby and rails installed ok (I think). C:\Users enjaminw>ruby -version ruby 2.0.0p0 (2013-02-24) [x64-mingw32] C:\Users enjaminw>rails -v Rails 3.2.13 I'm following an instructional guide out of a Ruby on Rails book but it's a little out of date. The next step says to downloa...
|
|
|
webfaction.com
- 2012-11-08 17:08:28
- Similar
- Report/Block
It’s been a while since the last installment in our series of in-depth looks at the setup on WebFaction servers, so today we thought we’d take a close look at Ruby. Ruby has become a popular choice for web development and we’re pleased to support this powerful, dynamic open-source language. To start off, let’s do a quick mic check with R...
|
|
|
|
stackoverflow.com
- 2013-05-08 11:34:40
- Similar
- Report/Block
I have a string that is ~10 GB in size (huge RAM usage ofc..). The thing is, I need to perform string operations like gsub and split on it. I noticed that Ruby will just "stop working" at some point (without yielding any errors though). Example: str = HUGE_STRING_10_GB # I will try to split the string using .split: str.split("\r\n") # but...
|
|
|
stackoverflow.com
- 2012-03-22 23:38:01
- Similar
- Report/Block
After going through the effort of finally purging distro ruby packages from my Ubuntu development sandbox to replace with the highly recommended rvm, I must be misunderstanding something fundamental: I don't want to have to change all the shebang lines in all my .rb source files from #!/usr/bin/ruby /usr/local/rvm/bin/ruby nor anything...
|
|
|
stackoverflow.com
- 2013-04-09 16:47:55
- Similar
- Report/Block
I have just started learning ruby . There are few things I am quite confuse with in ruby as I used to work with Perl and C. 1) How to add external library like "Mechanize" to use with your script? 2) Best free source to learn ruby development like What is gem , bundle and creation of Gem.
|
|
|
|
stackoverflow.com
- 2013-03-22 15:19:39
- Similar
- Report/Block
I currently have a gallery which opens a modal pop up when you click on the thumbnail. What I would like to do is to be able to generate a unique link specifically for the modal (i.e.; www.mywebite.com/#link1), which loads it's content via ajax. If somebody was to send this unique modal link and send it to someone and they were to paste i...
|
|
|
tutorials.de
- 2013-02-06 10:27:07
- Similar
- Report/Block
Hallo, ich bekomme die Modal mit einer Remote-Datei nicht zum laufen, obwohl für mich alles richtig. Hier die Docs: http://twitter.github.com/bootstrap/...p t.html#modals Ich verwende die bootstrap-modal.js v2.2.2: https://raw.github.com/twitter/boots...s trap-modal.js Hier mein Aufruf: HTML-Code: "/php/remote.php" data-target="#myModal" d...
|
|
|
freelancer.de
- 2013-03-06 13:38:06
- Similar
- Report/Block
Need someone to set up VPS running below, or newer versions. Postgres 9.1 Redis 2.6 Ruby 1.9.3 Also need to install a script from GitHub. Will also need someone to do general maintenance. (Budget: $30-$250 USD, Jobs: Ruby & Ruby on Rails)...
|
|
|
|
cyberforum.ru
- 2013-05-03 19:38:37
- Similar
- Report/Block
Добрый вечер! Стоит система система Win7 x64, это домашний компьютер и поставить другую ОС не предстявляет возможным. Ruby начал изучать совсем недавно было всё хорошо, до тех пор пока не переустановил ruby и rails. Сейчас при попытке запустить rails s, получаю ошибку: Код: d:/Ruby/lib/ruby/gems/2.0.0/gems/sqlite3 -1.3.7-x86-mingw32/lib/sq...
|