Mar 31, 2009

ASP.NET PRO readers choice awards

You can vote for ASP.NET readers choice awards here:

http://www.aspnetpro.com/awards/default.asp

give a hand to your favorite components, controls, utilities, editors and so on!

Nice UML Diagram

Here is a very nice and informative UML diagram I created while I was bored ;)






Just kidding :)

Removing the left "placeholders" in telerik radMenu (where the images should be)

I needed to remove this placeholder as our menu was without icons. First I thought it is impossible, but then I found very helpful thread in telerik forums.
It says you need to apply the following CSS to your form:

.RadMenu_[SkinName] .rmGroup .rmLink
{  
  
padding-left: 0px !important;  
}  
    
.RadMenu_[SkinName] .rmGroup .rmLink .rmText
{
  
padding-left: 5px !important;  
}  
.RadMenu_[SkinName] .rmGroup
{
  
border: 1px solid #979797 !important;  
  
background: #f0f0f0 !important;
}

Where [SkinName] stands for the skin of the menu.



By the way - it happens this to be my post #100! ;). Hope I helped someone with all my posts :).