Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
269 views
People accessing a page with Telerik controls using Apple device with Safari 7 all of a sudden get this error (all other web browsers are ok) ::

TypeError: undefined is not an object (evaluating 'Sys.WebForms.PageRequestManager')       Ajax.js:84
TypeError: undefined is not an object (evaluating 'Sys.WebForms.PageRequestManager')     Ajax.js:105

I'm not sure what code you need to see - so here is a link to the page on a staging server :: http://staging.oreb.ca/main/FindListings.aspx (make take a minute to load).

Rather urgent issue.  Timely response would be appreciated.

Thank you.

Paul


Dimitar
Telerik team
 answered on 30 Oct 2014
1 answer
64 views
We are creating an app where we want client to adjust (customize) the viewable grid form based on their prefrence.
So in some casses we want to show the grid 20 minutes.

For example 1 to 2 PM would have 3 time slot each for 20 minutes instead of 30 minutes. However, if another client want to set these slot to 30 or 40 minutes they could also do it.

So that can happen in this control?  
Bozhidar
Telerik team
 answered on 30 Oct 2014
1 answer
78 views
I had enabled the check all checkbox to let user select all records.

But I found that the check all function can select the rows in the current page only, it cannot select all other records in other page when paging is enabled.

because it will have several hundred records, user don't want to disable the paging function.

Is there any solution can select records in other page ?  Thanks.

Joe
Eyup
Telerik team
 answered on 30 Oct 2014
1 answer
100 views
Hi,

We use the grouping feature of RadGrid and would like it to display the total number of items in each group next to each group. It does this automatically if a group extends to another page. How do we get it to display the total number of items for each group? We will not know in advance which fields the end user groups by. We have looked at the RadGrid documentation for GroupHeaderTemplate but it is not clear how to achieve what we need.

Thanks

Tim Metcalfe
Eyup
Telerik team
 answered on 30 Oct 2014
1 answer
76 views
I'm trying to create a project timeline app and I'd love to use the Scheduler.  
I'd like to get a full year view to see the project timelines but can't find a way to do a full year view in the calendar.
Is this possible?

Bozhidar
Telerik team
 answered on 30 Oct 2014
0 answers
92 views
We had an older version of RadEditor installed in our SharePoint 2010 environment and decided to update to the latest version since we're patching SP up to current as well.  I uninstalled the old version and installed the Telerik Web Parts for SharePoint 2010 Q3 2014 which is supposed to include the new version of the RadEditor web part.  The install finished successfully but it didn't install RadEditor.  It did install all the other web parts though.  Any thoughts on how to resolve this issue? 
Mike
Top achievements
Rank 1
 asked on 29 Oct 2014
4 answers
304 views
I have been digging around a bit looking for a good example of how to take a radcombobox and populate it using a webmethod and jquery combined... I think I am just missing something rather simple.. Any suggestions?

This is NOT a mvc project, but a traditional asp.net web forms


// This cancels the default RadComboBox behavior
function itemsRequesting(sender, args) {
    if (args.set_cancel != null) {
        args.set_cancel(true);
    }
    if (sender.get_emptyMessage() == sender.get_text())
        sender.set_text("");
}
 
function getSites(sender, args) {
    var url = baseUrl + "TagManagement/Tags.aspx/GetSiteList";
     
    $.ajax({
        async: false,
        type: "POST",
        url: url,
        data: "{}",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function (msg) {
            if (msg.d == null) {
                alert("The filter set returned no records");
                } else {
 
                fillCombo(sender, msg);
 
            }
        }
    }).complete(function () {
        $.unblockUI();
 
    });
 
return false;
 
}
 
function fillCombo(combo, result) {
    combo.clearItems();
 
    var items = result.d || result;
     
    // This just lets user know that nothing was returned with their search
    if (items.length == 0) {
        var comboItem = new Telerik.Web.UI.RadComboBoxItem();
        comboItem.set_text("Nothing found");
        comboItem.set_value("null");
        combo.get_items().add(comboItem);
        combo.set_text("");
    }
 
    for (var i = 0; i < items.length; i++) {
        var item = items[i];
 
        var comboItem = new Telerik.Web.UI.RadComboBoxItem();
        comboItem.set_text(item.Text);
        comboItem.set_value(item.Value);
        combo.get_items().add(comboItem);
    }
}

