Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
109 views
bellow code is i used. It is working properly n fire fox and IE 8 . but IE 9 and IE 10 it is not working. I have used telerik version 2008.1.415.35

<telerik:RadComboBox ID="RadComboBox1" runat="server" Width="590px" Height="140px" AllowCustomText="false"
                MarkFirstMatch="true" AutoCompleteSeparator=";"
                    EmptyMessage="Type an E-mail" DataSourceID="SqlDataSource1" DataTextField="DSG_NAME"
                    OnItemDataBound="RadComboBox1_ItemDataBound">
               </telerik:RadComboBox>
Kate
Telerik team
 answered on 13 Jun 2013
2 answers
183 views
Hi,

I searching one solution to export current modified RadGrid in one dataset to use in some custom code c#. Thanks for u.help. 
Daniel
Telerik team
 answered on 13 Jun 2013
1 answer
446 views
Hi

I need to add image in each header template  in GridTemplateColumn
But the images vanishes whenever I hit on the header for sorting

<telerik:RadGrid ID="rdAdminApproval" Skin="RadSkin" CssClass="ExportGrid" EnableEmbeddedSkins="false"
        Width="100%" mygv="" AllowFilteringByColumn="true"  AllowSorting="true"
        PageSize="10" AllowPaging="true" Font-Size="7pt" runat="server" GridLines="Horizontal"
        ShowGroupPanel="false" CellPadding="0" CellSpacing="0" >
        <%--<GroupingSettings CaseSensitive="false" />--%>
        <MasterTableView SkinID="RadSkin"  AutoGenerateColumns="false" AllowFilteringByColumn="false"
            FilterItemStyle-Wrap="true"  UseAllDataFields="true">
            <SortExpressions>
                <telerik:GridSortExpression FieldName="str1" SortOrder="Ascending" />
            </SortExpressions>
            <Columns>
                
                <telerik:GridTemplateColumn AllowFiltering="false"  >
                <HeaderTemplate>
                <img src="sort.png" />
                </HeaderTemplate>
                    <ItemTemplate>
                         <asp:Label runat="server" Text='<%#Eval("str")%>'></asp:Label>
                    </ItemTemplate>
                </telerik:GridTemplateColumn>
                <telerik:GridTemplateColumn   ShowSortIcon="true"    SortDescImageUrl="SortDown.png" SortAscImageUrl="SortUp.png">
                    <HeaderTemplate>
                        <img src="sort.png" />
                    </HeaderTemplate>
                    <ItemTemplate>
                        <asp:Label ID="Label1" runat="server" Text='<%#Eval("str1")%>' ></asp:Label>
                    </ItemTemplate>
                </telerik:GridTemplateColumn>
                <telerik:GridTemplateColumn AllowFiltering="false">
                    <HeaderTemplate>
                        <img src="sort.png" />
                    </HeaderTemplate>
                    <ItemTemplate>
                        <asp:Label ID="Label2" runat="server" Text='<%#Eval("str2")%>'></asp:Label>
                    </ItemTemplate>
                </telerik:GridTemplateColumn>
 
            </Columns>
        </MasterTableView>
        <FilterMenu EnableImageSprites="False">
        </FilterMenu>
    </telerik:RadGrid>

Princy
Top achievements
Rank 2
 answered on 13 Jun 2013
1 answer
229 views
Hi,

I am trying to implement a web page where the user can upload x number of photos to web site and allow the user to sort the order of the photo by drag & drop. Because the user will also have to set number of attributes for each photo, I figure that ListView is perfect way to display the info and allow the user to drag entire cell to reorder. In each cell, it will be like this.

[Photo 1, attr 11, attr12] [Photo 2, attr 21, attr21]  [Photo 3, attr 31, attr32] 
[Photo 4, attr 41, attr44] [Photo 5, attr 51, attr52] 

I should be able to drag the photo to move entire cell and put it in different order.

How do I accomplish this? Can ListView handle this or sample code?


Kostadin
Telerik team
 answered on 13 Jun 2013
1 answer
52 views
Hello,

I'm using a loading panel to cover a RadTreeView in a RadPane. Everything works great normally. But, when the tree gets long enough that you have to scroll down in the pane, and then the loading panel shows, the loading panel extends above the top of the visible pane. This happens, presumably, because the height of the loading panel is tied to the treeview, which is now taller than the pane it's in. 

