Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
493 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
570 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
72 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
539 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
106 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
293 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
178 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
174 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
1 answer
98 views
Good day.Is there a way that i can change the current Delete Appointment Button ( shown as X ) in the radscheduler into a html / asp.net button?
Our clients sometimes click this x button accidentally, so we would like to show a button which is more presentable.

Hoping for your reply.
Thank you very much.

Yours faithfully,
Rommel Sudan
Boyan Dimitrov
Telerik team
 answered on 05 Dec 2014
1 answer
86 views
Hello Telerik, 

this is probably just a little something I forgot to put in my code but I can't seem to find it.

Basically I have this RadGrid and when I sort any column there's a postback but after that, the RadGrid is empty.

1) Allow sorting is set at true for the RadGrid AND for the Columns
2) The sorting expressions are the same as the DataField and Unique ID. (and for the Template column the sorting expression is the same value as I put in the link button or other controls with DataBinder.Eval(Container.DataItem, ''theSortingExpression'')

Right now, the data binding occurs only if its not a postback.
If I don't put the data binding in the postback, it just says invalid postback argument (because the Unique ID will not be the same anymore, which is normal)

How am I supposed to use the sorting properly with DataBinding in the code behind

Thanks !
Mark
Top achievements
Rank 1
 answered on 05 Dec 2014
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?