Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
110 views

Hi all,

 How do i delete all rows on pageload event ?

Regards

Roma

rinu
Top achievements
Rank 1
 answered on 26 Nov 2015
5 answers
3.4K+ views
Hi

Can anyone please tell me how to set the value of the RadDatePicker using Javascript?

Thanks

Colin
Marin Bratanov
Telerik team
 answered on 26 Nov 2015
2 answers
99 views

See screenshot.  RadPivotGrid line heights not matching.  Any ideas?  Let me know if you have any other questions.   I appreciate the help!

<telerik:RadPivotGrid runat="server" ID="rpg_CreditHours" OnNeedDataSource="rpg_CreditHours_NeedDataSource" Width="100%"
    EnableZoneContextMenu="false"
    ShowFilterHeaderZone="false" 
    AllowSorting="true" AllowPaging ="false"                                        
    ClientSettings-EnableFieldsDragDrop="false"
    ConfigurationPanelSettings-EnableDragDrop="false"   >
    <FieldsPopupSettings RowFieldsMinCount="2" />
    <Fields>
        <telerik:PivotGridColumnField DataField="CreditType" Caption="CreditType" UniqueName="CreditType" DataFormatString="{0}" />
        <telerik:PivotGridAggregateField DataField="CreditHours" Caption="CreditHours" UniqueName="CreditHours" Aggregate="Sum" DataFormatString="{0:F2}" />
        <telerik:PivotGridRowField DataField="EmployeeName" Caption="EmployeeName" UniqueName="EmployeeName"  />
        <telerik:PivotGridRowField DataField="EducationName" Caption="EducationName" UniqueName="EducationName" />
    </Fields>
    <ClientSettings EnableFieldsDragDrop="false" />
</telerik:RadPivotGrid>

 

Arron
Top achievements
Rank 1
 answered on 25 Nov 2015
12 answers
382 views

After I add a few markers is there a way to move the markers based on a new GPS location? Basically I want to bind the map to a datasource and show the markers. But I may add and/or remove markers being returned. When a marker is not returned is it removed from the map? And how are the markers moved? Are they just cleared and moved based on what is in the recordset returned?

Thanks,

Warren

 

Warren
Top achievements
Rank 1
 answered on 25 Nov 2015
1 answer
112 views

I'm not very tech savvy, so please bear with me. 

I'm currently hotspotting images with links to other pages on my site (like hotspotting maps with areas of interest), and I was wondering if the Image Gallery could support hotspotted HTML?

 Thanks for any help.

Pavlina
Telerik team
 answered on 25 Nov 2015
0 answers
554 views

I have two rad combo boxes on my web page radcombo1 and radcombo2, when I select the radcombo1 the page reload is happening. I dont want page reload to happen I want the radcombo to show the values. i.e radcombo2 values are based on the selection of radcombo1. and also to select radcombo2 before that radcombo1 should be selected. Here i tried to implement this using the   radajaxmanager. But still the page load is happening. Need help.

 

testradcombo.aspx

 

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="testradcombo.aspx.cs" Inherits="testradcombo" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
        

    <title></title>
</head>
<body>
    <form id="form1" runat="server">
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager>
    <div>
        <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
                    <AjaxSettings>
                        <telerik:AjaxSetting AjaxControlID="RadComboBox1">
                            <UpdatedControls>
                                <telerik:AjaxUpdatedControl ControlID="RadComboBox1"></telerik:AjaxUpdatedControl>
                                <telerik:AjaxUpdatedControl ControlID="RadComboBox2" LoadingPanelID="RadAjaxLoadingPanel1"></telerik:AjaxUpdatedControl>                                
                            </UpdatedControls>
                        </telerik:AjaxSetting>                        
                    </AjaxSettings>
                </telerik:RadAjaxManager>
        <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server">
                </telerik:RadAjaxLoadingPanel>
        <telerik:RadComboBox ID="RadComboBox1" runat="server" AutoPostBack="true">
            <Items>
                               <telerik:RadComboBoxItem runat="server" Text="Informational" Value="5" />
                                <telerik:RadComboBoxItem runat="server" Text="Enhancement" Value="4" />
                                <telerik:RadComboBoxItem runat="server" Text="Maintenance" Value="3" /> 
                                <telerik:RadComboBoxItem runat="server" Text="Problem" Value="2" />  
                                <telerik:RadComboBoxItem runat="server" Text="Outage" Value="1" />         
                              </Items>
        </telerik:RadComboBox>
        
        <telerik:RadComboBox ID="RadComboBox2" runat="server">
            <Items>
                               <telerik:RadComboBoxItem runat="server" Text="Infor" Value="5" />
                                <telerik:RadComboBoxItem runat="server" Text="Enha" Value="4" />
                                <telerik:RadComboBoxItem runat="server" Text="Main" Value="3" /> 
                                <telerik:RadComboBoxItem runat="server" Text="Prob" Value="2" />  
                                <telerik:RadComboBoxItem runat="server" Text="Outa" Value="1" />         
                              </Items>
        </telerik:RadComboBox>

    </div>
    </form>
</body>
</html>

 

 

 

 

code behind: testradcombo.aspx.cs

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class testradcombo : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (IsPostBack)
        {
            RadComboBox2.Visible = false;
        }
    }
}

pavan
Top achievements
Rank 1
 asked on 25 Nov 2015
3 answers
166 views

Hi,

     Now I am looking into this demo
     http://demos.telerik.com/aspnet-ajax/grid/examples/data-editing/commanditem/defaultcs.aspx

     I found when I input more than one white spaces in the edit box, they are truncated to one when I saved the new record.

     Is it an expected behavior? 

Best regards

Zhang Rui

Pavlina
Telerik team
 answered on 25 Nov 2015
5 answers
166 views

I upgraded to v2015.07.623.45 and noticed when using the Raddock in the Scheduler the RadDateTimePicker breaks. What changes in this release may have caused this?

 

See attached.

Nencho
Telerik team
 answered on 25 Nov 2015
1 answer
170 views

Hi,

In Surface device on edge browser , If I go to http://demos.telerik.com/aspnet-ajax/menu/examples/multicolumnmenu/defaultcs.aspx and touch the demo menu which is having sub menu, it is opening and when I touch non menu area the expanded sub menu is not collapsing.

This menu is working in IE 11 and other IE versions but not in Edge browser (OS -Windows 10).

I have used Rad menu Silkskin for my project , in the project also expanded sub menu is not collapsing when I touch non menu area in Edge browser but for other browsers in other touch devices it is working as expected.

Is it Edge browser issue or any additional update that I have to apply?

 

Regards,

Thurai

Dimitar
Telerik team
 answered on 25 Nov 2015
0 answers
115 views

Hi,

 

I have created a custom user control and I am using that on my webform using ajaxToolkit:ModalPopupExtender to open as a popup on a button click. On this popup window I have added two radcombo boxes and I want on selection of one rad combo box other should give corresponding selection (like radcombo1 has groups and radcombo2 has users, on selection of a group or groups in radcombo1 then corresponding users should be coming up in the radcombo2). The main problem here is when I set autopostback true for radcomb1 one the entire webpage is getting reloaded, closing the popup window(custom control), then again I have to click the button to open the popup. I tried to use radajaxmanager to solve the issue but i couldnt solve the issue.I would request you to give me any sample example for better understanding.

 

Here I have create a custom control UC.ascx and I am calling this custom control on CS.aspx using ajaxToolkit:ModalPopupExtender, I have put the rad combo boxes on UC.ascx.

pavan
Top achievements
Rank 1
 asked on 25 Nov 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?