| <telerikInput:RadComboBox x:Name="ctrlParameterValue" Margin="8,0,8,8" IsEditable="True" IsTextSearchEnabled="True" TextSearchMode="StartsWith" Style="{StaticResource AplusCRadComboBoxStyle}" /> |

Hello
I have a small problem of display of my telerik objects on my page asp.net on the browser safari, the display is good on the other browser, chrome, firefox, IE
you have solutions ?
thank you
An unhandled exception was generated during the execution of the
current web request. Information regarding the origin and location of the
exception can be identified using the exception stack trace below.
|
|


I believe this is a bug since it is causing unexpected results.
I have a grid which is bound client-side to a web service. It would appear that datetime columns are being displayed differently, depending on the user's clock settings. In my scenario, my grid has two such columns (declared below).
<telerik:GridDateTimeColumn HeaderText="Svc. Date" DataField="ServiceDate" DataType="System.DateTime" DataFormatString="{0:MM/dd/yy}" AllowFiltering="false">
<HeaderStyle width="80px" HorizontalAlign="Left" BorderStyle="None"></HeaderStyle>
</telerik:GridDateTimeColumn>
<telerik:GridDateTimeColumn HeaderText="Created When" DataField="CreatedWhen" DataType="System.DateTime" DataFormatString="{0:MM/dd/yy hh:mm:ss tt}" AllowFiltering="false">
<HeaderStyle width="140px" HorizontalAlign="Left" BorderStyle="None"></HeaderStyle>
</telerik:GridDateTimeColumn>
For users who are in the Central US timezone, the "ServiceDate" column is showing as one day earlier, and the "CreatedWhen" column is showing as one hour earlier. When they switch their computer clock to Eastern Timezone (the correct zone for the data being retrieved), then the ServiceDate and CreatedWhen columns appear correctly.
Looking at the json being used to bind the grid to, for one row, these are the values being retrieved from the database...
"ServiceDate":"\/Date(1508904000000)\/", "CreatedWhen":"\/Date(1508942284530)\/"
So, it appears whatever mechanism the grid is using to convert these date objects to date literals is using the user's computer settings. Is this true?
I'm not sure this is a good implementation. The data being retrieved from the database is intended to be displayed as is. Any manipulations to customize for user timezone should be handled by the developer. After all, the grid does not know what timezone the data being retrieved is in, so how does it know how to convert to the user's local machine timezone?
In this case, the data being retreived was in Eastern US timezone. So, a date of '10/24/17', for instance, was being displayed as '10/23/17' (one hour earlier than 10/24/17 00:00:00, assumedly)
So, is there any way to prevent this behavior?

Hi,
While i try to edit my rad editor it through an error Cannot read property 'replace' of undefined.
Please help me.
Thanks,
Rajiv
Hello, I'm currently implementing infinite scroll/load more functionality for news articles on our website. Do you have any documentation or advice on how we can initialize the RadSocialShare control client-side? I can load the initial batch of articles with their respective RadSocialShare controls, but because we're adding load more, we don't have the title and url to share until the user scrolls to the bottom of the page. Is there a way to find out which components we need in order to wire up RadSocialShare controls for the subsequent batches of articles?
Thanks!

I have a hyperlink within a Radgrid which opens up a RadWindow for the user.
<telerik:GridTemplateColumn HeaderText="Id" ReadOnly="true" SortExpression="Lookup" UniqueName="Lookup">
<ItemTemplate>
<asp:HyperLink ID="hlWorkOrderId" Text='<%#Eval("Lookup")%>' NavigateUrl='<%#String.Format("javascript:openWindow({0});", Eval("WorkOrderId"))%>' Enabled='<%#String.IsNullOrEmpty(CurrentUser).Equals(False).ToString%>' runat="server" />
</ItemTemplate>
</telerik:GridTemplateColumn>
The user is requesting that when they click on the hyperlink, they want that row in the grid highlighted. How can I pass the selected row index to the javascript function in the Hyperlink?
