I was having a hard time in trying to figure out how to position the validation message of an editable cell. My problem is that once it appears it is blocking the cell itself.
To follow. The blocking of the validation message only happens during the first attempt to trigger the validation error. The succeeding attempts will then position the message below the cell. But it would still be better if someone can provide me a way to position it on the right side of the cell or any other positions without having to implement complicated solutions.
0
Daniel
Telerik team
answered on 12 Dec 2013, 09:04 AM
Hello,
In which case does the issue with showing the tooltip over the cell occur? Can it be reproduced in our online demos? If not, then could you provide a runnable sample which replicates this behavior?
As for positioning the tooltip on the right of the input - it is possible to achieve this by overriding the inline styles:
.k-tooltip-validation
{
display:inline-block !important;
margin: 0 0 0 0.5em !important;
}
.k-tooltip-validation .k-callout
{
display: none;
}
Regards,
Daniel
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!