Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    textAreaItem.selectValue() doesn't work

    Hi,

    my OS is UBUNTU and I don't know yet whether it works with another systems.

    textAreaItem.selectValue() doesn't work. E.g. see http://www.smartclient.com/smartgwt/showcase/#grid_to_excel_category_new

    Please help!

    Kind regards,
    - sipungora

    #2
    Try
    Code:
           
     Scheduler.get().scheduleDeferred(new ScheduledCommand() {
                @Override
                public void execute() {
                    textAreaItem.selectValue();
                }
            });

    Comment

    Working...
    X