Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
108 views
I have a RadGrid with many columns and it generates a vertical scrollbar. The issue is, i want to increase the Thickness of it. How can I do that?
Viktor Tachev
Telerik team
 answered on 15 May 2014
3 answers
174 views
Hi
My first question is :
Does RadRibbonBar support rtl direction ? There is no help in documentation about righ-to-left support

My second question is :
It seems that by adding RadControls (like RadMenu or RadTreeView) to the Right-To-Left pages, they detect the rtl direction and there is no need to add "dir=rtl" attribute to the control instance . Am I right ?

My last question :
How can I do Localizaion for RadInputManager Contrl? I want to get ErrorMessage or EmptyMessage from Resources ?

Thank you very much for your feedback
Aneliya Petkova
Telerik team
 answered on 15 May 2014
1 answer
167 views
hi,

I'm using the radorgchart control to display the an organization hierarchy which displays fine. I'm not using the drill down functionality here but I'm following this example 
https://demos.telerik.com/aspnet-ajax/orgchart/examples/applicationscenarios/integrationwithradtooltip/defaultcs.aspx

I want to display tooltips with further details for each node in the RadOrgChart, the tooltips won't appear and the OnAjaxUpdate event doesn't fire. Please help.

(I have removed all functionality related to drilling down nodes.)

here is my code in the .aspx,

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="BrandixReportingStructure.aspx.cs" Inherits="UserInterfaces_BrandixReportingStructure" %>
<%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %>
<%@ Register Src="~/UserInterfaces/OrgChartEmployeeDetails.ascx" TagPrefix="uc" TagName="employeedetails" %>
<!DOCTYPE html>
    <head runat="server">
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
            <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
            <telerik:RadOrgChart ID="RadOrgChart1" runat="server" Skin="Default" DataFieldID="AssociateId" DataFieldParentID="ReportsTo" DataTextField="AssociateName" DataSourceID="SqlDataSource1">
                <ItemTemplate>
                    <asp:Panel ID="Panel1" runat="server">
                        <telerik:RadBinaryImage runat="server" ID="RadBinaryImage1" DataValue='<%#Eval("AssociateImage") %>'
                                                AutoAdjustImageControlSize="false" Height="50px" Width="50px" ToolTip='<%#Eval("AssociateName", "Photo of {0}") %>'
                                                AlternateText='<%#Eval("AssociateName", "Photo of {0}") %>'>
                        </telerik:RadBinaryImage>
                        <%#Eval("AssociateName") %>
                    </asp:Panel>
                </ItemTemplate>
            </telerik:RadOrgChart>
            <telerik:RadToolTipManager runat="server" ID="RadToolTipManager1" Skin="Default" OnAjaxUpdate="OnAjaxUpdate"
                                       Position="BottomRight" OffsetX="16" OffsetY="16" EnableShadow="false" Width="400" Height="135" AutoCloseDelay="10000" EnableAJAX="true"/>
            <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString %>" SelectCommand="SELECT AssociateId, AssociateName,AssociateImage, ReportsTo, ManagerName FROM OrgStructure"></asp:SqlDataSource>
        </form>
    </body>
</html>


my code in aspx.cs

using System;
using System.Linq;
using System.Web.UI;
using Telerik.Web.UI;
 
public partial class UserInterfaces_BrandixReportingStructure : System.Web.UI.Page
{
    public void OnAjaxUpdate(object sender, ToolTipUpdateEventArgs e)
    {
        Control ctrl = this.Page.LoadControl("OrgChartEmployeeDetails.ascx");
        ctrl.ID = "UcEmployeeDetails1";
 
        e.UpdatePanel.ContentTemplateContainer.Controls.Add(ctrl);
        UserInterfaces_OrgChartEmployeeDetails details = (UserInterfaces_OrgChartEmployeeDetails)ctrl;
        details.UserName = e.Value;
 
        e.UpdatePanel.ContentTemplateContainer.Controls.Add(new LiteralControl("My dynamic tooltip"));
    }
 
    protected void Page_Load(object sender, EventArgs e)
    {
    }
       
}

my code in .ascx

