Search Results for "auto-sizing-jpanel-with-jscrollpane"
Lessons
Forum Threads
Auto-submitting Forms & Custom Turbo Stream Actions Discussion
Awsome work Chris. Thanks!

15
General
Auto-removing notices from a turbo_stream
Do you mean like a flash notice? you can do it as a
```
function myFunction() {
setTimeout(function(){ alert("Hello"); }, 3000);
}
```

2
Rails
Auto-detect User Time Zones in Rails Discussion
in my app around_action yields no html view somehow.

4
General
Call Api and Auto-Reload div.
have I to setup Action Calbe or a rake job or something else or directly with javascript/jquery?
Thank you very much!!!

2
Rails
How do I exclude images in my auto formatting of PDF links?
I added some CSS to my site to put a font a https://birthdaywishes.onl/ wesome PDF icon in front of every hyperlink that links to a PDF. It looks great, but there are a lot of instances where there...

1
CSS
Keeping track with Annotate Discussion
Anyone having issues with the command 'annotate' not working in the command line after following this tutorial?

10
General
Turbo stream problem
Thank you for your reply...
I was under the impression that
```
broadcasts
```
would be enough. But that doesn't include create I guess.
ActionCable seems like a hassle to set up. Thought turbo...

3
Rails
Group Chat with ActionCable: Part 5 Discussion
Hi chris,
Isn't storing chat id is vulnerable to XSS?

24
General
How can i switch to slave database in case of master fail?
I have 2 MySQL instances. One is master and the second is a slave. I want to configure the rails app in a way that if the connection to my master database failed, then auto-connect to the slave dat...

1
Rails
Error on Letsencrypt tutorial
I am following the guide on this site for lets encrypt and I ran into error, I don't know if something is outdated or changed
cd ~
git clone https://github.com/letsencrypt/letsencrypt
cd letsencry...

1
Servers
Rails App configurations for AWS CodeBuild
LOOKING FOR SOME ANSWERS FROM EXPERTS.
I DO HAVE A BUILDSPEC.YML FILE AND MY CONTAINER BOOTS UP AND SAYS:
Your Ruby version is 2.6.5, but your Gemfile specified 2.7.2
my ruby version of the app is...

2
Rails
Automated way to do multilingual in existing rails application
I have existing rails application . Currently no language support and now need to do language support . Is there any tools , gem etc which will help me to find static word from erb/helper/model etc...

1
Rails
Rails for Beginners Part 18: Accessing the Current User Discussion
Problem solved by stopping the program and ran `rails db:migrate`

2
General
How do I set a start value for 'serial' or sequence in psql
Hi everyone,
I have a migration like this:
```
def change
add_column :orders, :order_number, :serial
end
```
and when I create a new record in the database I get 1,2,3 etc.,
What I need is ...

1
Ruby
where to look for errors besides nginx error logs
So the problem wasn't with Amazon S3 but was an issue with rmagick/ImageMagick?
I'm using CarrierWave and looking to do auto-resize of images on upload. Is there any configuration that needs to h...

4
Servers
Rails for Beginners Part 30: Tweet Validations Discussion
if you are getting the error:
```sh
undefined local variable or method `form' for #
```
make sure you ***don't*** include `partial` in the render (like you would with the navbar)
```erb
<%= re...

9
General