PDA

View Full Version : analisys page stuck



askez
12-07-2008, 04:16 PM
hi,

i've made my own analysis page in bi server v 1.7

i make new query and after i hit enter the page goes to the right place:

http://localhost:8080/pentaho/Pivot?solution=samples&path=analysis&action=drillionics.xaction

but the page is white with nothing written.

a lock at the page source and i see that the [age got stuck after:

function load(){
cursor_wait();
controller = new PivotRepositoryBrowserController();
controller.setOnAfterSaveCallback( function()
{
var newActionName = encodeURI( controller.getActionName() );
var newSolution = encodeURI( controller.getSolution() );
var newActionPath = encodeURI( controller.getActionPath() );
document.location.href='Pivot?save-action=saveAs&save-path='+newSolution
+'/'+newActionPath+'&save-file='+newActionName+'&save-title='+newActionName;
});
cursor_clear();
}

function save()
{
cursor_wait();

var newActionName = encodeURI( "



please help me!