But, how can I fix it... is there a simple way to make the loading panel now break above the top of the pane when I've scrolled down?

Thanks,

Mike
Angel Petrov
Telerik team
 answered on 13 Jun 2013
8 answers
860 views
Hello everyone,

I am new to the Telerik controls so this might seem like a very simple question but I've spent the last couple of hours trying to figure this out with no success.

Basically, I created a Scheduler which I'm populating server side with events retrieved from my database. After implementing the server side event handler for the time slot context menu item clicked, I am trying to retrieve the Start date and End date for a selected time slot server side. The issue is that though client side I manage to select multiple empty time slots, then I use the context menu to add a new event and postback server side and handle the event as per the below. 
Protected Sub radEventSchedule_TimeSlotContextMenuItemClicked(ByVal sender As Object, ByVal e As Telerik.Web.UI.TimeSlotContextMenuItemClickedEventArgs) Handles radEventSchedule.TimeSlotContextMenuItemClicked
        If e.MenuItem.Value = "NewEvent" Then
            Session("EventStartDate") = e.TimeSlot.Start
            Session("EventEndDate") = e.TimeSlot.End
        End If
    End Sub
My issue is that the startdate (e.TimeSlot.Start) and enddate (e.TimeSlot.End) is only being populated with the start time and end time of the timeslot I've right clicked. Therefore if for example I select from 01:00 - 09:00, these properties are only populated with a range of 30 minutes which is exactly the range of each single timeslot.

My intention is to retrieve the start time and end time of all the selected slots rather than the time slot I've right clicked only.

Thank you for your time.

Ludwig
Boyan Dimitrov
Telerik team
 answered on 13 Jun 2013
3 answers
650 views
Hi Telerik,

I have an issue in my RadGrid, I only want GridDateTimeColumn filter data by month and year.
Example: 1/2012 > Filtering all data in 1/2012

Please tell me how to do that
Thanks
Andrey
Telerik team
 answered on 13 Jun 2013
1 answer
82 views
Hallo,

I'm trying to add a requiredfield-validator to my radgrid as described in http://www.telerik.com/help/aspnet-ajax/grid-validation.html .
Somehow the ColumnValidationSettings are not available in my Version. I'm using Telerik.dll's v 2012.3.1016.35. What Version is needed to be able to set this property declaratively?

thanks!
Shinu
Top achievements
Rank 2
 answered on 13 Jun 2013
10 answers
322 views
I have a tabstrip on my page with several tabs and each tab has a usercontrol.
On one of my tabs based on a certain condition, I want to disable the other tabs.

Can you help me achieve this. I am unable to get a reference to the tabstrip from within the user control. I am using the latest build of ASP.NET AJAX controls.

Please help.
Kate
Telerik team
 answered on 13 Jun 2013
1 answer
125 views
Hi,

I have two radgridviews, and one radcombobox for the ajax operations. Flow is that user enters information in grid1, on submitting the data, radcombobox gets populated with the details entered in grid1. On change of this dropdown, grid 2 gets reflected.

My problem is that when i click on Save button, and server side validation fails, user is brought back to the page. at that time i am unable to select item from the radcombobox, it does not open up to show options. Also when i perform any operation on the grids, Ajax loading icon does not appear. Following is the code.

UserControl1.ascx
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Skin="Windows7"
    MinDisplayTime="30" />
<telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server">
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="rgXAxisDetails">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="rgXAxisDetails" />
                <telerik:AjaxUpdatedControl ControlID="RadWindowManager1" />
            </UpdatedControls>
        </telerik:AjaxSetting>
        <telerik:AjaxSetting AjaxControlID="radCmbXAxisColumn">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="radCmbXAxisColumn" />
                <telerik:AjaxUpdatedControl ControlID="RadWindowManager1" />
            </UpdatedControls>
        </telerik:AjaxSetting>
    </AjaxSettings>
