Vladislav Volkov

Results 12 comments of Vladislav Volkov

There is an issues with SOCKS5 proxy. I have `HTTP::ConnectionError (couldn't read response headers)` error when trying to request data using this type of proxy. Any suggestions on how to...

@ixti thanks for the answer!

@domi91c did you solve this problem?

@apotonick the problem is that I can't use collection in collection on form. For example I have such code in Reform::Form: ```ruby collection :contacts, populate_if_empty: Contact do properties :first_name, :last_name,...

@apotonick when I wrote p form.contacts[0].phones, I got ``` [#"648-822-8073", "type"=>"Work", "primary"=>true}, @model=#, @mapper=#, @_changes={}, @errors=#>] ``` But when I tried to pass it to ff.fields_for, I've got error: ```...

The most strange thing for me that I use two same objects in fields_for, but on top level it work and in nested fields_for it stops working. I start to...

@apotonick thanks for answers :)

@apotonick I didn't find solution and desided to use ```text_field_tag "account[contacts_attributes][#{ff.index}][phones_attributes][0][number]```. It's not good solution but I can't come up anything else...

Had the same issues. Used the solution that proposed by @n-rodriguez plural form of contracts like ```ruby # app/concerns/account/contacts/contracts module Account::Contacts::Contracts ``` and it works.