@@ -28,7 +28,8 @@ protected override async Task OnAfterRenderAsync(bool firstRender)
28
28
{
29
29
if ( firstRender )
30
30
{
31
- await JS . InvokeVoidAsync ( "window.blazorBootstrap.currencyInput.initialize" , ElementId , isFloatingNumber ( ) , AllowNegativeNumbers ) ;
31
+
32
+ await JS . InvokeVoidAsync ( "window.blazorBootstrap.currencyInput.initialize" , ElementId , isFloatingNumber ( ) , AllowNegativeNumbers , cultureInfo . NumberFormat . CurrencyDecimalSeparator ) ;
32
33
33
34
var currentValue = Value ; // object
34
35
@@ -121,7 +122,8 @@ private string ExtractValue(object value, CultureInfo cultureInfo)
121
122
if ( AllowNegativeNumbers )
122
123
validChars = string . Concat ( validChars , "-" ) ;
123
124
124
- return string . Concat ( value ? . ToString ( ) ? . Replace ( "," , "." ) ? . Where ( c => validChars . Contains ( c ) ) ! ) ;
125
+ var test = string . Concat ( value ? . ToString ( ) ? . Replace ( "," , "." ) ? . Where ( c => validChars . Contains ( c ) ) ! ) ;
126
+ return test ;
125
127
}
126
128
127
129
private bool isFloatingNumber ( ) =>
@@ -332,55 +334,55 @@ private bool TryParseValue(object value, out TValue newValue)
332
334
// sbyte? / sbyte
333
335
if ( typeof ( TValue ) == typeof ( sbyte ? ) || typeof ( TValue ) == typeof ( sbyte ) )
334
336
{
335
- newValue = ( TValue ) Convert . ChangeType ( value , typeof ( sbyte ) ) ;
337
+ newValue = ( TValue ) Convert . ChangeType ( value , typeof ( sbyte ) , CultureInfo . InvariantCulture ) ;
336
338
337
339
return true ;
338
340
}
339
341
// short? / short
340
342
341
343
if ( typeof ( TValue ) == typeof ( short ? ) || typeof ( TValue ) == typeof ( short ) )
342
344
{
343
- newValue = ( TValue ) Convert . ChangeType ( value , typeof ( short ) ) ;
345
+ newValue = ( TValue ) Convert . ChangeType ( value , typeof ( short ) , CultureInfo . InvariantCulture ) ;
344
346
345
347
return true ;
346
348
}
347
349
// int? / int
348
350
349
351
if ( typeof ( TValue ) == typeof ( int ? ) || typeof ( TValue ) == typeof ( int ) )
350
352
{
351
- newValue = ( TValue ) Convert . ChangeType ( value , typeof ( int ) ) ;
353
+ newValue = ( TValue ) Convert . ChangeType ( value , typeof ( int ) , CultureInfo . InvariantCulture ) ;
352
354
353
355
return true ;
354
356
}
355
357
// long? / long
356
358
357
359
if ( typeof ( TValue ) == typeof ( long ? ) || typeof ( TValue ) == typeof ( long ) )
358
360
{
359
- newValue = ( TValue ) Convert . ChangeType ( value , typeof ( long ) ) ;
361
+ newValue = ( TValue ) Convert . ChangeType ( value , typeof ( long ) , CultureInfo . InvariantCulture ) ;
360
362
361
363
return true ;
362
364
}
363
365
// float? / float
364
366
365
367
if ( typeof ( TValue ) == typeof ( float ? ) || typeof ( TValue ) == typeof ( float ) )
366
368
{
367
- newValue = ( TValue ) Convert . ChangeType ( value , typeof ( float ) ) ;
369
+ newValue = ( TValue ) Convert . ChangeType ( value , typeof ( float ) , CultureInfo . InvariantCulture ) ;
368
370
369
371
return true ;
370
372
}
371
373
// double? / double
372
374
373
375
if ( typeof ( TValue ) == typeof ( double ? ) || typeof ( TValue ) == typeof ( double ) )
374
376
{
375
- newValue = ( TValue ) Convert . ChangeType ( value , typeof ( double ) ) ;
377
+ newValue = ( TValue ) Convert . ChangeType ( value , typeof ( double ) , CultureInfo . InvariantCulture ) ;
376
378
377
379
return true ;
378
380
}
379
381
// decimal? / decimal
380
382
381
383
if ( typeof ( TValue ) == typeof ( decimal ? ) || typeof ( TValue ) == typeof ( decimal ) )
382
384
{
383
- newValue = ( TValue ) Convert . ChangeType ( value , typeof ( decimal ) ) ;
385
+ newValue = ( TValue ) Convert . ChangeType ( value , typeof ( decimal ) , CultureInfo . InvariantCulture ) ;
384
386
385
387
return true ;
386
388
}
0 commit comments