<%@ Control Language="C#" AutoEventWireup="true" CodeFile="OrgChartEmployeeDetails.ascx.cs" Inherits="UserInterfaces_OrgChartEmployeeDetails" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<asp:Repeater ID="Repeater1" runat="server" DataSourceID="SqlDataSource_BrandContactDetails">
    <ItemTemplate>
        <div style="width:400px; float:left; font-size:12px; font-family:'Segoe UI'">
            <div style="width:50px;">
                 <telerik:RadBinaryImage runat="server" ID="RadBinaryImage1" DataValue='<%#Eval("BuyerImage") %>'
                                                AutoAdjustImageControlSize="false" Height="50px" Width="50px" ToolTip='<%#Eval("ContactPerson", "Photo of {0}") %>'
                                                AlternateText='<%#Eval("ContactPerson", "Photo of {0}") %>'></telerik:RadBinaryImage>
            </div>
            <div style="width:50px;">
                Brand Contact
            </div>
            <div style="width:50px;">
             <%# Eval("Brand")%> <%# Eval("ContactPerson")%> <br/> <%# Eval("Designation")%>
            </div>
            <div style="width:50px;">
                Relationship Level
            </div>
            <div style="width:50px;">
                <asp:Image ID="Image1" runat="server" />
            </div>
            <div style="width:50px;">
               Frequency
            </div>
            <div style="width:50px;">
                 <%# Eval("FrequencyString")%>
            </div>
            <div style="width:50px;">
                <%# Eval("RelationType")%>
            </div>
        </div>
    </ItemTemplate>
</asp:Repeater>
<asp:SqlDataSource ID="SqlDataSource_BrandContactDetails" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString %>" SelectCommand="SELECT TOP (100) PERCENT V_UpcomingRelationDetails.RelationType, V_UpcomingRelationDetails.Brand, V_UpcomingRelationDetails.ContactPerson, V_UpcomingRelationDetails.Designation, V_UpcomingRelationDetails.FrequencyString, V_UpcomingRelationDetails.Level, BuyerDetail.BuyerImage FROM V_UpcomingRelationDetails INNER JOIN BuyerDetail ON V_UpcomingRelationDetails.Brand = BuyerDetail.Brand AND V_UpcomingRelationDetails.ContactPerson = BuyerDetail.[Contact Person] AND V_UpcomingRelationDetails.Designation = BuyerDetail.Designation WHERE (V_UpcomingRelationDetails.TeamMemeber LIKE '%' + @user + '%') ORDER BY V_UpcomingRelationDetails.Brand, V_UpcomingRelationDetails.ContactPerson">
    <SelectParameters>
        <asp:Parameter Name="user" />
    </SelectParameters>
</asp:SqlDataSource>


my code in ascx.cs
using System;
using System.Linq;
 
public partial class UserInterfaces_OrgChartEmployeeDetails : System.Web.UI.UserControl
{
    public string UserName { get; set; }
 
    protected void Page_Load(object sender, EventArgs e)
    {
        this.SqlDataSource_BrandContactDetails.SelectParameters[0].DefaultValue = this.UserName;
    }
}



Plamen
Telerik team
 answered on 15 May 2014
6 answers
488 views
how can i get the value of GridDropDownColumn in codebehind?


GridEditFormInsertItem dataInsertItem = e.Item as GridEditFormInsertItem;

DropDownList ddlType = dataInsertItem["Type"].Controls[0] as DropDownList;

i used this code in the former radgrid 2.0, but it does not work in th e Q1 grid (formerly prometheus)

Angel Petrov
Telerik team
 answered on 15 May 2014
1 answer
180 views
I am Using Telerik RadControl in my project in that we are using previously Script Manager and Ajax Tool kit (Ajax dlls) now we are removing all the Script manager and  
Ajax dlls .  Now we are trying to Implementing the RadScript Manager and we are Configure the web.configure like below please find out WebConfigureFile. My Pages giving following error. what can i do for this problem. please help me thanks in advance..


Webpage error details
 
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E)
Timestamp: Sun, 11 May 2014 10:40:22 UTC
 
 
Message: Sys.InvalidOperationException: Type Telerik.Web.UI.Orientation has already been registered. The type may


 be defined multiple times or the script file that defines it may have already been loaded. A possible cause is a change of settings during a partial update.
