In order to create a new Local Resource file (RESX), I navigate to the Designer, and use the Tools --> Generate Local Resource option.
The problem is that many of my telerik tags are getting rewritten during this process. Is there a way to stop this?
No standard ASP controls demonstrate this behavior - so I am wonder if this is something on the Telerik side?
We do not use the designer view - except for this purpose - and I understand that it may just be inserting default attributes and tags that we did not write - but this adds to our code, and sometimes messes things up.
Is there a way to disable this - or a workaround?
For example, this:
becomes this:
The problem is that many of my telerik tags are getting rewritten during this process. Is there a way to stop this?
No standard ASP controls demonstrate this behavior - so I am wonder if this is something on the Telerik side?
We do not use the designer view - except for this purpose - and I understand that it may just be inserting default attributes and tags that we did not write - but this adds to our code, and sometimes messes things up.
Is there a way to disable this - or a workaround?
For example, this:
<
telerik:RadTextBox
runat
=
"server"
ID
=
"tCurrentAgency"
Width
=
"200px"
ReadOnly
=
"True"
SkinID
=
"defaultText"
>
</
telerik:RadTextBox
>
becomes this:
<
telerik:RadTextBox
runat
=
"server"
ID
=
"tCurrentAgency"
Width
=
"200px"
ReadOnly
=
"True"
SkinID
=
"defaultText"
LabelCssClass
=
""
LabelWidth
=
"64px"
meta:resourcekey
=
"tCurrentAgencyResource1"
Resize
=
"None"
>
<
EmptyMessageStyle
Resize
=
"None"
/>
<
ReadOnlyStyle
Resize
=
"None"
/>
<
FocusedStyle
Resize
=
"None"
/>
<
DisabledStyle
Resize
=
"None"
/>
<
InvalidStyle
Resize
=
"None"
/>
<
HoveredStyle
Resize
=
"None"
/>
<
EnabledStyle
Resize
=
"None"
/>
</
telerik:RadTextBox
>