I reproed this in my own environment using Creative Website Starter and there's a little gotcha in the way Umbraco determines which dashboard to load. It does a ToLower() operation on your area name; which comes from the query string incidentally.
What you want in your <area/> is <area>ucommerce</area>. Please note all lower case.
uCommerce Dashboard
Hello,
I'm trying to add auser control in the uCommerce DashBoard.
It works fine when I add it to the Content Dashboard but when I change the area to "uCommerce" it doesn't display.
Dashboard.config :
<?xml version="1.0" encoding="utf-8" ?>
<dashBoard>
<section>
<areas>
<area>uCommerce</area> <!-- it works with "content" instead of "uCommerce" -->
</areas>
<tab caption="Import">
<control>/usercontrols/myuserControl.ascx</control>
</tab>
</section>
</dashBoard>
Could you please help me with this problem ?
Thank you very much.
Fabrice
I reproed this in my own environment using Creative Website Starter and there's a little gotcha in the way Umbraco determines which dashboard to load. It does a ToLower() operation on your area name; which comes from the query string incidentally.
What you want in your <area/> is <area>ucommerce</area>. Please note all lower case.
It should work fine with that in place.
Did this fix your issue?
yes it did solve the problem... sorry i feel bad I should have test that at least :)
Thank you very much !
is working on a reply...