The report has many editable fields which work great on a desktop, but when using an ipad the user is redirected to the home screen as soon as a change is made.
The report uses javascript to modify styles when the editing stored procedure returns data. Could that be causing this issue?
select 'dbr.javascript', "
function my_callback(ret)
{
var o = jQuery.parseJSON(ret);
cellvalue = o.value;
cellstyle = o.style;
if ( cellvalue < 1 ) {
cellstyle='color:#FFFFFF;background:#FFFFFF';
cellvalue=null;
}
cell_value_set( this, cellvalue );
$(this).attr('style',cellstyle);
}";