Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
79 views
Hello,

                I have a aspx page with four ascx controls. In one of the control i have three buttons, one grid and one tree. i have used the radajaxmanagerproxy for ajax operation. In one of the button's clientclick function i called doPostBack function. The entire page is refreshed when i called the doPostBack function, ajax is not working in this situation. I am using radajaxmanager in my aspx page so i use radajaxmanagerproxy in my control for ajax. Radajaxmanager has only the property ajaxrequest.Please give the solution for this problem.

Thanks,
Velkumar.
Dimitar Terziev
Telerik team
 answered on 29 Sep 2011
5 answers
212 views
Hi,

I am new to the rad editor spell check control. i hava a requirement that i want to do the spell check in silent mode i.e when i click on the spell check button it will do the spell check without showing the modal dialog. how can i do this?

i checked in the telerik forum but i could not find the answer  for this.

Can anybody help on this?

Regards,
Karunakar.
Lini
Telerik team
 answered on 29 Sep 2011
3 answers
105 views

Hi,

I have a Client Side CustomValidator Control, Is there a way to access selected item's CityCode value from comboxbox's itemtemplate. using client side javascript
--JD
( Please advice, some easy workable workaround )

<telerik:RadComboBox ID="RadComboBox2" Runat="server" TabIndex="3"
                      DropDownWidth="320px"
                       HighlightTemplatedItems="true"
                         DataSourceID="EDSStateList" DataTextField="StateName"
                        DataValueField="StateCode" SelectedValue='<%# Bind("FK_StateCode") %>'>
                         <HeaderTemplate>
                          <ul>
                             <li class="col1">StateName</li>
                             <li class="col2">CityName</li>
                             <li class="col3">CityCode</li>
                         </ul>
                         </HeaderTemplate>
  
                         <ItemTemplate>
                             <ul>
                                 <li class="col1">
                                     <%# DataBinder.Eval(Container.DataItem, "StateName")%></li>
                                 <li class="col2">
                                     <%# DataBinder.Eval(Container.DataItem, "CityName")%></li>
                                 <li class="col3">
                                     <%# DataBinder.Eval(Container.DataItem, "CityCode") %></li>
                             </ul>
                         </ItemTemplate>
  
                         <FooterTemplate>
             
                        </FooterTemplate>
  
                    </telerik:RadComboBox>
Vasil
Telerik team
 answered on 29 Sep 2011
2 answers
253 views
Hi Telerik team,


I am trying to add htmlbutton to radgrid header instead of default text header. Below is my code.

void radgrid1_PreRender(object sender, EventArgs e)
        {
            HiddenField hdfSortcolumn1 = (HiddenField)this.Page.FindControl("hdfSortColumn");
            RadGrid RadGrid1 = (RadGrid)Cache["radgrid1"];
            foreach (GridColumn col in RadGrid1.MasterTableView.RenderColumns)
            {
                foreach (GridHeaderItem headeritem in RadGrid1.MasterTableView.GetItems(GridItemType.Header))
                {
                    HtmlInputButton headerButton = new HtmlInputButton();
                    headerButton.Value = col.UniqueName;
                    Session["col"] = col.UniqueName;
                    string strColumn = col.UniqueName.Replace(" ", "%20");
                    string script = " document.getElementById('" + hdfSortcolumn1.ClientID + "').value = '" +
                                            strColumn + "'; RefreshSort('" +  Request.QueryString["ItemID"].ToString() + "');";
                    headerButton.Attributes["onclick"] = script;
                    headeritem[col.UniqueName].Controls.Add(headerButton);
                }
            }
        }
But duplicate header names are coming one is normal text and another one is dynamically added htmlbutton.
How to remove the default header text and only displaying htmlinputbutton.
Hope I can hear from you soon.
Thank you
Pratap.K
Pratap
Top achievements
Rank 1
 answered on 29 Sep 2011
1 answer
101 views
Hello,

I want to fire radcombobox SelectedIndexChanged  to RadGrid1_ItemDataBound,

I'm passing like that not fired

this.RadGrid1.ItemDataBound += new Telerik.Web.UI.GridItemEventHandler(this.RadGrid1_ItemDataBound);

Reply soon ,
very urgent


Thanks,
Mohamed.
Princy
Top achievements
Rank 2
 answered on 29 Sep 2011
2 answers
51 views

I am using both IE9 and Firefox 7 on the popup edit they display differently. I have a required validation on some fields.

