What version of umbraco? I think there are additions that let you add prevalues to usercontrol datatypes, but not sure on hiding the label.. would think there would be.
You could always use some jquery in the usercontrol to hide the label
<script type="text/javascript"> $(function(){
$('.propertyItemheader').each(function() { if ($(this).val()=='Label Text'{ $(this).hide(); } });
It does not look to be possible server-side without something like the above. The ShowLabel option is hardcoded to true. I don't think it would be hard to implement though, maybe drop a feature request on codeplex?
Hide label with usercontrolwrapper
Hi,
Is it possible to hide datatype label (like tinymce) with usercontrolwrapper?
Thanks
Petr
What version of umbraco? I think there are additions that let you add prevalues to usercontrol datatypes, but not sure on hiding the label.. would think there would be.
You could always use some jquery in the usercontrol to hide the label
I'm using 4.6.1
Thanks for jquery script, I hope for serverside solution.
P.
Hi Petr,
It does not look to be possible server-side without something like the above. The ShowLabel option is hardcoded to true. I don't think it would be hard to implement though, maybe drop a feature request on codeplex?
-Tom
Yes would be a very useful solution, if the label is not rendered by default. Has anyone made that as a feature request, will certainly vote for it :)
is working on a reply...