Hi There,
I have a report with buttons that i create with bootstrap.
Everything works fine when i use text but when i use the same thing with a string it does not show it;s value instead it shows the string itself.
OnRecord
//** aantal is afgerond
$sql_command = “SELECT
count(*) AS COUNT_0 FROM bpv_pok_opgeleverd WHERE loc_id =”.$param." AND bpv_afgerond = 5";
sc_lookup(ds,$sql_command);
$afgerond = {ds[0][0]};
bootstrap();
{AFGEROND}=’<button type=“button” class="btn btn-outline-success “>echo “$afgerond”)”</button>’;
without bootstrap the value is shown
Any suggestions.