Line: 2315
Char: 38
Code: 0
 
 
Message: Sys.ScriptLoadFailedException: The script '/Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_RadScriptManager1_TSM&compress=1&_TSM_CombinedScripts_=%3b%3bTelerik.Web.UI%2c+Version%3d2014.1.403.35%2c+Culture%3dneutral%2c+PublicKeyToken%3d121fae78165ba3d4%3aen-US%3a64f74e2d-5497-4ab7-8321-89bccc22f4bb%3a16e4e7cd%3aed16cbdc%3af7645509%3a24ee1bba%3a92fe8ea0%3a31e9e608%3a1e771326%3a88144a7a%3af46195d3%3a6b3f73b3%3ab7778d6c%3a7165f74' failed to load. Check for:
 Inaccessible path.
 Script errors. (IE) Enable 'Display a notification about every script error' under advanced settings.
 Missing call to Sys.Application.notifyScriptLoaded().
Line: 1266
Char: 13
Code: 0

This my Web.config file

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <SharePoint>
   <SafeControls>
        <!-- Telerik -->
      <SafeControl Assembly="Telerik.Web.UI, version=2014.1.403.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Telerik.Web.UI, version=2014.1.403.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI.Editor" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Telerik.Web.UI, version=2014.1.403.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI.Widgets" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Telerik.Web.UI, version=2014.1.403.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.Design" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Telerik.Web.UI.Skins, version=2014.1.403.35,  Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="RadEditorSharePoint, Version=6.8.2.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="RadEditorSharePoint, Version=6.8.2.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint.FieldEditor" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="RadEditorSharePoint, Version=6.8.2.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint.ListFieldEditor" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Telerik.Ajax.SharePoint, version=2014.1.403.35,  Culture=neutral, PublicKeyToken=aa9e5f693af67c7b" Namespace="Telerik.Ajax.SharePoint" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <!-- End Telerik-->
      <SafeControl Assembly="RadEditorSharePoint, Version=6.9.1.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="RadEditorSharePoint, Version=6.9.1.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint.FieldEditor" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="RadEditorSharePoint, Version=6.9.1.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint.ListFieldEditor" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="ejudBaseWebPart, Version=1.0.0.0, Culture=neutral, PublicKeyToken=eabffec4be0c7ea5" Namespace="ejudBaseWebPart.ejudCommonWebPart" TypeName="*" Safe="True" SafeAgainstScript="False" />
    </SafeControls>
  </SharePoint>
  
  <system.web>
    <httpHandlers>
      <add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI,  version=2014.1.403.35,Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false" />
      <add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" validate="true" />
      <add path="*tswa-resource.axd" verb="*" type="Microsoft.TeamFoundation.WebAccess.ResourceHandlerFactory, Microsoft.TeamFoundation.WebAccess, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" validate="false" />
      <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false" />
      <add verb="*" path="*_AppService.axd" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false" />
      <add path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" verb="*" validate="false" />
      <!-- Telerik-->
      <add path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" validate="false" />
      <add path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" validate="false" />
      <add path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" validate="false" />
       </httpHandlers>
    <httpModules>
      <!-- Telerik-->
      <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule" />
      <add name="RadCompression" type="Telerik.Web.UI.RadCompression" />
      <add name="FederatedAuthentication" type="Microsoft.SharePoint.IdentityModel.SPFederationAuthenticationModule, Microsoft.SharePoint.IdentityModel, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add name="SessionAuthentication" type="Microsoft.SharePoint.IdentityModel.SPSessionAuthenticationModule, Microsoft.SharePoint.IdentityModel, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add name="SPWindowsClaimsAuthentication" type="Microsoft.SharePoint.IdentityModel.SPWindowsClaimsAuthenticationHttpModule, Microsoft.SharePoint.IdentityModel, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
    </httpModules>
  </system.web>
  <system.webServer>
   <handlers>
      <remove name="OPTIONSVerbHandler" />
        <add name="Telerik.Web.UI.WebResource"  path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI, Version=2014.1.403.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" />
    </handlers>
  </system.webServer>
   
   <location path="Telerik.Web.UI.WebResource.axd">
    <system.web>
      <authorization>
        <allow users="*"/>
      </authorization>
    </system.web>
  </location>
   
  <system.net>
    <defaultProxy />
  </system.net>
  </configuration>

Hristo Valyavicharski
Telerik team
 answered on 15 May 2014
