wcx6298 / smartgwt

Automatically exported from code.google.com/p/smartgwt
0 stars 0 forks source link

RichTextEditor in the recent nightly build does not accept any data user entry in Chrome #705

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Before your post : If you are not 100% sure that you've found an issue,
please post on the SmartGWT forums first. Upon confirmation you'll be
advised to create an issue.

All issues require a minimal standalone test case with
an onModuleLoad() to be attached. You can modify an existing showcase
example if desired. Issues created without a standalone test case are
subject to being rejected after 7 days if no test case is present.

Please test any issue against the latest available code (from
smartclient.com/builds) before filing, and indicate any release versions
that you know are also affected.

What steps will reproduce the problem?
1. just place a rich text editor component in a canvas
2. set the value of the component to "hello world" 
3. run your app
4. in chrome, delete the content of the component
5. try to re-enter data in the component in chrome

What is the expected output? What do you see instead?
You cannot enter anything in the component.
but this works on IE

What version of the product are you using? On what operating system?
LGP last nightly build (2/11/2013)....prbl is existing in any build since at 
least 2 weeks.

What browser(s) does this happen in?  Are there any browsers where the
issue does not occur?
Chrome on window xp

Please provide any additional information below.
This is an important regression.

Original issue reported on code.google.com by etel...@gmail.com on 13 Feb 2013 at 4:10

GoogleCodeExporter commented 9 years ago
We're not reproducing this issue with the following simple onModuleLoad:

        public void onModuleLoad() {
        RichTextEditor rte = new RichTextEditor();
        rte.setHeight(300);
        rte.setBorder("1px solid red");
        rte.setValue("Hello World");
        rte.draw();

    }

Please show us a test case that demonstrates the problem, or if you are seeing 
the problem with the above logic, please clarify exactly which build version 
you're using (check the version string reported at the bottom left of the 
developer console).

Regards
Isomorphic Software

Original comment by smartgwt...@gmail.com on 13 Feb 2013 at 9:47