Telerik Forums
Community Forums Forum
1 answer
109 views

Hi,

   When i m trying to run scripts in RDP and close/minimize the screen scripts are not running in that RDP. Can i get any solution for this please?

 

Thanks & Regards

Srilatha Sapireddi.

Elena
Telerik team
 answered on 18 Apr 2019
5 answers
236 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
103 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.3K+ 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
83 views
Please can you remove this my account? Thank you
Christian
Telerik team
 answered on 04 Feb 2019
2 answers
192 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
202 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
76 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
124 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
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?