<telerik:GridTemplateColumn HeaderText="First Name" UniqueName="First_Name" AllowFiltering="False">
    <EditItemTemplate>
        <telerik:RadTextBox ID="tbFirstName" runat="server" Text='<%# Bind("First_Name") %>'>
        </telerik:RadTextBox>
        <asp:RequiredFieldValidator ID="rfvFirstName" runat="server" ErrorMessage="(Required)"
            ControlToValidate="tbFirstName" ForeColor="Red"> </asp:RequiredFieldValidator>
    </EditItemTemplate>
    <ItemStyle HorizontalAlign="Left" />
    <ItemTemplate>
        <asp:Label ID="lbFirstName" runat="server" Text='<%# Eval("First_Name", "{0}") %>' />
    </ItemTemplate>
</telerik:GridTemplateColumn>
Ken
Top achievements
Rank 1
 answered on 29 Sep 2011
1 answer
81 views
In my implementation, I have some parent appointments that are visible=false.  This is because the parent may belong to another user (not visible), and the single occurrence of an appointment is moved to the current user (current user's appointments are visible).

Originally, I did not include any appointments that were not of the current user, but this meant that the current user could not edit the single occurrence of their appointment, because it happened to be part of a series that originally belonged to another user.

Now, my scheduler loads in all appointments for the current user, and also includes any parent appointments, and sets parent appointments that belong to other users to visible=false.

This seemed to be working, except that the parent has a 'RecurrenceRule', so the scheduler automatically parses the rule and builds the recurring appointments.  The recurring appointments are visible, even though the parent is visible=false.  How can I force the parsed recurring appointments to be visible=false?

I tried setting the parent RecurrenceRule to null in AppointmentDataBound, and that prevents the recurring appointments for other users from being generated, but when you delete the current user's single occurrence, it throws an exception that the scheduler could not parse the parent RecurrenceRule (not surprisingly since I manually removed it).

Any ideas?
Plamen
Telerik team
 answered on 29 Sep 2011
1 answer
124 views
Dear Telerik Team,

we would like to ask how to strongly define RadChart's heigth. The heigth is set up in according to the size of chart's legend currently. Our chart has 192 series, in other words 192 items in the legend. The heigth of the chart is adjusted to the heigth of the legend regardless to the fact whether the legend is hidden or shown bellow. Here's our code snippet of the RadChart settings:

                radChart.ClearSkin();

                radChart.Skin = Skin;

                radChart.SeriesOrientation = ((RadChartEntity)Session[radChart.ID]).Orientation;

                radChart.AutoLayout = true;

                radChart.PlotArea.Appearance.Dimensions.Width = 500;

                radChart.PlotArea.Appearance.Dimensions.Height = 500;

                radChart.PlotArea.EmptySeriesMessage.TextBlock.Text = "No data";

                radChart.PlotArea.XAxis.IsZeroBased = false;

                radChart.PlotArea.XAxis.AutoScale = false;

                radChart.PlotArea.XAxis.Appearance.ValueFormat = Telerik.Charting.Styles.ChartValueFormat.ShortDate;

                radChart.PlotArea.XAxis.Appearance.LabelAppearance.RotationAngle = 45;

                radChart.PlotArea.XAxis.Appearance.LabelAppearance.CompositionType = LabelItemsCompositionTypes.RowImageText;

                radChart.PlotArea.XAxis.Appearance.LabelAppearance.Position.AlignedPosition = AlignedPositions.Top;

                radChart.Appearance.FillStyle.FillType = FillType.Solid;

                radChart.Appearance.TextQuality = TextQuality.ClearTypeGridFit;

                radChart.Appearance.Border.Visible = false;

                radChart.Legend.Appearance.ItemTextAppearance.MaxLength = 20;

                radChart.Legend.Appearance.Position.AlignedPosition = AlignedPositions.TopRight;

                //radChart.Legend.Appearance.Overflow = Overflow.Row;

                radChart.ChartTitle.Appearance.Position.AlignedPosition = AlignedPositions.TopLeft;

                radChart.ChartTitle.Appearance.Position.Auto = false;

 

Let us also remark, the heigth of the RadChart equals to 600px a the width of the RadChart equals to 1000px.

<telerik:RadChart ID="radChart" runat="server" Height="600px" Width="1000px" EnableViewState="false">

                </telerik:RadChart>



We attached the image of the chart for the illustration as well.
We'll be very grateful for any suggestions about solving such the problem.

Kind regards,
SCT
SCT
Top achievements
Rank 1
 answered on 29 Sep 2011
0 answers
91 views
Hi,

I am currently researching on whether to use Http Get or Post in my Ajax Enabled website.
Can you tell me what protocol does the RadAjax controls like RadAjaxPanel use by default?(I think it uses Http Post)
Also can you tell me what should I do If I have to change the Protocol.
I would be extremely thankful if I can get a quick response.

Thanks in advance.
Shashank
Shashank Pandey
Top achievements
Rank 1
 asked on 29 Sep 2011
2 answers
91 views
Hi,
I am writing a server composite control which would reuse some of the RadComboBox functionality. When running a page which uses that control I am getting a JavaScript error (see the bottom of my post). I have narrowed the problem down to the RadComboBox itself. Is there any known fix to that?

Here is my server control (stripped as much as I can to produce the problem) :

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Telerik.Web.UI;
  
namespace ServerControl1
{
    [ToolboxData("<{0}:ScapaLoad runat=server></{0}:ScapaLoad>")]
    public class ScapaLoad : CompositeControl
    {
        RadComboBox _combo;
  
        [
            Category("Data"),
            Description("Data source ID for populating combo box"),
            PersistenceMode(PersistenceMode.Attribute)
        ]
        public string DataSourceID
        {
            get
            {
                EnsureChildControls();
                return _combo.DataSourceID;
            }
            set
            {
                EnsureChildControls();
                _combo.DataSourceID = value;
            }
        }
  
        [
            Category("Data"),
            Description("Database field with value to be used as a value of each combo box element"),
            PersistenceMode(PersistenceMode.Attribute)
        ]
        public string DataValueField
        {
            get
            {
                EnsureChildControls();
                return _combo.DataValueField;
            }
            set
            {
                EnsureChildControls();
                _combo.DataValueField = value;
            }
        }
  
        [
            Category("Data"),
            Description("Database field to be used as a visible text for chosen element from combo box"),
            PersistenceMode(PersistenceMode.Attribute)
        ]
        public string DataTextField
        {
            get
            {
                EnsureChildControls();
                return _combo.DataTextField;
            }
            set
            {
                EnsureChildControls();
                _combo.DataTextField = value;
            }
        }
  
  
        protected override void CreateChildControls()
        {
            Controls.Clear();
  
            _combo = new RadComboBox();
  
            Controls.Add(_combo);
        }
  
        protected override void RecreateChildControls()
        {
            EnsureChildControls();
        }
  
        protected override void Render(HtmlTextWriter writer)
        {
            AddAttributesToRender(writer);
            _combo.RenderControl(writer);
        }
    }
}


A page using the control (again, stripped down to just the control itself) :

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>
  
<%@ Register Assembly="ServerControl1" Namespace="ServerControl1" TagPrefix="aspSample" %>
<%@ 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">
    <div>
          
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server"/>
  
        <asp:LinqDataSource ID="LinqDataSource1" runat="server" EnableDelete="true" 
            ContextTypeName="TestLinqDataContext" EntityTypeName="" TableName="Users">
        </asp:LinqDataSource>
  
        <aspSample:ScapaLoad ID="ScapaLoad1" runat="server" 
            DataSourceID="LinqDataSource1" DataValueField="Name" DataTextField="Name" />
  
    </div>
    </form>
</body>
</html>

The javascript error I am getting is:

'undefined' is null or not an object  Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=RadScriptManager1_TSM&compress=1&_TSM_CombinedScripts_=%3b%3bSystem.Web.Extensions%2c+Version%3d4.0.0.0%2c+Culture%3dneutral%2c+PublicKeyToken%3d31bf3856ad364e35%3aen-US%3ac9d03845-da3c-45e9-ab05-79ee502af576%3aea597d4b%3ab25378d2%3bTelerik.Web.UI%2c+Version%3d2011.2.712.40%2c+Culture%3dneutral%2c+PublicKeyToken%3d121fae78165ba3d4%3aen-US%3af9722142-3e1c-4803-86df-ecfc0d24f144%3a16e4e7cd%3af7645509%3a24ee1bba%3af46195d3%3a1e771326%3aaa288e2d, line 6 character 74101


Please help, it is urgent. If you need any additional data please let me know and I will provide it if I can.

Thanks,

Daniel Gruszczyk
Ivana
Telerik team
 answered on 29 Sep 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?