Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
73 views

Hello,

 

This happends in IE, working ok in Chrome.

Any workarround? 

Regards,

 

Alexis.

Vessy
Telerik team
 answered on 19 Oct 2015
1 answer
78 views

Dear,

 I have radmediaplayer working fine in my ASP.Net application. I want to share running video URL through code behind. Please help me, i am stuck in that and its quite important.

Regards,

Nouman Rafique

Eyup
Telerik team
 answered on 19 Oct 2015
9 answers
532 views
Using the RadUpload control, I'm seeing problems uploading on Windows Server 2008/IIS7 -- specifically an "Access to the path... is Denied".

We've set the IUSR account to have "full control" on the upload directory.

The entire error message I'm seeing is:

Error saving 446_8089_150632.gif
System.UnauthorizedAccessException: Access to the path 'D:\inetpub\wwwroot\rmcpapp\uploads\446_8089_150632.gif' is denied. at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) at System.IO.File.InternalCopy(String sourceFileName, String destFileName, Boolean overwrite) at Telerik.Web.UI.Upload.RadUploadFile.SaveAs(String fileName, Boolean overwrite) at RMCPWebApp.Upload.Page_Load(Object sender, EventArgs e)


Any thoughts?
sotero
Top achievements
Rank 1
 answered on 18 Oct 2015
2 answers
316 views

I would like to do one of the following:

1) Set ShowInterval value something like 5000 on RadButton (BtnSubmit here) from Client Side?
2) Assuming I made RadNotification2 as invisible and possible to make it visible from below  or other Client Side Function?

Thanks

gc_0620

______________

 

function CallClientShow() {
                        //    document.getElementById("divshowprocess").style.display = 'inline';
                        var notification = $find("<%=RadNotification2.ClientID %>");
 
                        notification.show();
                    }
                     
                     
                     
                     <telerik:RadButton runat="server" Skin="Silk" ID="Submit" OnClientClicked="CallClientShow" Text="Submit" OnClick="Submit_Click">
                                    </telerik:RadButton>
                                     
                                    <telerik:RadNotification ID="RadNotification2" ShowCloseButton="false" ShowSound="info" runat="server" VisibleOnPageLoad="false"
                                    Position="BottomCenter" Skin="MetroTouch"
                                                 Width="579px" Height="100px" Animation="Slide" EnableRoundedCorners="true" EnableShadow="true"
                                                 Text="Please wait while your request is being processed!!!" KeepOnMouseOver="false" 
                                                 Title="Processing..." ShowTitleMenu="true" OffsetX="-20" OffsetY="-20" AutoCloseDelay="0">
                        </telerik:RadNotification>

 

protected void Submit_Click(object sender, EventArgs e)
        {
           // RadNotification2.Visible = true;
            RadNotification2.Show();
      }

gc_0620
Top achievements
Rank 1
 answered on 17 Oct 2015
2 answers
122 views

In my web app I have a radgrid binded to a EF dbcontext collection.

 Issue is that gridboundcolumn don't check for datatype on  applying filters and entity query is wrong, for example, If user enters 'some text' on a date filter query is raised as:

 "AND (it.lastEditDate = DATETIME'some text')"

and web app crash with "The query syntax is not valid. Near term 'some text', line 6, column 28." The same problem with numeric fields.

What is the right solution for this issue? Thanks!

 Code looks like this:

<telerik:RadGrid ID="RadGrid1" 
    runat="server" 
    CellSpacing="0" 
    DataSourceID="edsMainGrid"
....
<telerik:GridBoundColumn FilterControlWidth="50px" ItemStyle-Wrap="false"  DataField="lastEditDate"
   FilterControlAltText="Filtrar per lastEditDate" HeaderText="lastEditDate" SortExpression="lastEditDate" UniqueName="lastEditDate" ReadOnly="True" DataFormatString="{0:dd/MM/yyyy}">
   <ItemStyle Width="50px" />
</telerik:GridBoundColumn>
...


