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

RadinputManager caution logo

5 Answers 58 Views
Input
This is a migrated thread and some comments may be shown as answers.
Sami
Top achievements
Rank 1
Sami asked on 05 Jan 2014, 09:14 AM
Dear;

i'm using RadinputManager with text boxes (not RadTxtbox) for validation purpose, every thing is working fine except the Yalow caution logo appear with the error message inside the textbox, the skin is working because the error message come with red color (this means the skin is registered) but still i don't know the reason and how i can remove this Yalow logo from the text box.


Best regards  

5 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 06 Jan 2014, 07:05 AM
Hi Sami,

Please have a look into the sample code snippet which works as expected for me.

ASPX:
<asp:TextBox ID="TextBox1" runat="server">
</asp:TextBox>
<telerik:RadInputManager ID="RadInputManager1" runat="server" Skin="Web20">
    <telerik:TextBoxSetting ErrorMessage="Required">
        <Validation IsRequired="true" ValidateOnEvent="Submit" />
        <TargetControls>
            <telerik:TargetInput ControlID="TextBox1" />
        </TargetControls>
    </telerik:TextBoxSetting>
</telerik:RadInputManager>
<asp:Button ID="Button1" runat="server" Text="Submit" />

Please provide your code if it doesn't help.
Thanks,
Shinu.
0
Sami
Top achievements
Rank 1
answered on 06 Jan 2014, 08:40 AM
Thank u Shinu;

I copied and past your code the validation is working but the caution logo still there !! , even i updated to the last version (Q3 2013).
the flowing is the whole page the i tested.

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TileList.aspx.cs" Inherits="FujCustomsES.TileList" %>
 
<!DOCTYPE html>
 
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
        <asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
    <div>
    <asp:TextBox ID="TextBox1" runat="server">
</asp:TextBox>
<telerik:RadInputManager ID="RadInputManager1" runat="server" Skin="Web20">
    <telerik:TextBoxSetting ErrorMessage="Required">
        <Validation IsRequired="true" ValidateOnEvent="Submit" />
        <TargetControls>
            <telerik:TargetInput ControlID="TextBox1" />
        </TargetControls>
    </telerik:TextBoxSetting>
</telerik:RadInputManager>
<asp:Button ID="Button1" runat="server" Text="Submit" />
    </div>
    </form>
</body>

0
Shinu
Top achievements
Rank 2
answered on 07 Jan 2014, 03:56 AM
Hi Sami,

Unfortunately I couldn't replicate the issue at my end. The given code is working fine at my end.

Thanks,
Shinu.
0
Sami
Top achievements
Rank 1
answered on 07 Jan 2014, 06:02 AM
Hi Shinu

The problem is solved.
How? :
 I tried all the skins and i noted that the skins have text box with more height such as (Glow and silk) is working fine and not working with skins like default , simple and web2. that have normal height !!!!!!!!!!.

Best Regards

0
Sami
Top achievements
Rank 1
answered on 07 Jan 2014, 06:35 AM
Hi;
I think it is not problem, the caution logo is part of the skin but because its alignment is always right it come over the text so i thought it is a problem because i'm using RTL language . So i think it must be option to manage the position of caution logo.

Regards
Tags
Input
Asked by
Sami
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Sami
Top achievements
Rank 1
Share this question
or