Posts by Rubens Junior • 139 points
22 posts
-
0
votes1
answer120
viewsQ: Reuse Angular component 8 by changing the json structure
I am with 2 similar json, however, with one more constant in one of them. I’d like to match the 2 so I can reuse the same component and on the same call. Ex.: "data": [ { "id": 1, "titulo":…
-
0
votes3
answers339
viewsQ: JWT and Angular 7 returning Token null value in the application
My JWT application has the following code: my Model of user: export class User { id: number; username: string; password: string; name: string; admin: boolean; token?: string; } The ts of the Login…
-
0
votes2
answers507
viewsA: List taxonomy Terms related to specific post_type Wordpress
Good people, for those who have the same doubt that I once did, I managed to solve using a very interesting function:…
-
0
votes2
answers507
viewsQ: List taxonomy Terms related to specific post_type Wordpress
Hello, I have to list all Terms of 4 taxonomies, however they have to belong to a specific post type! For example, I have the following information: post_type ( graduation, pos_graduation ) taxonomy…
-
2
votes0
answers155
viewsQ: WSDL soap with PHP giving error
I have the following code try { $client = new SoapClient("link.wsdl"); $function = "METADOPRINCIPAL"; $arguments = array( 'METADOPRINCIPAL' => array( 'Msg' => array( 'Transacao' => array(…
-
1
votes1
answer195
viewsA: Permissions error in Wordpress - Nextgen Gallery
With a server FTP, can be the (Filezilla) you go to that wp-content folder and right click on the Gallery folder and go alterar permissões, there you select the fields to record, edit, read until…
-
1
votes3
answers3142
viewsQ: Select Sum in table with PHP/Mysql
I have a table with the following fields: date, time and quantity. And I need to make a select sum of it. To better understand, I have a form where I insert a date, after I insert, I will make a…
-
0
votes3
answers2875
viewsA: How to add tabs to my modal bootstrap
If I understand what you need, put tabs with content, in case, TABS. You need to put something more or less like this inside modal-body: <ul class="nav nav-tabs"> <li…
-
0
votes1
answer112
viewsQ: Error while doing image url GET on Json Android
I have the following code: private class DownloadJsonAsyncTask extends AsyncTask<Void, Void, Void> { @Override protected void onPreExecute() {...} @Override protected Void…
-
1
votes2
answers157
viewsA: Marker id pass to setOnInfoWindowClickListener
In case someone has the same problem, I was able to solve it in the following way: I put the hasmap instead HashMap<String, String> markerMap = new HashMap<String, String>(); Then in the…
-
1
votes1
answer328
viewsA: After logging in, prevent the app from returning to the login screen with the back button
You can put Finish(); after the Intent so that it closes the current Activity when passing to new. I hope I’ve helped.
androidanswered Rubens Junior 139 -
1
votes2
answers157
viewsQ: Marker id pass to setOnInfoWindowClickListener
I’m trying to pass the value of the Marketer to the setOnInfoWindowClickListener, but I’m not sure what is the best way to do this, can anyone help me? It even passes a value, but not the loop, IE,…
-
1
votes1
answer5452
viewsA: Client Registration Area in Wordpress
You can use the https://wordpress.org/plugins/customer-area/ It was always very useful in some projects I needed.…
-
1
votes1
answer80
viewsQ: Json for android Markers
I’m trying to loop markers from google maps, picking up information from a json, but I’m stuck on "transferring" the information from doinbackground to the Google method. To better understand,…
-
3
votes1
answer342
viewsQ: Change Httpparams code to httpurlconnection
I have a code that connects json to a mysql database, but Httpparams is obsolete in the version of java I’m using, so I’d like to know how to do it or how best to put new parameters and maintain…
-
1
votes1
answer1014
viewsQ: Specific time for the day of the week in the datetimepicker
I have a specific form of datetimepicker, working cool, however, I need each day of the week to have a different time, for example, on Sunday have 2 times available, on Monday 3 times, on Tuesday…
-
1
votes2
answers1084
viewsA: How to loop posts in Wordpress?
I suggest you use the bootstrap grid http://getbootstrap.com/css/#grid to create the. layouts by first assembling the grids and then implementing the loops. https://codex.wordpress.org/pt-br:O_Loop…
-
1
votes1
answer689
viewsQ: Carousel with wordpress loop in columns
Hello, I’m trying to adjust my Carousel so that it has a grid done by loop, I have the following wordpress code: <?php global $posts; $b = 0; $args = array( 'post_type' => 'banner',…
-
0
votes1
answer595
viewsQ: Automatic height chat iframe
I’m developing a chat in php, it’s working perfectly, however, I’m having trouble putting the iframe for the main site where the client will have access, in the code it opens the iframe, but if I…
-
1
votes1
answer416
viewsQ: Create a dynamic checkbox value (value) using ajax
I have an ajax code http://jsfiddle.net/rubensoul/dcb14q79/ and I need the values that appear to be dynamic, example: In the link I put has 3 inputs and in js I created for only 1, if I put for…
-
2
votes1
answer1469
viewsQ: As popular select with 2 json parameters
I’m making a form, and I didn’t find anything like it in the research I did. I have the code http://jsfiddle.net/rubensoul/xdmz35oy/3/ I’m getting popular them normally, When selecting a date he…
-
2
votes1
answer1624
viewsQ: Popular select based on a json date
I have a bootstrap and validated form right, but I need that when selecting a date on the datepicker, it automatically loads a select with JSON, and has 3 more selects need to be filled after this,…