Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
120 views
I am using rad tabs with with content URL with following settings
.aspx code
<asp:Content ID="Content1" ContentPlaceHolderID="MainContentPlaceHolder" runat="Server">
    <telerik:RadAjaxPanel ID="rjxPanel" runat="server" LoadingPanelID="RadAjaxLoadingPanel1">
 </telerik:RadAjaxPanel>
</asp:Content>

aspx.cs code

 protected void Page_Load(object sender, EventArgs e)
    {   RadAjaxManager rjxManager = RadAjaxManager.GetCurrent(this);
        //Create a new delegate to handle the AjaxRequest event   
        rjxManager.AjaxRequest += new RadAjaxControl.AjaxRequestDelegate(RadAjaxManager_AjaxRequest);
        rjxManager.AjaxSettings.AddAjaxSetting(rjxManager, pnl_OpportunityGroups);
   }

 protected void RadAjaxManager_AjaxRequest(object sender, AjaxRequestEventArgs e)
    {
        try
        {
            if (!string.IsNullOrEmpty(e.Argument))
            {
                if (e.Argument == "Rebind")
                    RadGrid_Group.Rebind();
            }
        }
        catch (Exception exc)
        {
            XITingExceptionProcessor.ProcessException(this, exc);
        }



    }

when exception is thrown then exception is shown behind loading panel In IE11 only.

I could not get solution
PFA.
Maria Ilieva
Telerik team
 answered on 08 Dec 2014
1 answer
137 views
I have radgrid with all the columns populated dynamically. I want to incorporate the edit functionality to the grid for each row/cell.

I see the batch edit functionality best suits my environment. But, as I have the AutoGenerateColumns="true" I am unable to use that option.

Please suggest the other best option to add edit functionality. An example would really help.

Thanks,
Vikas
Viktor Tachev
Telerik team
 answered on 08 Dec 2014
6 answers
445 views
Dear Telerik Team,

i am looking to integrate RadFileExplorer with unc share drive, i try to see this link http://www.telerik.com/support/kb/aspnet-ajax/fileexplorer/physical-paths-and-different-content-types.aspx but seems the link is broken.

Could you please guide for my requirements.

Thanks
Vessy
Telerik team
 answered on 08 Dec 2014
1 answer
520 views
We started seeing errors this week like:  363.6364 is not a value for Int32

In the postback trace 363.6364 we found the following:

FormFieldRadComboBox_i0_FormField_OptionsRadTreeView_ClientState
= {"expandedNodes":["0:2"],"collapsedNodes":[],"logEntries":[],"selectedNodes":["0:2:12"],"checkedNodes":[],"scrollPosition":363.6364}

So it seems Chrome 39.0.2171.71 is returning a decimal scrollPosition which is blowing up RadComboBox. 

Any one else seeing this and/or have a resolution?
Dimitar Terziev
Telerik team
 answered on 08 Dec 2014
1 answer
58 views
Dear Team,

We upgraded our Telerik to the 2014 Q3 build. Further to upgrade, we found that the Rad List Box appears to be in disable state whichever skin we apply for it. As per our application, we render our control via partial post back inside an user control. We also tested for the same by isolating this control to a separate aspx page. While rendering, we noted errors thrown in the Javascript FireBug console (please see attached).

Attachment #1: TelerikProblem.png (taken from FireBug console)
Attachment #2: TelerikInside.png (taken from the screen that appeared when clicking the error on the FireBug console).

This happens only for Rad List Box whereas there is no issue with other controls.

This happens in Google Chrome & IE also.

On Google chrome, the console error read as follows

Telerik RadListBox Cannot read property 'Classic' of undefined

We tried different render modes, still the same occurs.

Kindly let us if we are missing something.

Thanks and Regards,

Arockia J
Dimitar Terziev
Telerik team
 answered on 08 Dec 2014
28 answers
482 views
I have a simple grid and trying to export to PDF with AllowPaging. Whenever I try to export, I get an error that says "System.InvalidCastException: Unable to cast object of type 'Telerik.Web.Apoc.Layout.BlockArea' to type 'Telerik.Web.Apoc.Layout.AreaContainer'."  I looked through the code and whenever I set IgnorePaging to true, I get this error. If I set it to false, it works fine but, I don't get full data.  I use ObjectDataSource for connection to the grid.
Kostadin
Telerik team
 answered on 08 Dec 2014
1 answer
89 views
i used a rad menu . i want to remove blur effect on sub menu items when mouse over them.
this highlight effect is like a foreground for items.how can remove that from style.
Dimitar Terziev
Telerik team
 answered on 08 Dec 2014
9 answers
258 views
Hello,

I am working on a project with RadAjaxManager.
The AJAX settings can be defined in the code behind only.
I'm trying to access the RadAjaxPanel via the JavaScript, by its ID.
The AjaxPanel and its ID are created by the RadAjaxManager automatically.

How can I achieve this?

Thanks,
Daniel.
Daniel
Top achievements
Rank 1
 answered on 07 Dec 2014
2 answers
121 views
Hello,

I am working on a project with a RadGrid.

I implemented in my project a filter like this:
http://www.telerik.com/clientsfiles/163455d1-78d6-4f71-8839-2ba11e639917_RadGridFilterFocusPreserve.zip?sfvrsn=0

I have 2 questions:

1. How can I filter, also when the user just pastes text directly into textbox filter without typing? [See video]
2. How can I see previously selected rows, which disappeared because of a newer filter and now reappear, after that filter was removed? [see video]

 
Thanks,
Daniel
Daniel
Top achievements
Rank 1
 answered on 07 Dec 2014
2 answers
140 views
Hello,