The Control :
<telerik:RadComboBox ID="RadComboBoxTransferSites" runat="server" CheckBoxes="true" EnableLoadOnDemand="true" OnClientItemsRequesting="getSites"
                                  EnableCheckAllItemsCheckBox="true" DataTextField="SiteName" DataValueField="SiteUID"
                                  EmptyMessage="Please Select...">
                              </telerik:RadComboBox>

The web method:
[WebMethod]
public static List<SiteList> GetSiteList()
{
    var siteList = (List<SiteList>)HttpContext.Current.Session["SiteList"];
    return siteList.ToList();
}
Wired_Nerve
Top achievements
Rank 2
 answered on 29 Oct 2014
7 answers
231 views
I have a RadComboBox with a Template.
The RadComboBox is bound to a DataSource, which returns a list of Items and Pictures. I need to add a -Choose Here- to the first item in the ComboBox. I set AppendDataBoundItems to True and I get my -Choose Here-, I also get a Blank Template item in the next line down. Then my Databound items start appearing.

I have tried a few suggestions but nothing has worked. I have tried binding the item in code behind in the on Databound event etc.

 <telerik:RadComboBox ID="RCB_Items" runat="server" AccessibilityMode="True"   
                AppendDataBoundItems="True" AutoPostBack="True" DataSourceID="User_Items_DS"   
                DataTextField="ItemName" DataValueField="ItemID" Skin="WebBlue" Visible="False"   
                Width="250px" HighlightTemplatedItems="true">  
                  
                <ItemTemplate>  
                    <span style="vertical-align: middle;text-align:left; float: left; width: 100px;">  
                    <%#DataBinder.Eval(Container.DataItem, "ItemName")%></span>  
                    <span style="vertical-align: middle; float: none;">  
                    <img alt="" border="1" height="50"   
                        src='~/images/<%#DataBinder.Eval(Container.DataItem, "ItemId")%>'   
                        width="50" /></span>  
                </ItemTemplate>  
                          </telerik:RadComboBox>  
 
Code Behind:  
Protected Sub RCB_Items_DataBound(ByVal sender As ObjectByVal e As System.EventArgs) Handles RCB_Items.DataBound  
        Dim myItem As New RadComboBoxItem  
        myItem.Text = "-Choose Here-" 
        myItem.Value = "-1" 
        cb_Items.Items.Insert(0, myItem)  
        cb_Items.Items(0).DataBind()  
    End Sub 
Josh
Top achievements
Rank 1
Veteran
 answered on 29 Oct 2014
2 answers
299 views
I have custom actions that I need to perform on a grid, so I can't use the built-in item commands "Update and Cancel" which trigger the OnBatchEditCommand correctly. As soon as I use CommandItemTemplate tags, I lose that functionality which triggers the OnItemCommand. In code behind, the e.CommandArgument of the OnItemCommand is empty so I can't get a handle on the old and new values to perform tasks.

Please help.

Thanks,
Fahd
fahd
Top achievements
Rank 1
 answered on 29 Oct 2014
7 answers
550 views
Hi,
I want to open a multiple RadWindows from my page one after the other. How can I do it ?

For example: I have login.aspx page with "Forget Password ?" link.
When user click that link, I want to open recover password Model pop-up which is radwindow and the page is recoverpassword.aspx. Once user can specify require details and entered detail is correct then I have to close the "recover password" pop-up which is recoverpassword.aspx page, then I want to open "security question" pop-up which is my SecurityQuestion.aspx. If user provide correct data for question then I want to close that pop-up Radwindow which is my SecurityQuestion.aspx after performing some operation.
In these operations, I dont want to refresh my login.aspx page.

Any help ?

Thanks
srivalli kothapalli
Top achievements
Rank 1
 answered on 29 Oct 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?