Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
473 views

I feel this is more a feature request than a support question:

When I'm having an accessibility tool like JAWS read the numerical pager (see screenshot attached),
it reads: "1 : Link", "2 : Link" etc. (and "Dot dot dot : Link" for any GridLinkButton with that text.)

I want it to read a custom message, like "Go to page {0}", either in the corresponding GridLinkButton's title or aria-label attribute. The custom text should preferably be retrieved from GlobalResources.

And I want to be able to provide a separate custom text for the [...] GridLinkButtons, too.

How can I do that without walking the RadGrid pager's Controls tree manually?

Daniel
Telerik team
 answered on 14 Oct 2016
5 answers
293 views

I would like an example of how I can load tasks manually into a Gantt.... not a data binding but something similar to:

 

RadGantt.Task.Add(new Task());

then... RadGantt.DataBind() or something to get it to update from code behind in C#

 

Thanks

 

Tim

Bozhidar
Telerik team
 answered on 14 Oct 2016
3 answers
128 views
Good day to all 

I have the following code: 

telerik:RadSearchBox ID="RadSearchBox1" runat="server" Width="250px" Skin="MetroTouch" DataSourceID="OpenAccessLinqDataSource1" CssClass="" DataTextField="user_firmaname"
    DataValueField="user_id" Culture="de-DE" onsearch="RadSearchBox1_Search" ShowSearchButton="False">
 <DropDownSettings Height="400" Width="670" >
    <HeaderTemplate>
                    <ul>
                        <li class="col1">Firma</li>
                        <li class="col2">Ort</li>
                       
                    </ul>
                </HeaderTemplate>
                <ItemTemplate>
                    <ul>
                        <li class="col1">
                            <%# DataBinder.Eval(Container.DataItem, "user_firmaname") %></li>
                        <li class="col2">
                            <%# DataBinder.Eval(Container.DataItem, "user_ort") %></li>
                     
                    </ul>
                </ItemTemplate>
                  </DropDownSettings>
</telerik:RadSearchBox>


protected void RadSearchBox1_Search(object sender, SearchBoxEventArgs e)
        {
            if (e.Text  != null)
            {
                string firmenname = e.Text;
                firmenname = firmenname.Replace("+", "und");
                Response.Redirect("/firmen/" + e.Value + "/" + firmenname);
            }
            else
            {
                RadSearchBox1.EmptyMessage = "keine Firma gefunden";
            }
        }

The problem is that if the client does not pick from the dropdown but simply hits enter e.value of course is not what I am looking for.

So I need a way to disable enter and have the client force to pick from dropdown.

You can try it here: http://zuol.ch.mserver4.arvixevps.com/firmen/ left side 

Markus


Plamen
Telerik team
 answered on 14 Oct 2016
1 answer
287 views

Hi

How to get checkbox input in multiple auto generated columns ? picture attached for understanding.

Few points there

- number of columns of grid are dynamic depending upon dates filter selection of user. (start date, end date). so i use auto generate columns option to  implement it. is there any better approach for this? 

- can i  make clientcheckboxcolumn autogenerated ? i have gone through many articles in the forum related to clientcheckboxcolumn selection. 

- is there any better solution for implementation of this task ? 

Regards,

Zain

Eyup
Telerik team
 answered on 14 Oct 2016
2 answers
201 views

Hello,

I have an image that is not showing for a radimagebutton. I have attached to thread, but I'm not able to see anything wrong.

 

[ASP.NET Markup]

<telerik:radimagebutton id="radimagebutton_AddNewItem" runat="server" autopostback="false" tooltip="Click to add item">

<image url="Includes/images/project.jpg" />

</telerik:radimagebutton>

 

steve
Top achievements
Rank 2
 answered on 14 Oct 2016
1 answer
185 views