</telerik:RadAjaxManagerProxy>
<div>
    <table cellspacing="0" cellpadding="2" border="0" width="100%">
        <tr>
            <td colspan="2" style="font-weight: normal">
                <asp:Label ID="lblGenericChart" runat="server" Font-Bold="True" Text="Generic Chart Plot"></asp:Label>
                <asp:Label ID="lblError" runat="server" Text="" ForeColor="red"></asp:Label>
            </td>
        </tr>
    </table>
    <table cellspacing="2" cellpadding="2" border="0" width="100%">
        <tr>
            <td colspan="2">
                <asp:Label ID="lblErrorXAxis" runat="server" Text="" ForeColor="red"></asp:Label></td>
        </tr>
        <tr>
            <td colspan="2">
              
                <telerik:RadGrid ID="rgXAxisDetails" Skin="Windows7" GridLines="Both" runat="server"
                    AutoGenerateColumns="False" SelectedItemStyle-BackColor="blue" OnUpdateCommand="rgXAxisDetails_UpdateCommand"
                    OnItemCommand="rgXAxisDetails_ItemCommand" OnEditCommand="rgXAxisDetails_EditCommand"
                    OnItemDataBound="rgXAxisDetails_ItemDataBound" OnNeedDataSource="rgXAxisDetails_NeedDataSource"
                    OnInsertCommand="rgXAxisDetails_InsertCommand" OnItemCreated="rgXAxisDetails_ItemCreated"
                    OnDeleteCommand="rgXAxisDetails_DeleteCommand" AllowMultiRowEdit="false">
                    <MasterTableView InsertItemDisplay="Bottom" HorizontalAlign="NotSet" EditMode="InPlace"
                        TableLayout="Fixed" CommandItemDisplay="Bottom">
                        <Columns>
                            <telerik:GridTemplateColumn UniqueName="tcColumnName" HeaderText="Column Name">
                                <ItemTemplate>
                                    <asp:Label ID="lblColumnName" runat="server"></asp:Label>
                                </ItemTemplate>
                                <EditItemTemplate>
                                    <telerik:RadComboBox ID="radCmbColumnName" runat="server">
                                    </telerik:RadComboBox>
                                    <asp:RequiredFieldValidator ID="rfvColName" runat="server" ErrorMessage="*" ControlToValidate="radCmbColumnName"
                                        InitialValue="--Select--" Display="Dynamic"></asp:RequiredFieldValidator>
                                    <asp:CustomValidator ID="cvColumnName" runat="server" ErrorMessage="*Duplicate column"
                                        ControlToValidate="radCmbColumnName" OnServerValidate="cvColumnName_ServerValidate"
                                        Display="Dynamic">
                                    </asp:CustomValidator>
                                    <asp:CustomValidator ID="cvColNameInYaxis" runat="server" ErrorMessage="*Column exists in Yaxis data"
                                        ControlToValidate="radCmbColumnName" OnServerValidate="cvColNameInYaxis_ServerValidate"
                                        Display="Dynamic">
                                    </asp:CustomValidator>
                                </EditItemTemplate>
                            </telerik:GridTemplateColumn>
                            <telerik:GridTemplateColumn UniqueName="tcAxis" HeaderText="Axis">
                                <ItemTemplate>
                                    <asp:Label ID="lblAxis" runat="server"></asp:Label>
                                </ItemTemplate>
                                <EditItemTemplate>
                                    <telerik:RadComboBox ID="radCmbAxis" runat="server" OnClientSelectedIndexChanged="OnClientSelectedIndexChangedEventHandler">
                                        <Items>
                                            <telerik:RadComboBoxItem Text="--Select--" Value="--Select--" />
                                            <telerik:RadComboBoxItem Text="Primary Top" Value="Primary Top" />
                                            <telerik:RadComboBoxItem Text="Primary Bottom" Value="Primary Bottom" />
                                            <telerik:RadComboBoxItem Text="Secondary Top" Value="Secondary Top" />
                                            <telerik:RadComboBoxItem Text="Secondary Bottom" Value="Secondary Bottom" />
                                        </Items>
                                    </telerik:RadComboBox>
                                    <asp:RequiredFieldValidator ID="rfvAxis" runat="server" ErrorMessage="*" ControlToValidate="radCmbAxis"
                                        InitialValue="--Select--"></asp:RequiredFieldValidator>
                                </EditItemTemplate>
                            </telerik:GridTemplateColumn>
                            <telerik:GridTemplateColumn UniqueName="tcIsSameAxis" HeaderText="Is Same Axis">
                                <ItemTemplate>
                                    <asp:CheckBox ID="cbIsSameAxisDisplay" runat="server" Enabled="false" />
                                </ItemTemplate>
                                <EditItemTemplate>
                                    <asp:CheckBox ID="cbIsSameAxis" runat="server" />
                                </EditItemTemplate>
                            </telerik:GridTemplateColumn>
                            <telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="EditColumn">
                                <ItemStyle CssClass="MyImageButton" Width="3%" />
                                <HeaderStyle Width="3%" />
                            </telerik:GridEditCommandColumn>
                            <telerik:GridButtonColumn ConfirmText="Delete this entry?" ConfirmDialogType="RadWindow"
                                ConfirmTitle="Attention" ConfirmDialogHeight="100" ConfirmDialogWidth="250" ButtonType="ImageButton"
                                CommandName="Delete" Text="Delete" UniqueName="DeleteColumn">
                                <ItemStyle CssClass="MyImageButton" Width="3%" />
                                <HeaderStyle Width="3%" />
                            </telerik:GridButtonColumn>
                        </Columns>
                        <CommandItemTemplate>
                            <table class="rgXAxisCommandTable">
                                <tr>
                                    <td align="left">
                                        <asp:Button ID="AddNewRecordButton" CommandName="InitInsert" runat="server" CssClass="rgAdd" />
                                        <asp:LinkButton ID="lnkAddNewRow" runat="server" CommandName="InitInsert" Text="Add new record"></asp:LinkButton>
                                    </td>
                                </tr>
                            </table>
                        </CommandItemTemplate>
                        <PagerStyle AlwaysVisible="True" />
                        <HeaderStyle Font-Bold="True" BackColor="#BDBDBD" ForeColor="Black" />
                    </MasterTableView>
                    <SelectedItemStyle BackColor="Blue" />
                </telerik:RadGrid>
            </td>
        </tr>
        <tr>
            <%-- <td>
        </td>--%>
            <td colspan="2">
                <telerik:RadComboBox ID="radCmbXAxisColumn" runat="server" OnSelectedIndexChanged="radCmbXAxisColumn_SelectedIndexChanged"
                    AutoPostBack="True">
                </telerik:RadComboBox
                <asp:HiddenField ID="hdnXAxisColName" runat="server" />
                <asp:HiddenField ID="hdnIsXAxisInEdit" runat="server" />
            </td>
        </tr>
        <tr>
            <td colspan="2">
            </td>
        </tr>
        <tr>
            <td colspan="2">
                <asp:Label ID="lblErrorYAxis" runat="server" ForeColor="red"></asp:Label>
            </td>
        </tr>
        <tr>
            <td colspan="2">
                <telerik:RadGrid ID="rgYAxisDetails" runat="server" AutoGenerateColumns="False" Skin="Windows7"
                    GridLines="Both" SelectedItemStyle-BackColor="blue" OnItemDataBound="rgYAxisDetails_ItemDataBound"
                    OnNeedDataSource="rgYAxisDetails_NeedDataSource" OnDeleteCommand="rgYAxisDetails_DeleteCommand"
                    OnInsertCommand="rgYAxisDetails_InsertCommand" OnItemCommand="rgYAxisDetails_ItemCommand"
                    OnUpdateCommand="rgYAxisDetails_UpdateCommand" AllowMultiRowEdit="false">
                    <MasterTableView InsertItemDisplay="Bottom" HorizontalAlign="NotSet" EditMode="InPlace"
                        TableLayout="Fixed" CommandItemDisplay="Bottom">
                        <%--            <RowIndicatorColumn>
                        <HeaderStyle Width="20px" />
                    </RowIndicatorColumn>
                    <ExpandCollapseColumn>
                        <HeaderStyle Width="20px" />
                    </ExpandCollapseColumn>--%>
                        <Columns>
                            <telerik:GridTemplateColumn UniqueName="tcColumnName" HeaderText="Column Name">
                                <ItemTemplate>
                                    <asp:Label ID="lblColumnName" runat="server"></asp:Label>
                                </ItemTemplate>
                                <EditItemTemplate>
                                    <telerik:RadComboBox ID="radCmbColumnName" runat="server">
                                    </telerik:RadComboBox>
                                    <asp:RequiredFieldValidator ID="rfvYColName" runat="server" ErrorMessage="*" ControlToValidate="radCmbColumnName"
                                        InitialValue="--Select--" Display="Dynamic"></asp:RequiredFieldValidator>
                                    <asp:CustomValidator ID="cvYColumnName" runat="server" ErrorMessage="*Duplicate column"
                                        ControlToValidate="radCmbColumnName" OnServerValidate="cvYColumnName_ServerValidate"
                                        Display="Dynamic">
                                    </asp:CustomValidator>
                                    <asp:CustomValidator ID="cvYColNameInXAxis" runat="server" ErrorMessage="*Column exists in Xaxis data"
                                        ControlToValidate="radCmbColumnName" OnServerValidate="cvYColNameInXAxis_ServerValidate"
                                        Display="Dynamic">
                                    </asp:CustomValidator>
                                </EditItemTemplate>
                            </telerik:GridTemplateColumn>
                            <telerik:GridTemplateColumn UniqueName="tcAxis" HeaderText="Axis">
                                <ItemTemplate>
                                    <asp:Label ID="lblAxis" runat="server"></asp:Label>
                                </ItemTemplate>
                                <EditItemTemplate>
                                    <telerik:RadComboBox ID="radCmbAxis" runat="server" OnClientSelectedIndexChanged="OnClientSelectedIndexChangedEventHandler">
                                        <Items>
                                            <telerik:RadComboBoxItem Text="--Select--" Value="--Select--" />
                                            <telerik:RadComboBoxItem Text="Primary Left" Value="Primary Left" />
                                            <telerik:RadComboBoxItem Text="Primary Right" Value="Primary Right" />
                                            <telerik:RadComboBoxItem Text="Secondary Left" Value="Secondary Left" />
                                            <telerik:RadComboBoxItem Text="Secondary Right" Value="Secondary Right" />
                                        </Items>
                                    </telerik:RadComboBox>
                                    <asp:RequiredFieldValidator ID="rfvYAxis" runat="server" ErrorMessage="*" ControlToValidate="radCmbAxis"
                                        InitialValue="--Select--"></asp:RequiredFieldValidator>
                                </EditItemTemplate>
                            </telerik:GridTemplateColumn>
                            <telerik:GridTemplateColumn UniqueName="tcPlottingType" HeaderText="Plotting Type">
                                <ItemTemplate>
                                    <asp:Label ID="lblPlottingType" runat="server"></asp:Label>
                                </ItemTemplate>
                                <EditItemTemplate>
                                    <telerik:RadComboBox ID="radCmbPlottingType" runat="server">
                                        <Items>
                                            <telerik:RadComboBoxItem Text="--Select--" Value="--Select--" />
                                            <telerik:RadComboBoxItem Text="Line" Value="Line" />
                                            <telerik:RadComboBoxItem Text="Area" Value="Area" />
                                            <telerik:RadComboBoxItem Text="Marker" Value="Circle" />
                                        </Items>
                                    </telerik:RadComboBox>
                                    <asp:RequiredFieldValidator ID="rfvYPlottingType" runat="server" ErrorMessage="*"
                                        ControlToValidate="radCmbPlottingType" InitialValue="--Select--"></asp:RequiredFieldValidator>
                                </EditItemTemplate>
                            </telerik:GridTemplateColumn>
                            <telerik:GridTemplateColumn UniqueName="tcPlottingColor" HeaderText="Plotting Color">
                                <ItemTemplate>
                                    <asp:Label ID="lblPlottingColor" runat="server"></asp:Label>
                                </ItemTemplate>
                                <EditItemTemplate>
                                    <telerik:RadComboBox ID="radCmbCPlottingColor" runat="server">
                                    </telerik:RadComboBox>
                                    <asp:RequiredFieldValidator ID="rfvYPlottingColor" runat="server" ErrorMessage="*"
                                        ControlToValidate="radCmbCPlottingColor" InitialValue="--Select--"></asp:RequiredFieldValidator>
                                </EditItemTemplate>
                            </telerik:GridTemplateColumn>
                            <telerik:GridTemplateColumn UniqueName="tcIsSameAxis" HeaderText="Is Same Axis">
                                <ItemTemplate>
                                    <asp:CheckBox ID="cbIsSameAxisDisplay" runat="server" Enabled="false" />
                                </ItemTemplate>
                                <EditItemTemplate>
                                    <asp:CheckBox ID="cbIsSameAxis" runat="server" />
                                </EditItemTemplate>
                            </telerik:GridTemplateColumn>
                            <telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="EditColumn">
                                <ItemStyle CssClass="MyImageButton" Width="3%" />
                                <HeaderStyle Width="3%" />
                            </telerik:GridEditCommandColumn>
                            <telerik:GridButtonColumn ConfirmText="Delete this entry?" ConfirmDialogType="RadWindow"
                                ConfirmTitle="Attention" ConfirmDialogHeight="100" ConfirmDialogWidth="250" ButtonType="ImageButton"
                                CommandName="Delete" Text="Delete" UniqueName="DeleteColumn">
                                <ItemStyle CssClass="MyImageButton" Width="3%" />
                                <HeaderStyle Width="3%" />
                            </telerik:GridButtonColumn>
                        </Columns>
                        <CommandItemTemplate>
                            <table class="rgYAxisCommandTable">
                                <tr>
                                    <td align="left">
                                        <asp:Button ID="AddNewRecordButton" CommandName="InitInsert" runat="server" CssClass="rgAdd" />
                                        <asp:LinkButton ID="lnkAddNewRow" runat="server" CommandName="InitInsert" Text="Add new record"></asp:LinkButton>
                                    </td>
                                </tr>
                            </table>
                        </CommandItemTemplate>
                        <PagerStyle AlwaysVisible="True" />
                        <HeaderStyle Font-Bold="True" BackColor="#BDBDBD" ForeColor="Black" />
                    </MasterTableView>
                    <SelectedItemStyle BackColor="Blue" />
                </telerik:RadGrid></td>
        </tr>
        <tr>
            <td align="center" colspan="2">
                <br />
                <asp:Button ID="btnSave" runat="server" Text="Save"  OnClick="btnSave_Click" />
                <asp:Button ID="btnCancel" runat="server" Text="Cancel" />
            </td>
        </tr>
    </table>
    <telerik:RadWindowManager ID="RadWindowManager1" runat="server">
    </telerik:RadWindowManager>
