Telerik Forums
Community Forums Forum
5 answers
249 views
Hi,

Is there any tool in Telerik Library for HTML - PDF conversion. Because I've tried iTextSharp and AbcPDF but they are not parsing the HTML generated by RADEditor, for example RADEditor generates <BR/> for line break but AbcPDF recognizes <BR />,  a space is need between <BR and />. <Table> and <TBODY> are also unknow for these two APIs.

So is there any convertor in Telerik Library.

Ali
Dominic
Top achievements
Rank 1
 answered on 25 Mar 2019
1 answer
116 views

When I search for Telerik stuff on google I get links in the form https://docs.telerik.com/devtools/winforms/api/html/m_telerik_underscore_delimited_path.htm, but you have updated your site, so the links should be in the form https://docs.telerik.com/devtools/winforms/api/telerik.dot.delimited.path.html. Even your internal search feature relies on Google search. They seem to be lazy about updating the links, or (more likely) there is something wrong on your side. You should fix it, so that Google becomes your friend again...

Even Wayback Machine is not aware of the changes...

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 26 Feb 2019
0 answers
1.1K+ views

I am using UI for ASP.NET MVC Grid.

I need to export editable grid data into excel and then import on same grid for some data manipulation

But I have restriction not to export the footer row and having 15 visible column out of which 6 column need not to exported.

After doing a lot of research I found this way I can only export without footer  but could not able achieve removing  desired column in gird data export.

function ExportToExcel(e) {

         var rows = e.workbook.sheets[0].rows;
       
        var newRows = []
        for (var ri = 0; ri < rows.length; ri++) {
            var row = rows[ri];
                        
            //row.hideColumn.hideColumn("Col1");
            //row.hideColumn.hideColumn("Col2");
            //row.hideColumn.hideColumn("Col3");
            //row.hideColumn.hideColumn("Col4");
            //row.hideColumn.hideColumn("Col5");
            //row.hideColumn.hideColumn("Comments");
            if (row.type !== "group-footer" && row.type !== "footer") {
               
                newRows.push(row)
            }
        }
        e.workbook.sheets[0].rows = newRows
       
    }

Kindly post your solution with sample code  to remove desired columns from gird while export along with removing footer row.

Please let me know if any more detail needed. in the code above commented code is just example one of the example how many way I tried but not succeeded.

 

Thank you


ASPN
Top achievements
Rank 1
 asked on 26 Feb 2019
5 answers
1.4K+ views
Hi,

I'm an IT & Computer Sciences student from Tunisia,

Last summer, with the old version of Telerik site, I found a link in FAQ saying that Telerik is presenting lower prices for students if they are able to proove that their are really students.

The problem is that I'm not able to find that link anymore and I don't know if Telerik is still giving those lower prices.

If anyone knows, please tell me.

Thanks in advance..
Charles
Top achievements
Rank 1
 answered on 12 Feb 2019
5 answers
87 views
Please can you remove this my account? Thank you
Christian
Telerik team
 answered on 04 Feb 2019
2 answers
198 views

Hi All,

We have a web application with multiple requirements and need assistance with RADCONTROLS 

If this is something your comfortable with please contact me with availability via email or call

 

Email: Kai@dnkenterprise.com

Mobile: +447511442700

SKYPE Email: kkvaja@gmail.com

Rabbani
Top achievements
Rank 1
 answered on 01 Feb 2019
7 answers
231 views
You have not implemented edit/update ability of questions. Please provide this option because sometimes it is strongly needed.
Dimo
Telerik team
 answered on 22 Jan 2019
0 answers
94 views
Hi everyone, I'd like to introduce myself. I am John and I live in the Netherlands. I want to share my experiences with Telerik with you and maybe discuss some coding, so that's why I'm here. I work for a company that is making an application to help people with suicidal thoughts. 

What do you guys do for a living? And where do u live?

John
Top achievements
Rank 1
 asked on 21 Jan 2019
5 answers
135 views

Hi,

I am using UI for ASP.NET MVC Grid.

with the gird option .Scrollable(scrollable => scrollable.Virtual(true)).

There are grid event like

.Events(events => events.Change("onNoDiscountGridChange"))