<ef:EntityDataSource ID="edsMainGrid" runat="server" 
   OnContextCreating="edsMainGrid_ContextCreating"
   EntitySetName="myCollection"
   OnSelecting="edsMainGrid_Selecting" >
</ef:EntityDataSource>

 

Daniel
Top achievements
Rank 1
 answered on 17 Oct 2015
10 answers
547 views
Is there a way to only export the selected rows of a RadGrid?  What I need to do is provide a view of only selected rows -- so I plan to use export to PDF (in a new window) where the user can print the grid contents. 

thanks!
Debbie
Matej
Top achievements
Rank 1
 answered on 16 Oct 2015
2 answers
211 views

Hi,

I cannot drag-n-drop any Telerik control to ​the design or source view of an aspx.

Typing the codes is OK.

I have Telerik ASP AJAX tool (Q1/2014) and VS 2013.

Please give some ideas/directions to fix this issue.

Thank you,

Ed

 

ETS
Top achievements
Rank 1
 answered on 16 Oct 2015
3 answers
63 views

Hi all,

We have an application that opens a modal dialog in IE to open aspx page that uses telerik controls. When using a single session, everything works fine. But using multiple of IE causes the error as in the screen-shot attached. Seems the script resources are not found for the other window but I'm not sure about that.

Any pointers would be appreciated. â€‹

Marin Bratanov
Telerik team
 answered on 16 Oct 2015
22 answers
590 views
hi support group telerik !
I have a proplem when I want to  hide some fields in Advance Edit (or Insert) Form of  Appointment in Control RadScheduler And I can't do it ! So you can help me to do it !

Example , I have declare  a Scheduler1 :
<telerik:RadScheduler runat="server" ID="RadScheduler1"
                    Skin="Office2007"
                    SelectedDate="2007-12-20" DayStartTime="01:00:00" 
                    OverflowBehavior="Scroll" SelectedView="WeekView" CustomAttributeNames="Value,IDColor"
                    EnableCustomAttributeEditing="true" StartEditingInAdvancedForm ="true"                   
                    DataKeyField="ID" DataSubjectField="Subject" DataStartField="Start" DataEndField="End"
                    DataRecurrenceField="RecurrenceRule" DataRecurrenceParentKeyField="RecurrenceParentID"
                    OnAppointmentUpdate="RadScheduler1_AppointmentUpdate" OnAppointmentDelete="RadScheduler1_AppointmentDelete"
                    OnAppointmentInsert="RadScheduler1_AppointmentInsert" OnNavigationComplete="RadScheduler1_NavigationComplete"
                    Height="530px" Width="546px" AllowDelete="true" AllowEdit="true" AllowInsert="true"
                    OnAppointmentClick="RadScheduler1_AppointmentClick" OnAppointmentDataBound="RadScheduler1_AppointmentDataBound"
                    FirstDayOfWeek="Sunday" LastDayOfWeek="Saturday" OnFormCreated="RadScheduler1_FormCreated"   > 
                    <AppointmentTemplate>
                        <a href="#" onclick="return openPopup('/TV/Managerment/pgQuanLyTV.aspx?ID=<%#Eval("ID")%>');">
                           <asp:Image ID="imageWorkItem" ImageUrl="../Images/5.gif" runat="server"  Visible ='<%#(Eval("Value").ToString() == "1")%>' />
                        </a>
                        <%#Eval("Subject")%>                                               
                     </AppointmentTemplate>     
</telerik:RadScheduler>

AND now I want to hide fields Valueand IDColor in Advance Edit (and Insert Form ) . How do I do ? Can You show me !

Thank for help !
Josh
Top achievements
Rank 1
 answered on 16 Oct 2015
4 answers
54 views

Hi All,

I'd like to take the totals that are aggregated in my footer, and place them in the row that's created for my filtering abilities.

Is this possible?

Screenshot shows where I'd like the totals to appear.

 

Thank you!

ww1711
Top achievements
Rank 1
 answered on 16 Oct 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Andrey
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Andrey
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?