2 answers
936 views

Hello,

We have RadGrid in our project and calling a javascript function to validate textboxes while button is clicked. the issue we are facing is,it fires server postback even "return(false)" is called in the javascript function. Please help us to solve the issue. Below is the code we have used in our app.

Thanks
Venkat

<
telerik:RadGrid ID="radgridRadius" runat="server" Width="80%" AllowPaging="True"

        PageSize="20" AllowSorting="True" AutoGenerateColumns="false" ShowStatusBar="true"

        AllowAutomaticDeletes="True" AllowAutomaticInserts="True" AllowAutomaticUpdates="True"

        GridLines="Vertical">

        <MasterTableView CommandItemDisplay="Top" GridLines="None">

            <CommandItemSettings RefreshText="" />

            <Columns>

                <telerik:GridBoundColumn UniqueName="Zipvalue" HeaderText="Zip" DataField="Zipvalue">

                </telerik:GridBoundColumn>

                <telerik:GridBoundColumn UniqueName="radiusvalue" HeaderText="Radius" DataField="radiusvalue">

                </telerik:GridBoundColumn>

                <telerik:GridBoundColumn UniqueName="latValue" HeaderText="Lat" DataField="latValue">

                </telerik:GridBoundColumn>

                <telerik:GridBoundColumn UniqueName="lonValue" HeaderText="Lon" DataField="lonValue">

                </telerik:GridBoundColumn>

                <telerik:GridBoundColumn UniqueName="hdnKeyValue" Visible="false" DataField="hdnKeyValue">

                </telerik:GridBoundColumn>

                <telerik:GridButtonColumn CommandName="Delete" HeaderText="Delete" Text="Delete"

                    ButtonType="ImageButton">

                </telerik:GridButtonColumn>

            </Columns>

            <EditFormSettings EditFormType="Template">

                <FormTemplate>

                    <table id="Table2" cellspacing="2" cellpadding="1" width="100%" border="1" rules="none"

                        style="border-collapse: collapse; background: white;">

                        <tr>

                            <td>

                                <table id="Table3" cellspacing="1" cellpadding="1" width="100%" border="0">

                                    <tr>

                                        <td>

                                            Center on zip:

                                        </td>

                                        <td>

                                            <asp:TextBox ID="TextBox7" runat="server" Text="" MaxLength="5" Width="90px">

                                            </asp:TextBox>

                                            <input type="button" name="btnRadiusLookup" onclick="javascript:return(OpenRadiusLookup());"

                                                value="Lookup" />

                                        </td>

                                        <td align="right">

                                            radiate out for

                                        </td>

                                        <td>

                                            <asp:TextBox ID="TextBox8" runat="server" Text="" MaxLength="2" Width="60px">

                                            </asp:TextBox>

                                            miles

                                        </td>

                                        <td align="right" colspan="2">

                                            <asp:Button ID="btnUpdate" Text='<%# IIf((TypeOf(Container) is GridEditFormInsertItem), "Insert", "Update") %>'

                                                runat="server"  OnClientClick ="javascript:return(testvalidation());"

                                                CommandName='<%# IIf((TypeOf(Container) is GridEditFormInsertItem), "InitInsert", "Update")%>' />

                                               

                                              

                                                

                                        </td>

                                    </tr>

                                </table>

                            </td>

                        </tr>

                        <tr>

                        </tr>

                    </table>

                </FormTemplate>

            </EditFormSettings>

        </MasterTableView>

        <EditItemStyle />

    </telerik:RadGrid>

 

 

<script language="javascript" type="text/javascript">

function ValidateInput() {

        debugger;

        var txtzip = document.getElementById("ucGeography_radgridRadius_ctl00_ctl02_ctl03_TextBox7")

        var txtRadius = document.getElementById("ucGeography_radgridRadius_ctl00_ctl02_ctl03_TextBox8")

        var regExperZip = "/^\d{5}$/";

        var regExperRadius = "/^\d{2}$/";

        if (txtzip.value.search(regExperZip) == -1) { //if match failed

            radalert("Please enter a valid 5 digit Zip", 300, 100);

            return(false);

 

        }

        if (txtRadius.value.search(regExperRadius) == -1) { //if match failed

            radalert("Please enter a valid 2 digit Radius", 300, 100);

            return(false);

 

        }

        else if (txtRadius.value > 50) {

            radalert("Please enter a Radius less then 50", 300, 100);

            return(false);

 

        }

       

 

    }