.Events(events => events
                                        .DataBound("onNoDiscountGridDataBound")
                                        .Save("onNoDiscountGridSave")
                                        .Edit("onNoDiscountGridEdit").

 

We have requirement scenario that we can dynamically add as many rows user want.

After user successful add row in grid  and start entering in it based on this input we need to get data from back end and fill the gird row with the return value.

So when user complete entering input in text box and click tab key ,the scroll bar is visible. After the onNoDiscountGridChange metod is called scroll bar not remain on same position in scroll up and edit row goes hide.

to deal with situation calling scroll()  ,have applied below code in onNoDiscountGridChange() but not working at all.

Please suggest what is the solution to keep grid scrollbar at same position during cell edit on change.

 

function scroll() {
        var grid = $('#gridNodiscount').data('kendoGrid');
        if (grid.content.data('kendoMobileScroller')) {
            grid.content.data('kendoMobileScroller').animatedScrollTo(0, -1 * grid.select().position().top);
        } else {
            grid.content.animate({
                scrollTop: grid.select().position().top
            }, 400);
        }
    }

 

We are also calling  scroll method in the onNoDiscountGridSave and onNoDiscountGridDataBound(arg) method

function onNoDiscountGridSave(e) {
        isCostChanged = true;
        this.refresh();
       
        scroll();
    }

Please let me know if any more clarification needed.

 

Thanks

 

 


 

Tsvetomir
Telerik team
 answered on 21 Jan 2019
10 answers
325 views
What's with Telerik Control Panel? I'm unable to open it since yesterday on two different machines getting "Failed to retrieve data from Telerik web service" error message:

Application Version: 2014.3.1118.1
Description: Failed to retrieve data from Telerik web service
Details:
Telerik.CommonInstaller.ProductVersionService.ProductVersionServiceException: Failed to retrieve data from ProductVersionService. ---> System.Configuration.ConfigurationErrorsException: An error occurred creating the configuration section handler for system.serviceModel/bindings: Could not load file or assembly 'System.ServiceModel.Internals, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified. ---> System.IO.FileNotFoundException: Could not load file or assembly 'System.ServiceModel.Internals, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.
   at System.ServiceModel.Configuration.ConfigurationHelpers.UnsafeGetAssociatedSection(ContextInformation evalContext, String sectionPath)
   at System.ServiceModel.Configuration.ExtensionsSection.UnsafeLookupCollection(String collectionName, ContextInformation evaluationContext)
   at System.ServiceModel.Configuration.BindingsSection.UpdateBindingSections(ContextInformation evaluationContext)
   at System.ServiceModel.Configuration.BindingsSection.get_Properties()
   at System.Configuration.ConfigurationElement.Reset(ConfigurationElement parentElement)
   at System.Configuration.MgmtConfigurationRecord.CreateSection(Boolean inputIsTrusted, FactoryRecord factoryRecord, SectionRecord sectionRecord, Object parentConfig, ConfigXmlReader reader)
   at System.Configuration.BaseConfigurationRecord.CallCreateSection(Boolean inputIsTrusted, FactoryRecord factoryRecord, SectionRecord sectionRecord, Object parentConfig, ConfigXmlReader reader, String filename, Int32 line)
   --- End of inner exception stack trace ---
   at Telerik.CommonInstaller.ProductVersionService.ProductVersionServiceWrapper.RetryExecuteWebServiceCall(Action webServiceCall)
   at Telerik.CommonInstaller.ProductVersionService.ProductVersionServiceWrapper.TryExecuteWebServiceCall(Action webServiceCall, Boolean isCritical)
   --- End of inner exception stack trace ---
   at Telerik.CommonInstaller.ProductVersionService.ProductVersionServiceWrapper.TryExecuteWebServiceCall(Action webServiceCall, Boolean isCritical)
   at Telerik.CommonInstaller.ProductVersionService.ProductVersionServiceWrapper.GetExecuteWebServiceCallResult[T](Func`1 webServiceCall, Boolean isCritical)
   at Telerik.CommonInstaller.ProductVersionService.ProductVersionServiceWrapper.StartApplicationSession(String collectionCode, Guid machineGuid)
   at Telerik.CommonInstaller.Application.Services.SessionService.StartSession(String collectionCode)
   at Telerik.CommonInstaller.InstallerUIBase.ApplicationBase.OnStartup(StartupEventArgs e)
   at System.Windows.Application.<.ctor>b__1(Object unused)
   at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
   at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)

Gary Davis
Top achievements
Rank 2
 answered on 17 Jan 2019
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?