Posts by Edrian Biagi • 34 points
9 posts
-
0
votes2
answers26
viewsA: Open Alert when user enters access screen
Call the clientEndereco() right after redirecting to the screen you want. For example, according to the example of the flutter. onPressed: () { Navigator.push( context, MaterialPageRoute(builder:…
flutteranswered Edrian Biagi 34 -
-2
votes3
answers32
viewsA: Open a href link in php
Checks if the link is in this format: http://example.com target=_Blank <a href="<?php echo $site . "/webmail" ?>" target="_blank">…
-
0
votes1
answer30
viewsA: Flutter Certificate
I had that problem the other day! I solved it this way: void main() { HttpOverrides.global = new MyHttpOverrides(); runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget…
-
0
votes2
answers47
viewsA: Passing id to pdf printing with cakephp3 and tcpdf
Your method should look like this: public function pdf_view2($schedule_id = null, $id = null) { $this->viewBuilder()->layout('ajax'); $this->set('title', 'My Great Title');…
-
-1
votes1
answer54
viewsQ: System.NullReferenceException. How to include fields from another table?
Friends, I had a table Pessoa that contained a lot of user information. I decided to create a table Aluno to separate the information. My tables are like this: Person: Cod, Nome, Email, Senha Pupil:…
-
0
votes0
answers231
viewsQ: Generate Boleto with Boletonetcore - C#
Friends, I’m trying to generate boleto with the Boletonetcore I’m trying to run the test Bancoitaucarteira109tests.cs. I created a project, inserted the files, but I’m not sure how to run it. I…
-
0
votes0
answers12
viewsQ: Error retrieving Client Data for Editing - C#
Friends, I have a table "person" and "address", I can register a customer and insert their information in the two tables, but I’m having difficulty to consult the customer’s information and bring it…
-
0
votes2
answers22
viewsA: Changing order quantity - Cakephp 3.8
I got it this way: public Function update($index = null) { $Session = $this->request->Session(); $cart = $Session->read('cart'); $quantity = $this->request->date('quantity'); if…
-
-1
votes2
answers22
viewsQ: Changing order quantity - Cakephp 3.8
Friends, I’m trying to update the quantity of products in an order cart. My index.ctp is like this: <html> <body> <main class="mt-1 pt-1"> <div class="container wow fadeIn">…