I'm reading the skinning guide and I want to use "Pane Level skinning", but there is no example on how to contruct it. This is a excellent feature! Could someone post a reply of a example on how to implement this. I'm having trouble figuring it out.
I know how to skinn and I added the "Pane Level skinning" feature in the markup, but I'm not getting any results. Here's what I am doing:
In the Markup:
<TD vAlign="top" align="middle">[CONTENTPANE:1]</TD>
In my Object file:
<Object>
<Token>[CONTENTPANE:1]</Token>
<Settings>
<Setting>
<Name>ID</Name>
<Value>RightPane</Value>
</Setting>
<Setting>
<Name>ContainerType</Name>
<Value>G</Value>
</Setting>
<Setting>
<Name>ContainerName</Name>
<Value>DNN</Value>
</Setting>
<Setting>
<Name>ContainrSrc</Name>
<Value>GrayBackground.ascx</Value>
</Setting>
</Settings>
</Object>
And the results I get is:
<td valign="top" align="middle"><div runat="server" ID="rightpane" ContainerType="G" ContainerName="DNN" ContainrSrc="GrayBackground.ascx"></div>
</td>
Does the GrayBackgrounf.ascx go in the "Skin" or the "Container" directory and is this correct on how to use the "Pane Level skinning"?