Welcome Guest Search | Active Topics | Sign In | Register

skin eo controls Options
mnewhart
Posted: Monday, January 26, 2009 5:09:08 PM
Rank: Newbie
Groups: Member

Joined: 1/26/2009
Posts: 2
I am trying to use SkinID="MEdit" for the eo:MaskedEdit control. Everytime I add the Skin File: MaskedEdit.skin to my project, it bombs out the rest of my skins.

I have tried the following in my skin:

<asp:MaskedEdit runat="server" />
<asp:MaskedEdit runat="server"
SkinID="MEdit"
BorderStyle="Solid"
BorderColor="#85B2CC"
BorderWidth="1px"
BackColor="#CDDFE9"
Font-Names="Calibri, Tahoma, Arial"
CssClass="tboxindent"
Height="16px"
/>

AND.....

<eo:MaskedEdit runat="server" />
<eo:MaskedEdit runat="server"
SkinID="MEdit"
BorderStyle="Solid"
BorderColor="#85B2CC"
BorderWidth="1px"
BackColor="#CDDFE9"
Font-Names="Calibri, Tahoma, Arial"
CssClass="tboxindent"
Height="16px"
/>

Neither works... I do not want to have to type all of these settings for every masked edit control (or any other eo control we use) in my web app.

Please help!
eo_support
Posted: Monday, January 26, 2009 5:42:16 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,088
Hi,

The second form (with "eo" prefix) is the correct one. The only special thing is that you need to register this tagPrefix in your page by adding the following to the top of your skin file:

Code: HTML/ASPX
<%@ Register TagPrefix="eo" Namespace="EO.Web" Assembly="EO.Web" %>


Please let us know if that fixes the issue for you.

Thanks!


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.