This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ul.typeahead.dropdown-menu { | |
position: absolute; | |
top: 100%; | |
left: 0; | |
z-index: 1000; | |
display: none; | |
float: left; | |
min-width: 160px; | |
padding: 5px 0; | |
margin: 2px 0 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public function AutocompleteJson(Request $request) { | |
$data = XXXXX::select("xxxx as xxxx") | |
->where("xxx","LIKE","%{$request->input('query')}%") | |
->get(); | |
return response()->json($data); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="form-group col-md-6"> | |
{{ Form::label('XXXXXXX','XXXXXXX')}} | |
{{ Form::input('text','XXXXXXX', null, array('class' => 'form-control', 'autocomplete' => 'off')) }} | |
</div> | |
<script> | |
$(function () { | |
$("#XXXXXXX").typeahead({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.request.get('http://www.whileushop.com/lama/json.php',function (data) { | |
console.log(data); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Erro: SDK location not found. Define location with sdk.dir in the local.properties file or with an ANDROID_HOME environment variable. | |
Solução: | |
Vá até a pasta Android do seu projeto. | |
- Crie um arquivo chamado: local.properties | |
-Abra o arquivo e coloque o caminho de sua SDK | |
Exemplo: C:\\Users\\Jonathan\\AppData\\Local\\Android\\sdk |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
change index.js to index.android.js | |
react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res | |
react-native run-android |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
[ | |
{ | |
"id": 1, | |
"slug": "acrelandia", | |
"city": "Acrelândia", | |
"state": "Acre", | |
"uf": "AC" | |
}, | |
{ |
OlderNewer