HamiD Mayeli
Top achievements
Rank 1
HamiD Mayeli
asked on 10 Oct 2009, 04:40 PM
Hi
I need to masked a column like {(123)-123-1234}, I use this mask {(###)-###-####} or {(000)-000-0000} but this are wrong.
I need to masked a column like {(123)-123-1234}, I use this mask {(###)-###-####} or {(000)-000-0000} but this are wrong.
4 Answers, 1 is accepted
0
Hi HamiD,
You should set the MaskType property to standard to enable this mask type. Here is a sample:
Regards,
Jack
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
You should set the MaskType property to standard to enable this mask type. Here is a sample:
GridViewMaskBoxColumn col =
new
GridViewMaskBoxColumn(
"Value"
);
col.MaskType = MaskType.Standard;
col.Mask =
"{(###)-###-####}"
;
this
.radGridView1.Columns.Add(col);
Regards,
Jack
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
HamiD Mayeli
Top achievements
Rank 1
answered on 15 Oct 2009, 07:59 AM
Hi Jack.
Tanx a lot.
But my GridViewMaskBoxColumn dos Not have MaskType Property.
I have Mask Property but not have Mask type.
I Use WinForms Q3 2008.
Regards.
Tanx a lot.
But my GridViewMaskBoxColumn dos Not have MaskType Property.
GridViewMaskBoxColumn Col = (GridViewMaskBoxColumn)MyGrid.Columns["MyMaskCol"]; |
// Col.MaskType // MaskType not exist |
I have Mask Property but not have Mask type.
I Use WinForms Q3 2008.
Regards.
0
Hello HamiD,
This property is added in a later version of RadGridView. So, I recommend that you try our latest release - Q2 2009 SP1.
Greetings,
Jack
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
This property is added in a later version of RadGridView. So, I recommend that you try our latest release - Q2 2009 SP1.
Greetings,
Jack
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
HamiD Mayeli
Top achievements
Rank 1
answered on 15 Oct 2009, 10:08 AM
Hello & Tanx Jack.
It`s mean i can`t use this version so what knid of Mask can use in this Version.
Regards.
It`s mean i can`t use this version so what knid of Mask can use in this Version.
Regards.