Сообщение от Suharik
|
Я его немного переделать для того чтобы строки раздвигались при наведении мыши:
<script type="text/javascript">
$(document).ready(function(){
$("#report tr:odd").addClass("odd");
$("#report tr:not(.odd)").hide();
$("#report tr:first-child").show();
$("#report tr.odd").mouseover(function(){
$(this).next("tr").toggle();
$(this).find(".arrownext").toggleClass("up");
});
$("#report tr.odd").mouseout(function(){
$(this).next("tr").toggle();
$(this).find(".arrownext").toggleClass("up");
});
//$("#report").jExpand();
});
</script>
|
А если вместо mouseover/out использовать mouseenter/mouseleave?
Что-то там в таблице квартир нет никакого фолдинга, или я не туда смотрел?