View Issue Details

IDProjectCategoryView StatusLast Update
0003058OXID eShop (all versions)4.07. Source code, Testpublic2012-12-10 13:44
Reportertjungcl 
PriorityurgentSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version4.5.0 revision 34568 
Target VersionFixed in Version4.6.0_RC1 
Summary0003058: oxequalizer cant equalize a second time
Descriptionthe very usefull oxequalizer can only be run once for a group of elements.
When after that the elements change (javascript while using page like hiding something onclick or loading elements with ajax), the oxequalizer doesnt work.

to fix this, the equalHeight function just has to remove the height of all elements where it originally added it. This can be done by adding not only height but an indicator css class to, such as

element.css("height",height).addClass("oxequalized");

And before calculating the max height of the elements, it can me removed like

group.filter(".oxequalized").css("height","");

(pseude code, not tested).
TagsNo tags attached.
ThemeAzure
BrowserAll
PHP Versionany
Database Versionany

Activities

alfonsas_cirtautas

2012-04-13 14:24

reporter   ~0006278

Implemented and tested similar feature with additional checks and tests

Thanks for reporting !