I want a hex column both in display and edit mode, i.e. WYSIWYG.
Such as: 010, ABC, FE0, but failure in edit mode.
<telerik:GridViewMaskedInputColumn
DataMemberBinding=
"{Binding Address}"
Header=
"Hardware Address"
DataFormatString=
"{}{0:X3}"
MaskType=
"Numeric"
Mask=
"d3"
>
</telerik:GridViewMaskedInputColumn>
private
ushort
_address;
public
ushort
Address
{
get
{
return
_address; }
set
{
if
(value != _address)
{
_address = value;
OnPropertyChanged(
"Address"
);
}
}
}