Android Question Webview extras problem with running javastript when targeting skd version 26

hookshy

Well-Known Member
Licensed User
Longtime User
Html page below reads a csv file and show the file in a table
an example is shared below:

I worked all day to the app and worked like a charm with no sdktarget ...after changeing to sdk 26 no chance of having this work

logfile
B4X:
Failed to load http://192.168.119.100/FileBrowser/Download?Path=%2FDataLogs%2Flog_automat.csv: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access. in file:/// (Line: 0)


B4X:
<!DOCTYPE html>
<html>
 <head>
  <title>THIS IS THE TITLE</title>
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
 </head>
 <body>
  <div class="container">
   <div class="table-responsive">
    <h1 align="center">log_automat</h1>
    <br />
    <div align="center">
     <button type="button" name="load_data" id="load_data" class="btn btn-info">Load Data</button>
    </div>
    <br />
    <div id="employee_table">
    </div>
   </div>
  </div>
 </body>
</html>

<script>
$(document).ready(function(){
 $('#load_data').click(function(){
  $.ajax({
   url:"http://192.168.119.100/FileBrowser/Download?Path=%2FDataLogs%2Flog_automat.csv",
   dataType:"text",
   success:function(data)
   {
    var employee_data = data.split(/\r?\n|\r/);
    var table_data = '<table class="table table-bordered table-striped">';
    for(var count = 0; count<employee_data.length; count++)
    {
     var cell_data = employee_data[count].split(",");
   
   
     table_data += '<tr>';
     for(var cell_count=0; cell_count<cell_data.length; cell_count++)
     {
      if(count === 0)
      {
       table_data += '<th>'+cell_data[cell_count]+'</th>';
      }
      else
      {
       table_data += '<td>'+cell_data[cell_count]+'</td>';
      }
     }
     table_data += '</tr>';
    }
    table_data += '</table>';
    $('#employee_table').html(table_data);
   }
  });
 });
 
});
</script>
 
Last edited:

hookshy

Well-Known Member
Licensed User
Longtime User
logfile
B4X:
Failed to load http://192.168.119.100/FileBrowser/Download?Path=%2FDataLogs%2Flog_automat.csv: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access. in file:/// (Line: 0)
 
Upvote 0
Top