Hi Isomorphic,
I have a ListGridField with an icon like the flag icon in this example (v11.0p_2017-03-29).
Is it possible that you add an API that on icon-hover there is a hand-cursor shown (like for ImgButton)?
The reason behind this: I have an click handler on the containing cell via ListGrid.addCellClickHandler() and want to show that the icon is not for display purposes only, but also has a function.
From the intended effect it is the the hand-cursor you added here.
I'm using latest 5.1p, but 6.1d would also be OK.
Best regards
Blama
I have a ListGridField with an icon like the flag icon in this example (v11.0p_2017-03-29).
Code:
ListGridField countryCodeField = new ListGridField("countryCode", "Flag", 40); countryCodeField.setAlign(Alignment.CENTER); countryCodeField.setType(ListGridFieldType.IMAGE); countryCodeField.setImageURLPrefix("flags/16/"); countryCodeField.setImageURLSuffix(".png");
The reason behind this: I have an click handler on the containing cell via ListGrid.addCellClickHandler() and want to show that the icon is not for display purposes only, but also has a function.
From the intended effect it is the the hand-cursor you added here.
I'm using latest 5.1p, but 6.1d would also be OK.
Best regards
Blama
Comment