</script>

 

Thanks

Sivasankaran.D

 

Rajeev
Top achievements
Rank 1
 answered on 15 May 2014
3 answers
113 views
This is my first time using HtmlChart and I need a bit of help.

I have bound a grid and chart on the server side. The grid works but the chart doesn't.

Here is the code and attached is a screen capture what I currently getting and what I would like to see.

ASP.NET
                        <td width="100%" valign="top" align="left">
                            <telerik:RadHtmlChart ID="barChart" runat="server" Width="600px" Height="200px">
                            </telerik:RadHtmlChart>
                        </td>

C#
                DataTable dtNetworkCompareResults = dataSet.Tables["NetworkCompareResults"];

                radgridSearchResults.DataSource = dtNetworkCompareResults;
                radgridSearchResults.Visible = true;
                radgridSearchResults.DataBind();

                barChart.DataSource = dtNetworkCompareResults;

                this.barChart.PlotArea.Series.Clear();

                LineSeries networkSeries1 = new LineSeries { DataFieldY = "Total" };
                this.barChart.PlotArea.Series.Add(networkSeries1);
                LineSeries networkSeries2 = new LineSeries { DataFieldY = "PSC" };
                this.barChart.PlotArea.Series.Add(networkSeries2);
                LineSeries networkSeries3 = new LineSeries { DataFieldY = "Specialist"};
                this.barChart.PlotArea.Series.Add(networkSeries3);

                barChart.PlotArea.XAxis.DataLabelsField = "NetworkName";
                barChart.PlotArea.XAxis.Name = "NetworkName";

                barChart.Legend.Appearance.Visible = true;
                barChart.Visible = true;

                barChart.DataSource = dtNetworkCompareResults;
                barChart.DataBind();
Princy
Top achievements
Rank 2
 answered on 15 May 2014
3 answers
132 views
Hi,

I added RadMonthCalendar on Master page banner
 <telerik:RadMonthYearPicker ID="RadMonthYearPicker" runat="server" OnSelectedDateChanged="RadMonthYearPicker_SelectedDateChanged" AutoPostBack="true">
trying to add selected chang event in child pages, but getting error: (Cannot implicitly convert type 'System.EventHandler' to 'Telerik.Web.UI.Calendar.SelectedDateChanged EventHandler')

 Child page load:
 RadMonthYearPicker radMonthYear = (RadMonthYearPicker)this.Master.FindControl("RadMonthYearPicker");
                 radMonthYear.SelectedDateChanged += new EventHandler(RadMonthYearPicker_SelectedDateChanged);
                 year = radMonthYear.SelectedDate.Value.Year;
                 month = radMonthYear.SelectedDate.Value.Month;

protected void RadMonthYearPicker_SelectedDateChanged(object sender, EventArgs e)
        {
            RadMonthYearPicker rmy = (RadMonthYearPicker)sender;
           
           
            year = rmy.SelectedDate.Value.Year;
            month = rmy.SelectedDate.Value.Month;
            BindLabelData();
            GetData("Total");
            GetQuarterData("Total");
            BindData(1);
            
           
        }

Also getting error (No overload for 'RadMonthYearPicker_SelectedDateChanged' matches delegate 'System.EventHandler' )when i give like this:   protected void RadMonthYearPicker_SelectedDateChanged(object sender, Telerik.Web.UI.Calendar.SelectedDateChangedEventArgs e)

Please let me know how to proceed on this. Thanks

Shinu
Top achievements
Rank 2
 answered on 15 May 2014
7 answers
709 views
Dears ,

I have a rad grid contain data and instead use edit to but value in one cell for every row , I want to create a two buttons in every row to put this value
Ex:

the cell in database name " mgm_con" I want when I press in the button to put in this cell " confirmed " or the second button " n't confirmed "
Shinu
Top achievements
Rank 2
 answered on 15 May 2014
5 answers
140 views
Dear Sir:

As the subject.
Example as how to change the Query and Delete?

Kind Regards
Princy
Top achievements
Rank 2
 answered on 15 May 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?