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

Hi,

 I have a four page tabstrip and radmultipage with a radgrid on each page.

 I have a user control with an export button in it.

Ajax is turned off for that button.

On the initial page load, the grid does export to excel. But click on the second tab, and the export does not work.  Click on the first initial tab, and the export does not work there.  Debugging shows that the export button in my uc fires off the function with the grid.MasterTableView.ExportToExcel() call.  But the function named in the OnGridExporting RadGrid control does not fire.

 

Any insight would be greatly appreciated!

-John

Kostadin
Telerik team
 answered on 11 Jun 2015
1 answer
131 views

I'm facing 2 issues while using the RadProgressArea :

Firstly, I have a RadAsyncUpload on my page through which I am uploading files and displaying the uploaded files on the same page in a RadGrid. Each line item in the RadGrid is a downloadable file which gets downloaded on click of the link. Now, the problem which I'm facing is, whenever I click on a particular file for download, the RadProgressArea shows up and doensn't go away until I refresh the page. There is no progress indicated in the Progress Area as well.

Even if I'm hiding the Progress Area using Javascript function, it doesn't help as still the Progress Area appears.

 

Secondly, I'm facing a compatibility issue, being the functionality of the Progress Area works best in IE 10,11 and Chrome but not in IE 9, 9(Compatibility Mode).

Whenever I cancel an upload using the RadAsyncUpload - 'Cancel' Button(Runtime Button) while a file is getting uploaded, the ProgressArea still stays on the screen, though the upload is stopped. This happens only in the case of IE9 but not in IE10,11 and Chrome.

Pls. help me sort these appearance issues.

 

 

 

Ivan Danchev
Telerik team
 answered on 11 Jun 2015
6 answers
309 views

do you have an example of radpagelayout in a repeater control?  The Master page is using PageLayout as well.

Thanks, Marty

Peter Filipov
Telerik team
 answered on 11 Jun 2015
6 answers
220 views

Hi,

I am using RadCaptcha in sharepoint 2013.

I used the following code in the ascx WP:

<div class="divCaptcha">         
    <telerik:RadCaptcha ID="RadCaptcha1" runat="server" ValidatedTextBoxID="rcTextBox1" EnableRefreshImage="true"  >
        <CaptchaImage EnableCaptchaAudio="true" RenderImageOnly="true"  BackgroundNoise="Low"></CaptchaImage>
    </telerik:RadCaptcha>

    <div style="float:left">
    <p >Type the code from the image:</p>           
    <asp:TextBox ID="rcTextBox1" runat="server" MaxLength="5" Width="170px"></asp:TextBox>&nbsp;&nbsp;&nbsp;
    <input type="button" title="submit" onclick="CallHandler();" value="submit">
            </div>  
</div>

 
And I define the following in the web.config of the
sharepoint:

   <httpHandlers>
      <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource, Telerik.Web.UI, Version=2015.1.401.45, Culture=neutral, PublicKeyToken=121fae78165ba3d4" verb="*" validate="false" />
</httpHandlers>

 <handlers>
<remove name="Telerik_Web_UI_WebResource_axd"/>
<add name="Telerik_Web_UI_WebResource_axd" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource, Telerik.Web.UI, Version=2015.1.401.45, Culture=neutral, PublicKeyToken=121fae78165ba3d4" verb="*" preCondition="integratedMode" />
</handlers>

 

I click the link to generate new image – nothing happen.

Can you help me?

Slav
Telerik team
 answered on 11 Jun 2015
0 answers
86 views

Hello,

I have been getting Unresponsive Script Error in browser (most often in FF) while executing any request to server. We have used "telerik:RadScriptManager" and "RadAjaxLoadingPanel" in all webpages. Below error occurs randomly and it hangs up the browser.

Error message : "a script on this page may be busy or stopped responding...."

Please find attached screen shot for the same error. It suggests that error is coming from "Telerik.Web.UI.WebResource.axd?_TSM_HiddenFeild_=RadScriptManager1&..."

 

I have been facing this issue recently (without any code change), Please help.

 

Thanks in advance,

Jalak

Jalak
Top achievements
Rank 1
 asked on 11 Jun 2015
2 answers
117 views
Hi,

Is it possible to handle any event if I lose internet connection during uploading of large file?
Uploading freezes if I lost internet connection even for few seconds and doesn't try to reconnect.
OnClientFileUploadFailed event isn't fired in this case.
It would be nice to continue uploading if I repair my internet connection, or at least to show some error.

Best regards,
Dennis
Sangamesh
Top achievements
Rank 1
 answered on 11 Jun 2015
1 answer
74 views

Hi 

I have two datapicker controls datapicker1 & datepicker2.

once I set the date for datepicker1 i have to assign the same date to datepicker2. but here i can not fill the input text. it should show as empty. i have to give user to fill  the date but the datepicker2 calendar should be open as the first datepicker1 date stamp.

example. datepickert1 date : 05-Jun-2010   then

when i click the daterpicker2 calendar icon i should able to open the 05-Jun-2010 and in the input box should be empty until user choose the date from the datepicker2 calender.

how can i achieve this. please respond asap its quiet urgent.

Thx

Eyup
Telerik team
 answered on 11 Jun 2015
1 answer
173 views

I'd like to display the first 30 or so characters of an nvarchar(max) field in my radgrid along with a "Read More ..." type link to display the rest of the datafield.

I'd like the link to either expand the rest of the column to a max width of a few hundred pixels or use javascript to put the data into a window of some sort.

Has anyone done with this before?  If so, please point me the right direction.  Thanks much.

Pavlina
Telerik team
 answered on 11 Jun 2015
2 answers
144 views

<telerik:RadTreeView ID="rtvCarnac" runat="server" Skin="Glow" BackColor="Black" Visible="true"
ForeColor="White" OnNodeDataBound="rtvCarnac_NodeDataBound"  OnNodeClick="rtvCarnac_NodeClick" OnClientDoubleClick="SelectNode" >
</telerik:RadTreeView>

 

 

If I click on node it will firing node click event. If I double click on node it will firing node click event. double click event is not firing. How can i slove this issue???????

Kapavarapu
Top achievements
Rank 1
 answered on 11 Jun 2015
3 answers
127 views

Hello,

I have a radgrid on a page with a custom control as an edit form.

Within the custom control, there is a button which among other things it also adds a record to another radgrid on the same page (not the parent of the custom control). The button closes the custom control with <editedItem.OwnerTableView.ClearEditItems()>.

On which event I must include the rebind command of that second radgrid?

Is there an event which fires when an editform is closed?

 Thanks for your time...

 

 

Eyup
Telerik team
 answered on 11 Jun 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?