This is a migrated thread and some comments may be shown as answers.

Error: 'Telerik' is undefined

1 Answer 47 Views
Input
This is a migrated thread and some comments may be shown as answers.
Kumar
Top achievements
Rank 1
Kumar asked on 13 Oct 2010, 04:05 PM
Hi,

i am getting this error when i try to access RadMaskedeTextbox.
i have implemnted custom property called "MaskeType" for RadMaskedeTextbox

 

 

public enum MaskTypeSet { Numbers, Letters, Custom, None }

 

 

 

public MaskTypeSet MaskType

 

{

 

 

get

 

 

 

 

 

{

 

 

object val = ViewState["MaskType"];

 

 

 

if (val == null)

 

 

 

return MaskTypeSet.None;

 

 

 

return (MaskTypeSet)val;

 

}

 

 

set

 

 

 

 

 

{

ViewState[

 

"MaskType"] = value;

 

}

}

If i set MaskType other than 'none' it is throughing this error.
PFA
Please help

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 14 Oct 2010, 05:39 AM
Hi Kumar,


The help article describes on error "Telerik is undefined". Hope this would help you in resolving issue.
General Troubleshooting
Web Resources Troubleshooting


-Shinu.
Tags
Input
Asked by
Kumar
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or