You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/BootstrapBlazor.Server/Locales/en-US.json
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3219,7 +3219,9 @@
3219
3219
"SelectsShowSearchTitle": "Drop-down box with search box",
3220
3220
"SelectsShowSearchIntro": "Controls whether the search box is displayed by setting the <code>ShowSearch</code> property, which is not displayed by default <b>false</b>. You can set the <code>IsAutoClearSearchTextWhenCollapsed</code> parameter to control whether the text in the search box is automatically cleared after the drop-down box is collapsed. The default value is <b>false</b>.",
3221
3221
"SelectsConfirmSelectTitle": "Drop-down box with confirmation",
3222
-
"SelectsConfirmSelectIntro": "Block changes to the current value by setting the <code>OnBeforeSelectedItemChange</code> delegate.",
3222
+
"SelectsConfirmSelectIntro": "Prevent the current value from changing by setting the <code>OnBeforeSelectedItemChange</code> delegate or setting the <code>ShowSwal</code> parameter to <code>true</code>.",
3223
+
"SelectConfifrmSelectDesc1": "Set the <code>OnBeforeSelectedItemChange</code> callback method, and pop up a window in the callback method to confirm whether to change the value. If it returns <code>true</code>, the value will be changed, otherwise it will not be changed.",
3224
+
"SelectConfifrmSelectDesc2": "Set <code>ShowSwal=\"true\"</code> and then confirm the value of the <code>SwalTitle</code> <code>SwalContent</code> parameter using the built-in popup window. In the callback method, you can confirm whether to change the value.",
3223
3225
"SelectsTimeZoneTitle": "Timezone",
3224
3226
"SelectsTimeZoneIntro": "Display data of Timezone",
Logger.LogError(exception,"{BootstrapBlazorErrorBoundary} {OnErrorAsync} log this error occurred at {Page}",nameof(BootstrapBlazorErrorBoundary),nameof(OnErrorAsync),NavigationManager.Uri);
70
+
if(EnableILogger)
71
+
{
72
+
Logger.LogError(exception,"BootstrapBlazorErrorBoundary OnErrorAsync log this error occurred at {Page}",NavigationManager.Uri);
0 commit comments