I've found the solution... I've to put a static way for my xml document.
For people who need some information about how make work with the XML document :
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Flexigrid Sample - XML</title>
<style type="text/css">
@import "css/flexigrid/flexigrid.css";
@import "style.css";
</style>
[removed][removed]
[removed][removed]
[removed]
$(document).ready(function() {
$('.gridList').flexigrid({
url: 'sample2_xml.xml',
dataType: 'xml',
rp: 50,
rpOptions: [50],
debug: true,
colModel: [
{display: 'Column 1', name: 'column1', sortable: true, width: 70 },
{display: 'Column 2', name: 'column2', sortable: true, width: 70 },
{display: 'Column 3', name: 'column3', sortable: true, width: 70 },
{display: 'Column 4', name: 'column4', sortable: true, width: 70 },
{display: 'Column 5', name: 'column5', sortable: true, width: 70 },
{display: 'Column 6', name: 'column6', sortable: true, width: 70 },
{display: 'Column 7', name: 'column7', sortable: true, width: 70 },
{display: 'Column 8', name: 'column8', sortable: true, width: 70 },
{display: 'Column 9', name: 'column9', sortable: true, width: 70 },
{display: 'Column 10', name: 'column10', sortable: true, width: 70 },
{display: 'Column 11', name: 'column11', sortable: true, width: 70 },
{display: 'Column 12', name: 'column12', sortable: true, width: 70 },
{display: 'Column 13', name: 'column13', sortable: true, width: 70 },
{display: 'Column 14', name: 'column14', sortable: true, width: 70 },
{display: 'Column 15', name: 'column15', sortable: true, width: 70 },
{display: 'Column 16', name: 'column16', sortable: true, width: 70 },
{display: 'Column 17', name: 'column17', sortable: true, width: 70 },
{display: 'Column 18', name: 'column18', sortable: true, width: 70 },
{display: 'Column 19', name: 'column19', sortable: true, width: 70 },
{display: 'Column 20', name: 'column20', sortable: true, width: 70 },
{display: 'Column 21', name: 'column21', sortable: true, width: 70 },
{display: 'Column 22', name: 'column22', sortable: true, width: 70 },
{display: 'Column 23', name: 'column23', sortable: true, width: 70 },
{display: 'Column 24', name: 'column24', sortable: true, width: 70 },
{display: 'Column 25', name: 'column25', sortable: true, width: 70 },
{display: 'Column 26', name: 'column26', sortable: true, width: 70 },
{display: 'Column 27', name: 'column27', sortable: true, width: 70 },
{display: 'Column 28', name: 'column28', sortable: true, width: 70 },
{display: 'Column 29', name: 'column29', sortable: true, width: 70 },
{display: 'Column 30', name: 'column30', sortable: true, width: 70 }
],
usepager: true
});
});
[removed]
</head>
<body>
<h1>Flexigrid Sample - XML</h1>
<h2>Introduction</h2>
<p>
This demonstrates <a href="http://www.webplicity.net/flexigrid/">Flexigrid</a> for jQuery with a XML data source.
The data source used can be found here: <a href="sample2_xml.xml">sample2_xml.xml</a>.
</p>
<p>
This Version is modified to load heavy data faster and without lagging of the interface.
</p>
<h2>Example</h2>
<div class="gridList"><!-- Empty --></div>
<h2>Contact</h2>
<p>
For more information contact me: <span class="securedEmail">gregor.noczinski 3t optivo.net</span>.
</p>
</body>
</html>