Announcement

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

    SC.askforValue

    I call the following code:

    import com.smartgwt.client.util.SC;
    import com.smartgwt.client.util.ValueCallback;

    ...

    SC.askforValue ("123", new ValueCallback()
    {
    public void execute(String value)
    {
    if (value != null)
    {
    }
    else
    {
    }
    }
    });

    And I just receive the exception:

    (TypeError):
    type: undefined_method
    argument: askforValue, [object Object]


    Why this might be happening?

    Thank you again.
    Yorgos

    #2
    There was a typo. Fixed in SVN.

    Sanjiv

    Comment

    Working...
    X