Posts by Alexandre Queiroz • 49 points
4 posts
-
0
votes2
answers699
viewsA: Angular (8) form validation message
Error can be corrected by double use of Elvis Operator name? .value.length does not work because value is also null, should be: name.value?. length or name?. value?. length…
-
0
votes2
answers699
viewsQ: Angular (8) form validation message
I’m working on an Input that needs to have a message : Type at least 10 characters that message should change with each character that is typed So, when you type: Alex the message should be: Type at…
-
2
votes2
answers81
viewsQ: Boostrap Vertical Alignment
I’m doing a grid on boostrap, and I can’t get it properly aligned vertically. It should always stay that way: *-------------* *--------------* *--------------* | card grande | | card Pequeno | |…
twitter-bootstrapasked Alexandre Queiroz 49 -
1
votes0
answers119
viewsQ: Angularjs query data Sending object to filter
I have a WS written in Spring that takes an object as a filter and returns a data list. in my Java Service: @ResponseBody @RequestMapping(value="/{filtro}",method=RequestMethod.GET) public Datatable…