Hi,
I have problems whith flexigrid when I want to use it in a project
which uses prototype already. The problem is the same as other people
described on this page:
http://groups.google.com/group/flexigrid/browse_thread/thread/bd5b6ab8aa36d6eb
So I get the same white box instead of the table if prototype.js is
imported. On that page a patch is suggested as well for flexigrid but
it did not work for me. Could You tell me what to do, please?
Here is my example code:
--------------------------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://
www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="css/flexigrid/
flexigrid.css">
<script type="text/javascript" src="../../UI/js/prototype.js"></
script>
<script type="text/javascript" src="../../../libs/js/jquery/
jquery-1.3.2.js"></script>
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function(){
jQuery("div").hide();
});
</script>
<script type="text/javascript" src="flexigrid.js"></script>
</head>
<body onload="jQuery('.flexme1').flexigrid();">
<div>asd</div>
<table class="flexme1" id="flexme1">
<thead>
<tr><th width="70">A</th><th width="70">B</th><th width="70">C</
th><th width="70">D</th></tr>
</thead>
<tbody>
<tr><td>1</td><td>2</td><td>3</td><td>4</td></tr>
</tbody>
</table>
</body>
</html>
--------------------------------------
Thanks in advance,
Csongor