there is a strange style issue when imbed a rad grid directly inside a rad window. As you can see from the screenshot, the row position is way off and covering the header, but all other rad grid I use outside the rad window look just fine. and it's reproducible in all browsers.

here is the code:

<telerik:RadWindow ID="rwFilters" Modal="true" runat="server" Behaviors="Close, Move, Resize" Title="Filter"
IconUrl="~/Images/close1.png" Width="995px" Height="530px">
<ContentTemplate>

<telerik:RadGrid ID="RadGrid3" runat="server" GridLines="None" HeaderStyle-HorizontalAlign="Center"
Width="970px" AllowPaging="false" Height="200px" AutoGenerateColumns="false" EnableAjaxSkinRendering="true" EnableEmbeddedBaseStylesheet="true"
HorizontalAlign="Justify" AllowMultiRowSelection="True" OnNeedDataSource="RadGrid3_NeedDataSource"
AllowFilteringByColumn="false" AllowSorting="false" Skin="Vista" >
<MasterTableView HorizontalAlign="left" DataKeyNames="ID">
<NoRecordsTemplate>No record found.</NoRecordsTemplate>
<Columns>
<telerik:GridClientSelectColumn UniqueName="ClientSelectColumn" Visible="true">
<HeaderStyle HorizontalAlign="Left" Width="30px" />
</telerik:GridClientSelectColumn>
<telerik:GridBoundColumn
Display="false"
DataField="ID"
HeaderText=""
UniqueName="ID"
SortExpression="ID"
AllowFiltering="false"
ReadOnly="True" >
<HeaderStyle Width="50px" />
</telerik:GridBoundColumn>
<telerik:GridBoundColumn
DataField="State"
HeaderText="State"
UniqueName="State"
SortExpression="State"

DataType ="System.String"
ReadOnly="True">
<HeaderStyle Width="60px" />
</telerik:GridBoundColumn>
<telerik:GridBoundColumn
DataField="County"
HeaderText="County"
UniqueName="County"
SortExpression="County"
AllowFiltering="true"
DataType ="System.String"
ReadOnly="True" >
<HeaderStyle Width="80px" />
</telerik:GridBoundColumn>
<telerik:GridBoundColumn
DataField="CityOrZip"
HeaderText="City/Zip"
UniqueName="CityOrZip"
SortExpression="CityOrZip"

DataType ="System.String"
ReadOnly="True">

</telerik:GridBoundColumn>
<telerik:GridBoundColumn
DataField="Street"
HeaderText="Street"
UniqueName="Street"
SortExpression="Street"

DataType ="System.String"
ReadOnly="True" >
<HeaderStyle Width="80px" />
</telerik:GridBoundColumn>
<telerik:GridBoundColumn
DataField="Status"
HeaderText="Status"
UniqueName="Status"
SortExpression="Status"

DataType ="System.String"
ReadOnly="True" >
<HeaderStyle Width="80px" />
</telerik:GridBoundColumn>
<telerik:GridBoundColumn
DataField="PropertyType"
HeaderText="Type"
UniqueName="PropertyType"
SortExpression="PropertyType"

DataType ="System.String"
ReadOnly="True" FilterControlWidth="60px">
<HeaderStyle Width="80px" />
</telerik:GridBoundColumn>
<telerik:GridBoundColumn
DataField="SaleDate"
HeaderText="SaleDate"
UniqueName="SaleDate"
SortExpression="SaleDate"
DataType ="System.String"
ReadOnly="True">
<HeaderStyle Width="90px" />
</telerik:GridBoundColumn>
<telerik:GridBoundColumn
DataField="Bedroom"
HeaderText="Bedroom"
UniqueName="Bedroom"
SortExpression="Bedroom"

DataType ="System.String"
ReadOnly="True" FilterControlWidth="30px">
<HeaderStyle Width="70px" />
</telerik:GridBoundColumn>
<telerik:GridBoundColumn
DataField="Bathroom"
HeaderText="Bathroom"
UniqueName="Bathroom"
SortExpression="Bathroom"

DataType ="System.String"
ReadOnly="True" FilterControlWidth="30px">
<HeaderStyle Width="70px" />
</telerik:GridBoundColumn>
<telerik:GridBoundColumn
DataField="SqFt"
HeaderText="SqFt"
UniqueName="SqFt"
SortExpression="SqFt"

DataType ="System.String"
ReadOnly="True" FilterControlWidth="60px">
<HeaderStyle Width="90px" />
</telerik:GridBoundColumn>
<telerik:GridBoundColumn
DataField="YearBuit"
HeaderText="YearBuit"
UniqueName="YearBuit"
SortExpression="YearBuit"

DataType ="System.String"
ReadOnly="True" FilterControlWidth="40px">
<HeaderStyle Width="80px" />
</telerik:GridBoundColumn>
<telerik:GridBoundColumn
DataField="Unit"
HeaderText="Unit"
UniqueName="Unit"
SortExpression="Unit"

DataType ="System.String"
ReadOnly="True" FilterControlWidth="30px">
<HeaderStyle Width="70px" />
</telerik:GridBoundColumn>
<telerik:GridBoundColumn
DataField="OpeningBid"
HeaderText="OpeningBid"
UniqueName="OpeningBid"
SortExpression="OpeningBid"

DataType ="System.String"
ReadOnly="True" FilterControlWidth="90px">
<HeaderStyle Width="100px" />
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>

<ClientSettings>
<Selecting AllowRowSelect="true"/>
<Scrolling AllowScroll="true" UseStaticHeaders="true" SaveScrollPosition="true" />
</ClientSettings>
</telerik:RadGrid>
</ContentTemplate>
</telerik:RadWindow>

please help,

Thanks a lot!
Shannon
Top achievements
Rank 1
 answered on 05 Dec 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?