Posts by Erik Ieger Dobrychtop • 153 points
10 posts
-
1
votes1
answer61
viewsQ: How to save data from a view that is inside a view in Rails
I rendered a view inside another, because my register has 3 tables inside a CRUD. the form is in the view. I rendered the custom_address this way, Note: it will only save the customer’s address.…
-
0
votes1
answer79
viewsQ: View inside View
Hello, I’m picking up a code to continue and would like to troubleshoot a problem. i have a CRUD of clients, and within the views, have the cliente_addressee file... I went to observe and found that…
-
2
votes2
answers116
viewsQ: How to update a CRUD with Scaffold?
I have a system with Ruby and a CRUD has been created via Scaffold and I would like to add some new fields. Because what I found on the internet was using the following command. rails generate…
-
0
votes2
answers279
viewsA: Memory error when generating spreadsheet with Phpexcel
It is possible to increase the memory in the php.ini file, located for example on my machine on: /usr/lib/php/7.0/php.ini-development Or directly in php code ini_set('memory_limit', '4096M');…
-
0
votes1
answer65
viewsA: Swift 3 how to open a Popover so that it does not cover all viewcontroller that called it?
Behold here an explanation of Apple, in English but great Here is also an example of how to set size. > let height = yourDataArray.count * > Int(popOverViewController.tableView.rowHeight) >…
-
1
votes2
answers254
viewsA: Swift 3 - how to close one last Popover open on another Popover ?
I have the answer to your problem below, the scenario is different but the solution is same. You have to write the code to close the Popover in the current view controller. Write your code in your…
-
1
votes1
answer47
viewsA: Put a line on a Uitabbaritem?
You can do it with adding custom image, which will be created in your code, to selectionIndicatorImage in your Uitabbar object. For example, you can create extension for the Uiimage class like this:…
-
2
votes3
answers964
viewsA: How to change the title of the "back" button of the navigation bar
You can do by the interface by the following mode. On the storyboard click on the screen you want, then on the view controller tab. On the right side of the property, search back button and can type…
-
1
votes1
answer65
viewsA: Hide Tabbar and Show Uitoolbar
To give Hidden in Tabbar Add this line in Swift’s Viewdidload() : self.tabBarController?.tabBar.hidden = true To show the Uitoolbar And in Viewdidload() try this too toolBar.barStyle =…
-
4
votes1
answer240
viewsQ: Angularjs google Chart with dynamic data
Example of how my code is http://plnkr.co/edit/hMnKAzjbkQzHWjL5p6KX?p=previewangularjs I receive the data from the webservice and organize this way. var avaliacoes_descTipo = []; var…