Telerik Forums
Community Forums Forum
0 answers
91 views
It is not working in the nested Tab Strip.
if i remove Required field validator everything is working
fine but if it is added it is not working. How to fix this issue. i had did lots of
tries to fix the problem but not successful its not working.please help me in this issue.
Anyhelp would be appreciated.
karan
Top achievements
Rank 1
 asked on 14 Aug 2014
1 answer
73 views
I'm just wondering how did you pull my public G+ name when I registered directly through Telerik site (no Google sign-up) ?

Simeon
Telerik team
 answered on 13 Aug 2014
8 answers
237 views
I could really use a full-feature Outlook calendar app for my site.  The Telerik calendar control is fine but that is all it is......a control.  Any plans to create a full outlook-like application for calendaring?
Rumen
Telerik team
 answered on 12 Aug 2014
38 answers
126 views
How can I delete my Telerik account? I have no need for it and would like my profile deactivated and removed from the system.
I cannot find a link anywhere nor instructions on how to delete my account.
Can anyone help?
Thanks.
Joseph
Telerik team
 answered on 12 Aug 2014
2 answers
402 views
I am trying to generate a pdf from a webpage and am able to get the text content, but not images to export. I know there are some settings with HtmlFormatProvider for how to export images, but I have been unable to successfully do this.

Here is what I have so far:

protected void ConvertToPdfButton_Click(object sender, ImageClickEventArgs e)
{
    byte[] buffer = new byte[0];
    string urlToConvert = HttpContext.Current.Request.Url.GetLeftPart(UriPartial.Path);
    string html = string.Empty;
     
    var thread = new Thread(() =>
    {
        PdfFormatProvider provider = new Telerik.Windows.Documents.FormatProviders.Pdf.PdfFormatProvider();
        HtmlFormatProvider htmlProvider = new HtmlFormatProvider();
 
        //Settings
        HtmlImportSettings importSettings = new HtmlImportSettings();
        importSettings.UseHtmlHeadingStyles = true;
        htmlProvider.ImportSettings = importSettings;
 
        var webRequest = HttpWebRequest.Create(urlToConvert);
        RadDocument document;
 
        using (Stream stream = webRequest.GetResponse().GetResponseStream())
        {
            document = htmlProvider.Import(stream);
        }
 
        document.LayoutMode = DocumentLayoutMode.Paged;
        document.EnsureDocumentMeasuredAndArranged();
         
 
        buffer = provider.Export(document);
    });
 
    thread.SetApartmentState(ApartmentState.STA);
    thread.Start();
    thread.Join();
 
    Response.Clear();
    MemoryStream ms = new MemoryStream(buffer);
    Response.ContentType = "application/pdf";
    Response.AddHeader("content-disposition", "attachment;filename=DesignandBuildwithMetal PDF.pdf");
 
    Response.Buffer = true;
    ms.WriteTo(Response.OutputStream);
    Response.End();
}
Stacey
Top achievements
Rank 1
 answered on 07 Aug 2014
0 answers
89 views
HI,to Everyone,and i hope you are all fine. I am Lily Jack, 24 year old, lives in London. And working in [name redacted]..I am very excited to join you all...any one welcome me..?
lily
Top achievements
Rank 1
 asked on 06 Aug 2014
1 answer
60 views
I am looking for blog theme recommendations.  Where is your favorite place to go for themes?

Jennifer
http://fitcoachjenn.com

Ivan D. Dimitrov
Telerik team
 answered on 05 Aug 2014
4 answers
200 views
Hi ,

I'm using telerik rad editor with required field Validator ..

When click submit button it shows Required that is right after entering value in emailbody after i click button only the required is invisible but normal textbox i click outside of the textbox it self required is invisible . 


While click button event only the Required message will visible and invisible  this is happened only Rad editor but other controls while click outside also the required is visible and invisible

Refer your link

http://demos.telerik.com/aspnet-ajax/editor/examples/validators/defaultcs.aspx#qsf-demo-source


     <telerik:RadEditor ID="CorrespondenceAlertEditor" runat="server" OnClientLoad="OnClientLoad"
                        ContentFilters="None" EnableResize="false" Skin="Gray" ToolsFile="~/Contracting/ToolsFile.xml"
                        Width="99%">
                        <CssFiles>
                            <telerik:EditorCssFile Value="~/EditorContent.css" />
                        </CssFiles>
                        <Content>                  
            
                        </Content>
                    </telerik:RadEditor>

    <asp:CustomValidator ID="ctmValrfvEmailBody" runat="server" Text="â—„ Required" ValidationGroup="ClientValidation"
                        Display="Dynamic" ClientValidationFunction="ValidateEditText"></asp:CustomValidator>    


Thanks,
Kannan.


Tony
Top achievements
Rank 1
 answered on 31 Jul 2014
1 answer
198 views
The following code alway returns DataRowView Is Nothing - I could use a little direction on how to find the break...

 

Protected Sub HomeFormView_DataBound(ByVal sender As Object, ByVal e As System.EventArgs)

 

 

    If HomeFormView.CurrentMode = FormViewMode.Insert Then

 

 

        Dim dv As DataRowView = CType(HomeFormView.DataItem, DataRowView)

 

 

        Dim ddlPU As DropDownList = HomeFormView.FindControl("ddlPropertyUnitName")

 

 

        Dim dsc As SqlDataSource = HomeFormView.FindControl("VacantPropertyUnitsSqlDataSource")

 

 

        If Not (dv Is Nothing) Then

 

 

            Dim m As Int32 = dv("PropertyID")

 

            dsc.SelectParameters(

"PropertyID").DefaultValue = m

 

            ddlPU.DataBind()

 

            If Not IsDBNull(dv("PropertyUnitID")) Then

 

            ddlPU.SelectedValue = dv(

"PropertyUnitID")

 

 

            End If

 

 

        End If

 

 

    End If

 

 

End Sub

 

Mia
Top achievements
Rank 1
 answered on 30 Jul 2014
1 answer
261 views
Hi guys !

Is there  a way to load external URLs...EXCEPT Iframe ?

I searched a lot for an answer...but i still dont know...is there a way to load external URLs (different sites) into a div using AJAX ?

Lets say... the URLs are 'launched' by links or button-links...

Thank you !
Ianko
Telerik team
 answered on 24 Jul 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?