Skip to content

Commit 0c7013c

Browse files
authored
974128: Correcting the preview sample of blazor inplace editor component.
1 parent 73198f9 commit 0c7013c

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

blazor/in-place-editor/getting-started-with-web-app.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -300,9 +300,9 @@ The following code explains how to initialize a simple In-place Editor with popu
300300
{% endhighlight %}
301301
{% endtabs %}
302302

303-
{% previewsample "https://blazorplayground.syncfusion.com/embed/VtrfZiBaJrrIVqHN?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" backgroundimage "[Blazor In-place Editor in Inline Mode](./images/blazor-inplace-editor-in-inline-mode.png)" %}
303+
{% previewsample "https://blazorplayground.syncfusion.com/embed/hDhIXOjhAIsuBPDh?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" backgroundimage "[Blazor In-place Editor in Inline Mode](./images/blazor-inplace-editor-in-inline-mode.gif)" %}
304304

305-
{% previewsample "https://blazorplayground.syncfusion.com/embed/BNVJDsrOTBrCTUyL?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" backgroundimage "[Blazor In-place Editor in Popup Mode](./images/blazor-inplace-editor-in-popup-mode.png)" %}
305+
{% previewsample "https://blazorplayground.syncfusion.com/embed/rZryjkXLAeqHmuVN?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" backgroundimage "[Blazor In-place Editor in Popup Mode](./images/blazor-inplace-editor-in-popup-mode.gif)" %}
306306

307307
## Configuring DropDownList
308308

@@ -560,14 +560,14 @@ The edited data is submitted to the server and you can see the new values gettin
560560
public void OnSuccess(ActionEventArgs<string> args)
561561
{
562562
this.PreviousValue = this.CurrentValue;
563-
this.CurrentValue = args.Value;
563+
this.CurrentValue = this.DropdownValue;
564564
}
565565
}
566566

567567
{% endhighlight %}
568568
{% endtabs %}
569569

570-
{% previewsample "https://blazorplayground.syncfusion.com/embed/BZVzXiLafrzKnAQi?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" backgroundimage "[Refreshing Blazor In-place Editor Data](./images/blazor-inplace-editor-refresh-data.png)" %}
570+
![Blazor In-place Editor with modified value](./images/blazor-inplace-editor-refresh-data.gif)
571571

572572
## See also
573573

blazor/in-place-editor/getting-started.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -231,9 +231,9 @@ The following code explains how to initialize a simple In-place Editor with popu
231231
{% endhighlight %}
232232
{% endtabs %}
233233

234-
{% previewsample "https://blazorplayground.syncfusion.com/embed/VtrfZiBaJrrIVqHN?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" backgroundimage "[Blazor In-place Editor in Inline Mode](./images/blazor-inplace-editor-in-inline-mode.png)" %}
234+
{% previewsample "https://blazorplayground.syncfusion.com/embed/hDhIXOjhAIsuBPDh?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" backgroundimage "[Blazor In-place Editor in Inline Mode](./images/blazor-inplace-editor-in-inline-mode.gif)" %}
235235

236-
{% previewsample "https://blazorplayground.syncfusion.com/embed/BNVJDsrOTBrCTUyL?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" backgroundimage "[Blazor In-place Editor in Popup Mode](./images/blazor-inplace-editor-in-popup-mode.png)" %}
236+
{% previewsample "https://blazorplayground.syncfusion.com/embed/rZryjkXLAeqHmuVN?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" backgroundimage "[Blazor In-place Editor in Popup Mode](./images/blazor-inplace-editor-in-popup-mode.gif)" %}
237237

238238
## Configuring DropDownList
239239

@@ -491,14 +491,14 @@ The edited data is submitted to the server and you can see the new values gettin
491491
public void OnSuccess(ActionEventArgs<string> args)
492492
{
493493
this.PreviousValue = this.CurrentValue;
494-
this.CurrentValue = args.Value;
494+
this.CurrentValue = this.DropdownValue;
495495
}
496496
}
497497

498498
{% endhighlight %}
499499
{% endtabs %}
500500

501-
{% previewsample "https://blazorplayground.syncfusion.com/embed/BZVzXiLafrzKnAQi?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" backgroundimage "[Refreshing Blazor In-place Editor Data](./images/blazor-inplace-editor-refresh-data.png)" %}
501+
![Blazor In-place Editor with modified value](./images/blazor-inplace-editor-refresh-data.gif)
502502

503503
## See also
504504

32.2 KB
Loading
62.2 KB
Loading
103 KB
Loading

0 commit comments

Comments
 (0)