Note: Developed with Laravel 5.7.
Note 2: This is the "New Order" view.
The form will dynamically receive the products according to their previously registered items. Until then, okay!
The user will bookmark the product and enter the desi...
I placed one of my sites on Azure.
Is there no email service?
I've been able to fire e-mails from external servers, but I want to create and use one in the same domain that is in Azure.
How do I solve this problem?
I have a form that returns an array with the values:
Número: {{Form::text('tel[]')}}
Proprietário: {{Form::select('proprietario[]',['Aluno'=>'Aluno','Pai'=>'Pai'])}}
Tipo: {{Form::select('tipo[]'['Pessoal'=>'Pessoal', 'Comercial'=>...
My program traverses an image and assigns the color values R, G, B to variables that were compared to matrices containing the R, G, B colors of asphalt and earth called auxAsfalto and auxTerra . The question is: when I run the i...
I'm using jqGrid 4.54 in my project and I want to put a message blocking the whole screen with the blockUI in> when my AJAX request encounters an error on the server as error 500.
I know that 2.66.0 does not work with synchronous A...
I am making a status change in my database using $.getJSON , it works, but in return I need to update the div where the data is and I am not able to perform this task, see the code below: / p>
<script>
$(function(){...
I'm looking for a way to align the text of the card component in ionic. How to do this?
<div class="card">
<div class="item item-image">
<img ng-src={{imagem}} id="smallimage">
</div>...
I have the following code, which creates a table, using createElement() :
var context = document.createElement('table');
var row; context.className = 'table';
row = context.insertRow();
row.insertCell().innerHTML = 'foo';
row.insertCell...
In Web Forms we have UserControl . These controls have a code-behind and a layout. They can be used in different projects / solutions without depending on other things.
I want to create a control that displays multiple elements and so...