We'll take a look at the loading dialog issue. On the form issue, we'll need a way to reproduce the problem, as there doesn't seem to be anything similar happening in any of the samples.
Announcement
Collapse
No announcement yet.
X
-
We are also seeing the same issue as described by ssssteffff. This was seen when testing with FF 18.0.1 and SmartGWT 3.1p Jan 22nd 2013. Issues not seen on FF 10 + 17.
Issue 1:
Our window dialogs are showing a strange shadow appearance. See attached image.
Issue 2:
Also, we are seeing a second issue with forms with many radio buttons. The radio buttons are not selected in some cases. Please see second attachment.
Comment
-
We see the problem with shadow appearance (strange gaps in the shadows) and are working on it.
We haven't seen a problem with radio button selection and it's not clear from your screenshot what the problem is. Can you show us a snippet of code containing a form with a radiogroup that we can run on our end and describe how to reproduce the problem
Thanks
Comment
-
Originally posted by jornn View PostI tested todays (Jan 23rd) SmartGWT 3.1p and the same two issues remains.
I will see if I can come up with an example/short code on how we are loading/using RadioButtonItems in our app.
Tx.
Not sure if I've mentioned it so far, but this issue only shows up in production - if running inside eclipse, the radio button panel works like it should (no empty/not selected radio buttons).
Comment
-
I have been able to find a workaround for the Radio Button Group issue:
1) Call rbItem.setValue(null) before updating the radio button to some other value.
I attempted this because I saw that the radio buttons always set themselves to the proper value the very first time the user selected a resource which set the radio buttons to some value. Every time after the first time they were sporadically setting themselves.
So, I tried this:
Code:// bug workaround rbItem1.setValue(null); rbItem2.setValue(null); // set rb values: rbItem1.setValue("D"); rbItem2.setValue("M");
Comment
-
Originally posted by Isomorphic View PostWe'll take a look at the loading dialog issue. On the form issue, we'll need a way to reproduce the problem, as there doesn't seem to be anything similar happening in any of the samples.
Comment
-
Originally posted by cjustice View PostI'm regression testing our app against the Jan 29th SmartGwtEE nightly against Firefox 18, and I'm seeing that TextItems (FormItems) that are disabled aren't drawing - they don't appear onscreen. Has anyone else seen that behavior?
Thanks!
Yes, same happening to me!
Comment
-
I'm also seeing this in IE8, using the January 30th build. TextItems that are disabled are not rendering in IE8 or Firefox 18.
Is this being looked at?
Originally posted by cjustice View PostI'm regression testing our app against the Jan 29th SmartGwtEE nightly against Firefox 18, and I'm seeing that TextItems (FormItems) that are disabled aren't drawing - they don't appear onscreen. Has anyone else seen that behavior?
Thanks!
Comment
-
We're not reproducing the problem with disabled TextItems failing to render. We've opened a new thread for this: http://forums.smartclient.com/showthread.php?t=25277
If you can show us how to reproduce the problem (in that thread) we'll take a look.
Regards
Isomorphic SoftwareLast edited by Isomorphic; 31 Jan 2013, 15:13.
Comment
-
This is not Firefox related... but it happended due to the ff changes in nightly builds. The rich text Item is not editable anymore in Chrome and Opera. On Firefox and IE it works. I am Using Nightly 3.1 from 31.01.
Code:txtText = new RichTextItem( CItemSupplyNews.txt, "Text" ); txtText.setShowTitle( true ); txtText.setWidth( "*" ); txtText.setColSpan( 1 ); txtText.setHeight( 300 );
Comment
-
Originally posted by freon View PostAre you going to expose the nightly builds in the smartclient Maven repo? We can't depend on the nightly buids in our project if it is only "link to some jar" somewhere on the web.
Comment
Comment