Page 1 of 1

Icon links work wrong in WB18

Posted: Thu Mar 23, 2023 4:46 pm
by Al_Sin
Good morning,
My links on icons working wrong way in WB18.
I put several icons in FlexGrid object and created links for each icon. Everything worked well in WB17, but in WB18 link opens even if I click in any location of FlexGrid and even in in the background.
I published demo page
https://www.travelcanadatninsurance.ca/ ... n_link.php

and demo project
https://www.travelcanadatninsurance.ca/carousel.wbs
There is only one icon on the page: Home. But this icon disabled all SELECT elements in FlexGrid and link opens when I click in any area of the FlexGrid.

Thank you,
Alexandre

Re: Icon links work wrong in WB18

Posted: Thu Mar 23, 2023 6:08 pm
by Pablo
The quickest way to solve this is by adding the following code in the page HTML (between head tags)

Code: Select all

<style>
#wb_Icon1 {
    position: relative;
}
</style>
In the next update, I will add this automatically for flexgrids.

Re: Icon links work wrong in WB18

Posted: Thu Mar 23, 2023 9:20 pm
by Al_Sin
Thank you!

The problem resolved.
Alexandre