This is a migrated thread and some comments may be shown as answers.

Positioning grid incell tooltip validation message

2 Answers 204 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Roland
Top achievements
Rank 1
Roland asked on 10 Dec 2013, 10:54 AM
Hi,

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.

Thanks in advance.

2 Answers, 1 is accepted

Sort by
0
Roland
Top achievements
Rank 1
answered on 10 Dec 2013, 11:17 AM
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!
Tags
Grid
Asked by
Roland
Top achievements
Rank 1
Answers by
Roland
Top achievements
Rank 1
Daniel
Telerik team
Share this question
or