</div>

Following are the settings for the ajax manager in my usercontrol.ascx.cs
objRadAJAXManager = RadAjaxManager.GetCurrent(Page);
                objRadAJAXManager.ClientEvents.OnRequestStart = "onRequestStart";
  
                //X Axis grid
                objRadAJAXManager.AjaxSettings.AddAjaxSetting(rgXAxisDetails, rgXAxisDetails, RadAjaxLoadingPanel1);
                objRadAJAXManager.AjaxSettings.AddAjaxSetting(rgXAxisDetails, RadWindowManager1, RadAjaxLoadingPanel1);
                objRadAJAXManager.AjaxSettings.AddAjaxSetting(rgXAxisDetails, lblErrorXAxis);
                objRadAJAXManager.AjaxSettings.AddAjaxSetting(rgXAxisDetails, lblErrorYAxis);
                objRadAJAXManager.AjaxSettings.AddAjaxSetting(rgXAxisDetails, radCmbXAxisColumn);
                objRadAJAXManager.AjaxSettings.AddAjaxSetting(rgXAxisDetails, hdnXAxisColName);
                objRadAJAXManager.AjaxSettings.AddAjaxSetting(rgXAxisDetails, rgYAxisDetails);
  
                //Y axis grid
                objRadAJAXManager.AjaxSettings.AddAjaxSetting(rgYAxisDetails, rgYAxisDetails, RadAjaxLoadingPanel1);
                objRadAJAXManager.AjaxSettings.AddAjaxSetting(rgYAxisDetails, RadWindowManager1, RadAjaxLoadingPanel1);
                objRadAJAXManager.AjaxSettings.AddAjaxSetting(rgYAxisDetails, lblErrorYAxis);
                objRadAJAXManager.AjaxSettings.AddAjaxSetting(rgYAxisDetails, lblErrorXAxis);
                objRadAJAXManager.AjaxSettings.AddAjaxSetting(rgYAxisDetails, rgXAxisDetails);
  
                // X axis column drop down
                objRadAJAXManager.AjaxSettings.AddAjaxSetting(radCmbXAxisColumn, radCmbXAxisColumn, RadAjaxLoadingPanel1);
                objRadAJAXManager.AjaxSettings.AddAjaxSetting(radCmbXAxisColumn, RadWindowManager1, RadAjaxLoadingPanel1);
                objRadAJAXManager.AjaxSettings.AddAjaxSetting(radCmbXAxisColumn, hdnXAxisColName);
                objRadAJAXManager.AjaxSettings.AddAjaxSetting(radCmbXAxisColumn, rgYAxisDetails);

Thanks in advance

Satbir
Viktor Tachev
Telerik team
 answered on 13 Jun 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?