Hi all,

    I am new to the UI for ASP.NET AJAX. I am still learning. I am interested in using RadSchedulerRecurrenceEditor alone, not with RadScheduler. The problem I encounter now is that I see only the Recurrence label, and "Never" is selected in the dropdown box. I write the logic that reads the RecurrenceRule from Appointments.xml and assigns it to RecurrenceRuleText of the RadSchedulerRecurrenceEditor control, but the control does not show the entries from my RecurrenceRule. Can you please help? Thank you very much.

David
Top achievements
Rank 1
 answered on 13 Oct 2016
1 answer
47 views

In a vb.net web form 2010 application that uses the rad editor, the development workstation uses windows 7 currently. In the near future, they will be using windows 10 workstations for development. The skin  value for the radeditor uses a skin that points to windows7 as listed below:

  <telerik:RadEditor ID="reLetterEditor"
            runat="server"
            Skin="Windows7"
            ContentFilters="DefaultFilters,PdfExportFilter"
            NewLineMode="Br"
            EditModes="Design,Preview,html"
            Width="100%"
            Height="800px"
            >

When the development workstation is changed to using windows 10, is there anything I need to be aware of concerned about?

Will changing the skin value to be "Windows10" be enough? Is that all I need to do except for testing the application?

 

Marin Bratanov
Telerik team
 answered on 13 Oct 2016
1 answer
78 views

I am currently using version 2016.3.914.45 of ASP.Net Ajax control.

My grid is inside a page layout control.

The problem is that on my development machine a asp checkbox appears in the grid as expected. but when published

the checkbox does not appear on any browser I check with. if I place a letter "S" in the text portion of the checkbox I can

see the "S" and select the grid row with the "S" but I still see now checkbox.

 

if I place all the code inside a simple html page with no page layout the checkbox is displayed correctly.

 

Thanks for any help

Viktor Tachev
Telerik team
 answered on 13 Oct 2016
7 answers
261 views
I am trying to get the combobox to load on demand and be searchable but am having problems.  I have followed the demos but can get it to work.
Here is what I have.

Aspx page:

<telerik:RadComboBox ID="RadComboBox1" runat="server" AutoPostBack="True" CollapseDelay="0"
                            ExpandDelay="0" Filter="StartsWith" ItemsPerRequest="10"
                            MarkFirstMatch="true" EnableAutomaticLoadOnDemand="True" EmptyMessage="-New Menu-"
                            ShowMoreResultsBox="True" EnableItemCaching="false" EnableLoadOnDemand="True" EnableVirtualScrolling="True">
                            <HeaderTemplate>
                                <table style="width: 275px" cellspacing="0" cellpadding="0">
                                    <tr>
                                        <td style="width: 175px; height: 13px">Name
                                        </td>
                                        <td style="width: 60px; height: 13px">ID
                                        </td>
                                        <td style="width: 40px; height: 13px">Grade
                                        </td>
                                    </tr>
                                </table>
                            </HeaderTemplate>
                            <ItemTemplate>
                                <table style="width: 275px" cellspacing="0" cellpadding="0">
                                    <tr>
                                        <td style="width: 175px;">
                                            <%# DataBinder.Eval(Container.DataItem, "FullName")%>
                                        </td>
                                        <td style="width: 60px;">
                                            <%# DataBinder.Eval(Container.DataItem, "StudentID")%>
                                        </td>
                                        <td style="width: 40px;">
                                            <%# DataBinder.Eval(Container.DataItem, "DisplayGrade")%>
                                        </td>
                                    </tr>
                                </table>
                            </ItemTemplate>
                        </telerik:RadComboBox>

C# to bind
RadComboBox1.DataTextField = "FullName";
    RadComboBox1.DataValueField = "StudentID";
    RadComboBox1.DataSource = dt_students;
    RadComboBox1.DataBind();


I get this error when I click on it.
"There was an error in the callback.s[]_$$__$$__$$_False_$$_"

Any help would be great thank you.
Matt
Nencho
Telerik team
 answered on 13 Oct 2016
7 answers
287 views
how can i Cancel Drap & Drop in RadFileExplorer?
Vessy
Telerik team
 answered on 13 Oct 2016
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?