Hi,
we are having a requirement to use the editor webpart to access the externally hosted html file and modify the changes and preview the design in the webpart. With the help of RADEditor webpart, i can able to write the html and see the preview but dont have an option to access the external HTML (similar to content editor webpart path properties). Is there way to do this?
Regards
Kathir

<Scrolling AllowScroll="true" UseStaticHeaders="true" ScrollHeight="500px"/>
Now, when scrolling is enabled, RadGrid doesn't fit its height to the content, it contains. The height will me much larger than the content itself. As a workaroung, I implemented a client side function Telerik provided on a demo page. The code is
function GridCreated(sender, args) { var scrollArea = sender.GridDataDiv; var dataHeight = sender.get_masterTableView().get_element().clientHeight; if (dataHeight < 500) { scrollArea.style.height = dataHeight + 17 + "px"; } }


| Sim Id | Sim Number | Phone Number | Network |
| 612 | 33333 | 7845698584 | Orange |
| 613 | 5555555555 | 7865984558 | O2 |
| 614 | 77777777777 | 7845898568 | T-Mobile |
| 616 | 6.05643E+19 | 7886400749 | Orange |
| 617 | 4.84783E+19 | 8189428786 | Orange |
| 618 | 7.86511E+19 | 5873120201 | Orange |
| 619 | 2.18533E+19 | 9137077548 | Orange |
| 620 | 4.63874E+19 | 8268437527 | Orange |
| 621 | 5.72428E+19 | 3478728312 | Orange |
| 622 | 4.31133E+19 | 8275787977 | Orange |
| 623 | 2.38482E+18 | 5451253979 | Orange |
| 624 | 6.94754E+19 | 1153142640 | Orange |
| 625 | 4.73383E+19 | 3272183543 | Orange |
| 626 | 9.50517E+19 | 1133185943 | Orange |
| 627 | 4.45572E+19 | 4538341455 | Orange |
| 628 | 3.11145E+19 | 2844557113 | Orange |
| 629 | 3.03666E+19 | 9437130953 | Orange |
| 630 | 9.91132E+19 | 245415386 | Orange |
| 631 | 2.32191E+19 | 5993223235 | Orange |
| 632 | 7.02665E+19 | 5953534740 | Orange |
In an web form 2010 application that I am currently working with, the radeditor is being used. Right now I have one letter being generated at a time. However I want to place 2 to 3 letters within the same varchar(max) column within a sql server database. I would like each letter to print on separate pages.
I have tried html like the following:
<html><body><p>test1</p><p style="page-break-after:always;"></p><p>test2</p><p style="page-break-after:always;"></p><p>test3</p><p style="page-break-after:always;"></p></body></html>
and found everything still prints on the same page.
Thus is there anything within the radeditor that will make the page breaks actually work?

Hi,
I am trying to add a button (pref imagebutton) to each one of the group headers (the row that has the expand/colapse functionality).
The intent is to give such button the ability to remove all the records of that group.
For example:
> Group 1
Row 1
Row 2
Row 3
> Group 2
Row 1
Row 2
I want the button on the "Group" rows, ideally to the right.
I have been researching but only found solutions to add it to each row and to the raid header, but not on the ExpandCollapse row.
Any ideas?
EditMode
="InPlace"
OnNeedDataSource="grdTime_NeedDataSource" (binding the data on server side using EntityFramework)
<Columns>
<telerik:GridDateTimeColumn DataField="StartTime" HeaderButtonType="TextButton" HeaderText="Start Time" ItemStyle-HorizontalAlign="Left" UniqueName="StartTime" ItemStyle-Width="100px" HeaderStyle-Width="100px" ReadOnly="true" DataType="System.DateTime">
</telerik:GridDateTimeColumn>
<telerik:GridDateTimeColumn DataField="EndTime" HeaderButtonType="TextButton" HeaderText="End Time" ItemStyle-HorizontalAlign="Left" UniqueName="EndTime" ItemStyle-Width="100px" HeaderStyle-Width="100px" PickerType="DateTimePicker" DataType="System.DateTime">
</telerik:GridDateTimeColumn>
</Columns>
Getting the "String was not recognized as a valid DateTime." exception on hitting edit button.
Thanks!

Hi,
I have a web service bound scheduler in which click of a navigation button (previous/next/today) does not update Scheduler's popup calendar.
Scheduler shows 10/31/2016 as selected date and on click of next button it navigates to 11/1/2016 .
Scheduler shows 11/1/2016 7:30 AM - 1/2/2016 5:00 PM, however pop up calendar does not highlight 11/1/2016 as selected date.
How can I match scheduler's selected date with highlighted date in scheduler's pop up calendar?
Regards,
Prava