Hello,
Is there a client-side event for when a RadPageView has finished loading? What I'm looking to do is when a RadTab is clicked for the specified RadPageView, I want to display a "loading..." message while the RadPageView's contentURL loads then hide it once the loading has finished.

Hello,
I have come across a problem with the editor when set NewLineMode="Br" and try to align text..
We have recently upgraded the telerik controls from V 2013 to V 2015.2.623.45.
After upgrade new version that some functionality are messed up.
When I type some text in the editor with enter then html will generate as below.
test<br><br>test<br><br>test<br><br>test<br><br>test
Now lets say the I want to set the alignment to center for the middle line of
text on Design mode
Then this happens over HTML view:
<p style="text-align: center;">test<br><br>test<br><br>test<br><br>test<br><br>test</p>
Which of cause means that all the text is aligned to center
However I just need centering the middle line which I had my cursor on.
This can easily be reproduced on your demo site as well(Chrome and IE 11 browser).
refer link : http://screencast.com/t/y4VEIHvlvM
Is there any fix or workaround for this issue?
Please suggest.
Thanks.

HI
I’m trying to determine the column of a cell.
I have a _ItemDataBound event in my code where I change the color of the cell based of the value (.text) …no big deal.
But now I need to determine in which column a cell is. Because I need to call a stored procedure to get some additional values, but I just need to do that for all rows of one column and not for all of them.
How can I determine if a cell is in the column where I have to call the procedure?
Thanks for any hint
Best regards
Dennis
Hi
I am trying to get the reference of a link button from a template column based the row index. Ideally upon getting the control i want to call the custom command associated with that button on that row. Can you please let me know how to achieve this in the below code.
var row = $find("<%=rgmyGrid.ClientID %>").get_masterTableView().get_dataItems()[rowIndex];
var lnkBtn= row.findcontrol("lBtnMyLinkButton")
lnkBtn.fireCommand("ReleaseORTakeControl");​


We have custom inline editable grid, on button postback populating rad grid with some text box and label's, till 149 records in grid everything working fine, but on 150th record page is throwing error on hosting environment, error is sys.WebForms.PageRequestMangerServerErrorException, returning code 500. Please suggest if anyone have any idea
Hello Telerik team.
I'm using Telerik 2014.1.403.40 version.
It looks today of speicalday property time is depends on server time.
My PC location timezone is UTC +09:00 (Seoul)
and Web Serv timezone is UTC -08:00 Pacific Time (US&Canada).
When I open the Dateopicker popup, today marked 7/28 but actual today is 7/29.
I would like to set today time correctly.
Here's my code
01.<telerik:RadDatePicker ID="RadDatePickerDateFrom" runat="server" Calendar-FastNavigationStep="12" Calendar-ShowRowHeaders="false" Width="100%" TabIndex="12">02. <Calendar ID="CalendarDateFrom" runat="server">03. <FastNavigationSettings EnableTodayButtonSelection="true" />04. <SpecialDays>05. <telerik:RadCalendarDay Repeatable="Today" ItemStyle-BackColor="Yellow" />06. </SpecialDays>07. </Calendar>08. <DateInput AutoCompleteType="Disabled" ID="DateInputDateFrom" runat="server" DateFormat="M/d/yyyy" SelectionOnFocus="SelectAll" />09.</telerik:RadDatePicker>