Displaying 20 results from an estimated 4000 matches similar to: "passing data"
2014 Jun 08
0
Re-render partial inside a modal
*Inside my home.html.erb. I am rendering a partial inside a modal for my
sign-up.*
<div id="myModal" class="reveal-modal" data-reveal>
<%= render partial: 'users/form', :controller=>"users", :action =>"new" %>
<a class="close-reveal-modal">×</a>
</div>
*In my Users.controller.rb, I am
2011 May 28
0
Coffeebeans - smart to use?
Not sure if inline coffeescript is smart. Has just learned why inline
javascript not is smart, so I don''t understand why it now should be a
good thing with coffeescript.
On the other hand: I find the ability to use it when responding to
JavaScript (JS) requests very nice, so I wonder why this is not an
standard option in Rails 3.1.rc1? Will this come i future releases?
Will it therefore
2008 Jul 15
1
Modal forms remains hidden when main form clicked
I'm sorry if this question has been answered several times in the past. I have used Search option and I have not found any reference, and I have not yet found in your bugzilla.
My problem appears in all Wine versions tested (until 1.1.1).
When my application (I develops a Delphi Win32 application that runs perfectly in Wine) raises a Modal Form or Modal Message (using API MessageBox for
2005 Mar 07
1
Language learning program (Spanish to Go)
Hi,
I've tried installing a language learning program in Wine, but can't get
it to work. Actually, it's a pretty old program, designed to run in
Windows 3.1 or 95 (!), so I thought it would be OK - it seems to install
OK, but won't run - the diagnostics are below - any ideas please?
Andy
[andrew@Atlas2 andrew]$ wine "c:\spanish_tg\setup.exe"
2007 May 29
1
Modal Window Stealing Elements from Form. Need Elegant Solution.
I''m using Prototype.js with Control.modal to create a modal window on
my IPB Forum which takes all the various topic posting/replying/
editing options and places them into a Modal window.
The inherent nature of this action is to take the contents of whatever
DIV I told Control.Modal to make a modal window out of and place the
entire innerHTML of that DIV into a separate DIV outside the
2002 Nov 26
2
New to Wine (halflife upgrade fales)
Hi all,
This is a total newbe mistake I'm sure but I'm stumped. I have
installed: wine-20020605-2.i386.rpm
wine-devel-20020605-2.i386.rpm
in redhat 8.0
I can get all the way through the setup of halflife sound test and all,
then if I try to do the auto update it fails. It can't see a network
connection.
I am getting errors in my terminal during the install even though it
looks
2012 Mar 25
2
Modal dialogs getting out of focus
Hello,
it is really nice to be here with the wonderful Wine community.
Modal window gets out of focus if minimized and blocks any actions in the main
window.
I've attached and example created in Delphi called Project1. It has Form1
window with action button which opens a modal dialog called Form2.
The main idea is when opened Form2 to be always on top and to be impossible to
hide it behind
2012 Sep 20
7
jQueryUI autocomplete (Rails 3.1): can't get source as url to work
Hey,
I''m able to duplicate everything in Ryan Bates'' screencast on jQueryUI
autocomplete (#102<http://railscasts.com/episodes/102-auto-complete-association-revised>),
except for the piece that calls the server for completion data.
Here is my view html:
<input data-autocomplete-source="/searches" id="search-markets"
2003 Feb 22
0
Modal msgbox error (game installation problem)
Dear Wine-users,
According to the application database this game (Broken Sword II)
is meant to install and run under Wine.
However when I attempt to run the setup program
on the CD I get the following error message:
>root@Beauty:~# wine /cdrom/Setup.exe
>fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
The error message appears after commdlg.dll is loaded.
I loaded the
2012 Dec 05
1
Ajax response in a modal box
Hello guys,
I was wondering if I could display the ajax response in a modal
box. I could not find anything satisfying on the web. I am new to ajax.
This is what I was trying.
$(document).ready(function() {
var clicked1;
$(".inline").click(function(e) {
clicked1 = $(this).text();
$.ajax({
type: ''GET'',
url:''/controller_path'',
async: false,
2002 Jan 28
0
problems with modal MsgBox and critical section timeouts
hi all,
looking for advice on two issues, related to the same program. first,
i'm using a Wine-CVS build of 20020106. i've got a very basic
setup running - no local windows installed! (this is for license
reasons, it's a long story.) i am willing to try this again with
a local windows version installed, but i don't believe it will change
what i'm seeing.
the two
2011 Jul 23
6
Rails 3.1 CoffeeScript not working
I convert my old JS files into CoffeeScript, In my public controller I
used this functions
$(''#events a'').lightBox()
$(document).ready ->
$("#slider").easySlider
auto: true,
continuous: true
they load inside application.js like this
(function() {
$(''#events a'').lightBox();
$(document).ready(function() {
2007 Apr 14
0
[963] branches/wxruby2/wxwidgets_282/doc/textile/dialog.txtl: Added a few missing methods and cleaned up a bit.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding:
2002 Sep 09
0
wine-users digest, Vol 1 #1243 - 4 msgs
-----Original Message-----
From: wine-users-request@winehq.com
[mailto:wine-users-request@winehq.com]
Sent: Sunday, September 08, 2002 10:01 AM
To: wine-users@winehq.com
Subject: wine-users digest, Vol 1 #1243 - 4 msgs
Send wine-users mailing list submissions to
wine-users@winehq.com
To subscribe or unsubscribe via the World Wide Web, visit
http://www.winehq.com/mailman/listinfo/wine-users
2013 Feb 08
2
Video Progress Bar Issue
I am using ffmpeg to post video to my site in a modal. When I post I have
a second pop up window opening where the video should be uploaded and
processed while showing a progress bar. This enables my users to continue
using the site while the video is processed and they will receive a
notification when its done. The files and parameters are not being
transferred from the modal to the second
2013 Jan 24
12
group by + sum
Hi.. I need some support...
table:
week_id, user_id, project_id, hours
ex. =>
33, 2, 1, 10
34, 2,1,15
33, 2, 2, 20
35, 3, 1,20
etc.
Want to display a sum of hours per week_id per user_id
I have:
@hours = HourUser.includes(:user).group_by { |h| h.week_id }
@hours.keys.sort.each do |hour|
@hours[hour].collect(&:stunden).sum
Hours are summed up, but not sorted by user_id..
How to get
2011 May 06
2
Rails 3.1(beta1) + SASS + variables
Hello all,
in Rails 3.1, is it possible to define global SASS variables (and mixins)
that are shared across all *.css.scss files?
I am able to define SASS variables, yet they seemed to be scoped only within
each individual file …
On a side note -- is there a way to pass variables from my Rails app to the
SASS + JS (or CoffeeScript) files?
Thanks for your help.
Best,
Tomas
--
You received
2006 Jul 03
0
AJAX modal dialog using RJS
Fellow railsers
I spent some time in the past week trying to figure out a way to
create a modal dialog that can submit a form and not perform a full
page refresh. I solved my problem but I''m wondering if others out
there have had need for this and how they solved it? I''m not
completely happy with having to hack for IE6 but what else is new. I
blogged about it here:
2009 Aug 28
1
breaking multi-modal histograms down into combinations of unimodal distributions
Dear All,
Does anybody know if there is a functionality in R to break histograms
that show a clear bi-modal (or multi-modal) distribution into a series
of unimodal histograms that added up result in the original histogram?
I was thinking of using QQ-plots (for which tools are available in R),
and then observing the number of times the observed quantiles cross
the 1:1 line, but this only gives an
2001 Dec 01
1
Yet another wine problem...
Sorry to be a pest, but what is this telling me, and is there way to fix it?
fixme:dialog:MSGBOX_OnInit system modal msgbox ! Not modal yet.
Thanks again.