Telerik Forums
UI for ASP.NET AJAX Forum
7 answers
144 views

We are using lots of telerik control almost all the pages of our application.
we are failed for 508 compliance  1194.22 (i). the below message is displaying on validating the page. we have fix it for RadMenu by adding the enableoverlay = false.

  • IFRAME-3
    • Name not specified
    • Longdesc not specified
    • Title not specified
    • Src="javascript:'';"
  • IFRAME-4
    • Name not specified
    • Longdesc not specified
    • Title not specified
    • Src="javascript:'';"

It would be great if you can suggest what all control and there fixes pertaining to 508 section 1194.22 (i)  for iframe test

Rumen
Telerik team
 answered on 02 May 2012
3 answers
56 views
Hi,
I am having a problem with some custom CSS that my company created for the rad context menu. It does not show the "More items" type of arrows (or any indication that there's more items) when there are more items than can be shown in the menu.

The menu is expanding to the right, but the place where I want to show the menu is the vertical sub-menu. What CSS tag do I need to include for this?

thanks!
Kate
Telerik team
 answered on 02 May 2012
1 answer
71 views
Hi,

I have a RadListBox on a RadTooltip control.  When I am trying to drag an item from the radlistbox; the text displayed along with the mouse cursor seen in the background of the RadTooltip window.  Kindly suggest a solution for this.  Please find the markup of sample page which can demonstrate the issue.  A screen capture also has been attached for further clarity.

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="ToolTipDragIssue.WebForm1" %>
  
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <asp:ScriptManager runat="server" ID="ScriptManager1" />
    <asp:Button ID="Button1" runat="server" Text="Click Here" />
    <div>
        <telerik:RadToolTip ID="RadToolTip1" runat="server" ShowEvent="OnClick" TargetControlID="Button1" HideEvent="ManualClose"
                <telerik:RadListBox ID="RadListBox1" runat="server" Width="200px" Height="200px"
            AllowTransfer="true" AllowReorder="true" AutoPostBackOnReorder="true" EnableDragAndDrop="true">
            <Items>
                <telerik:RadListBoxItem Text="Test Item 1 Test Item 1 Test Item 1 " />
                <telerik:RadListBoxItem Text="Test Item 2 Test Item 2 Test Item 2 "/>
                <telerik:RadListBoxItem Text="Test Item 3 Test Item 3 Test Item 3 "/>
                <telerik:RadListBoxItem Text="Test Item 4 Test Item 4 Test Item 4 " />
            </Items>
        </telerik:RadListBox>
        </telerik:RadToolTip>
  
    </div>
    </form>
</body>
</html>

Thanks,
James
Marin Bratanov
Telerik team
 answered on 02 May 2012
1 answer
95 views
Hi,

What is the simple way to open a tooltip confirmation window from RadTextBox incorporated Button?
Thanks,

Marcio Nascimento
Marin Bratanov
Telerik team
 answered on 02 May 2012
1 answer
33 views
Hi,

I have a radeditor that I'm loading dynamically during a postback.  It is inside a panelbaritem which is initially hidden.  I've attached an image showing how it is being rendered initially.  Has anyone came across this and know a remedy?

I have radeditors displaying which are not rendered dynamically, and they are all fine.  There are also radeditors loaded dynamically and initially shown in the panelbar - they are also fine.

I've attached an image which highlights the problem.

Many thanks,
Michael
Rumen
Telerik team
 answered on 02 May 2012
1 answer
52 views
Hi Guys,

Please try to add the following html code in ASP.NET Ajax  Editor:
<table>
    <tbody> 
        <tr>
            <th>Column one </th>
            <th>Column two </th>
        </tr>
        <tr>
            <td>Test</td>
            <td>Test</td>
        </tr>
    </tbody>
</table>
After that try to change the table using RightMouseClick -> Table Properties (you can change any property of the table).
Click OK and switch to HTML mode. You can see that all <th> tags are replaced with the <td> ones.
Also the <th> tag in the first row isn't added after adding an extra column to the table.
Is this a bug or is it an expected behavior?
Is there an easy workaround for the issue?

Thank you in advance.
Best Regards,
Yuriy
Rumen
Telerik team
 answered on 02 May 2012
10 answers
241 views
I'm trying to create a calendar that isn't clickable but displays special days to my users.  It will need to cover multiple years.  With the code below it shows my april special day but doesn't show the may one.  Also how can I have the cells have equal sizes?  Also where are these classes located that are added as part of the control?

<telerik:RadCalendar ID="RadCalendar1" runat="server"
      ShowOtherMonthsDays="False" Skin="Outlook" CellAlign="NotSet"
      CellVAlign="NotSet" EnableMultiSelect="False" ShowRowHeaders="False"
      TitleAlign="Center" UseColumnHeadersAsSelectors="False"
      UseRowHeadersAsSelectors="False" DayNameFormat="Short"
      EnableMonthYearFastNavigation="False">
<DayOverStyle CssClass="rcHover"></DayOverStyle>
 
<FastNavigationStyle CssClass="RadCalendarMonthView RadCalendarMonthView_Outlook"></FastNavigationStyle>
 
<DisabledDayStyle CssClass="rcDisabled"></DisabledDayStyle>
 
<WeekendDayStyle CssClass="rcWeekend"></WeekendDayStyle>
 
<ViewSelectorStyle CssClass="rcViewSel"></ViewSelectorStyle>
 
<SelectedDayStyle CssClass="rcSelected"></SelectedDayStyle>
 
<CalendarTableStyle CssClass="rcMainTable" BackColor="#DDEEFF" Height="400px"
        HorizontalAlign="Left" Width="600px"></CalendarTableStyle>
 
<OtherMonthDayStyle CssClass="rcOtherMonth"></OtherMonthDayStyle>
 
<OutOfRangeDayStyle CssClass="rcOutOfRange"></OutOfRangeDayStyle>
 
<SpecialDays>
  <telerik:RadCalendarDay Date="2012/04/21" TemplateID="DateTemplate" />
  <telerik:RadCalendarDay Date="2012/05/22" TemplateID="DateTemplate2" />
</SpecialDays>
<CalendarDayTemplates>
  <telerik:DayTemplate ID="DateTemplate" runat="server">
    <Content>
      <div class="rcTemplate rcDayDate">
        Collection
      </div>
    </Content>
  </telerik:DayTemplate>
 
  <telerik:DayTemplate ID="DateTemplate2" runat="server">
    <Content>
      <div class="rcTemplate rcDayDate">
        Collection 2
      </div>
    </Content>
  </telerik:DayTemplate>
</CalendarDayTemplates>
    </telerik:RadCalendar>

Thank you
Andrey
Telerik team
 answered on 02 May 2012
1 answer
60 views
Hi Team,

My requirement is to take the REASON while cancelling the appointment.I have used the Advance Form for Editing & Inserting,now I want to use the same template for cancelling the appointment as well.
I have tried to use the RadDock,but by having it in the Scheduler form my other functioality (Advance Form,Rad Tool Tip) doesnot work.
Plz help me to complete this ASAP.

Regards

 
Plamen
Telerik team
 answered on 02 May 2012
5 answers
187 views
I just udated to the latest version of 3.5 grid and now my column filter for the gridnumericcolumn isn't working:

<telerik:GridNumericColumn FilterControlWidth="75px" DataField="Hectare" HeaderText="Hectares" NumericType="Number" DataType="System.Decimal" DecimalDigits="1" AllowRounding="true" DataFormatString="{0:N1}"><ItemStyle HorizontalAlign="Right" />
				</telerik:GridNumericColumn>


this hides the icon and doesn't work, worked fine before with the previous version.  Is this a bug or did something change?  If I remove the width, the icon shows up and works just fine.
Andrey
Telerik team
 answered on 02 May 2012
0 answers
50 views
Hi,

I have a Radgrid which is used to display some values on the UI. Some fields are simple dropdowns while others are text box.
The issue here is We have used a coding where in if no data is entered then textbox should be default filled with zero.This was because other wise it would have thrown exception "input string not in correct format".

Now with some enhancements there is a need that if I enter nothing in the text box, then the value should be filled with null.
I know this is possible in framework 3.5 but application is bulit on dot Net 2.0 where in concept of "nullabel " wont work.

Have a look at the present coding that fills zero.
decimal rccAggInto2UomMult = 0;
        if (((TextBox)row.Cells[27].Controls[1]).Text != "")
            rccAggInto2UomMult = Convert.ToDecimal(((TextBox)row.Cells[27].Controls[1]).Text);

Any alternate way out ?
Thanks,
Tarang
Tarang
Top achievements
Rank 1
 asked on 02 May 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?