This is a migrated thread and some comments may be shown as answers.

RadExpander close unexpectedly

1 Answer 44 Views
General Discussion
This is a migrated thread and some comments may be shown as answers.
Pierre
Top achievements
Rank 2
Iron
Iron
Pierre asked on 08 Jun 2017, 08:48 PM

Hi, I got a RadExpender with a Textbox that call a viewmodel function when I hit the EnterKey.

private void SourceLotTxt_KeyDown(object sender, KeyRoutedEventArgs e)
{
    if (e.Key == VirtualKey.Enter)
    {
        _viewModel.SourceLotTxtEntered(SourceLotTxt.Text);
    }
}

In the ViewModel function I call an external service web to check if the text entered are valid (with an await call). In the Service call function when I run this line:

var response = await client.PostAsync(_baseWSBaultar.ToString(), content);

For an unknown reason, the RadExpander close is panes.

Any suggestion? Un bug in the RadExpander? I am on the last version 2017.2.502.45

1 Answer, 1 is accepted

Sort by
0
Accepted
Nasko
Telerik team
answered on 09 Jun 2017, 06:35 AM
Hello Pierre,

We are already aware of the observed by you issue. However, I am glad to inform you that it has already been fixed. The fix will be available with our next official release R2 2017 SP1 that should be available by the middle of June.

We apologize for the inconvenience the issue might be causing you and hope the provided information will be helpful for you.

Regards,
Nasko
Progress Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
General Discussion
Asked by
Pierre
Top achievements
Rank 2
Iron
Iron
Answers by
Nasko
Telerik team
Share this question
or