IntegerTextBox and short data type

I seem to be unable to bind the BindableValue property of an IntegerTextBox to a value of type short (System.Int16).
Can anyone tell me if this a known issue or just me?
I'm using the 4.3 libraries.

1 Reply

MU Murugan Syncfusion Team November 21, 2006 07:22 PM UTC

Hi Mark,

We were able the reproduce the issue. We will contact the development team regarding the issue and let you know the details.

As aworkaround, before assigning the BindableValue please convert the short value into Int32 or Int64 then assign to BindableValue property.

short shValue = 25;
this.integerTextBox1.BindableValue = (Int32)shValue;

Thanks for choosing Syncfusion products.

Best Regards,
Murugan P.S

Loader.
Up arrow icon