Hi,
I have a problem with columns resizing of ListGrid in firefox, when borders are used.
- the area where you can start resizing by drag&drop is misplaced. It is not on the border between two columns but it's placed more to the right
- the dragged line showing the new column size is shown wrongly
See the attached picture.
I found it in SmartGWT 2.4. But it can be reproduced in SmartClient too.
Use following XML to reproduce it. (modified sample form ListGrid reference documentation)
Problem occurs in firefox5. In IE9 it works correctly.
Is there any solution for this problem?
I need to set some borders to ListGrid.
Thanks for any help.
Svatya
I have a problem with columns resizing of ListGrid in firefox, when borders are used.
- the area where you can start resizing by drag&drop is misplaced. It is not on the border between two columns but it's placed more to the right
- the dragged line showing the new column size is shown wrongly
See the attached picture.
I found it in SmartGWT 2.4. But it can be reproduced in SmartClient too.
Use following XML to reproduce it. (modified sample form ListGrid reference documentation)
Code:
<ListGrid width="400" border="20px solid red"> <fields> <field name="itemName" title="Item" type="text"/> <field name="unitCost" title="Unit Cost" type="number"/> </fields> <data> <supplyItem itemName="17'' LCD Monitor" unitCost="330"/> <supplyItem itemName="Dr. Grip Pens - Black" unitCost="4.99"/> </data> </ListGrid>
Is there any solution for this problem?
I need to set some borders to ListGrid.
Thanks for any help.
Svatya
Comment