or
Dim jscript As String = "javascript:alert('hello');"
e.Appointment.Attributes.Add(
"OnMouseOver", jscript)
Also, when I view the page's source, there are no OnMouseOver attributes.
Can I set an Appointment's OnMouseOver attribute from server-side code?
Thanks,
Michael
<asp:TemplateField HeaderText="Link" SortExpression="sLink"> <ItemTemplate> <asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl='<%# Eval("sLink") %>' Target="_blank" Text='<%# Eval("sTitle") %>'></asp:HyperLink> </ItemTemplate> </asp:TemplateField><telerik:GridTemplateColumn DataField="sLink" HeaderText="Link" UniqueName="sLink"> <ItemTemplate> <asp:LinkButton id="sLink" runat="server" text='<%# Eval("sTitle") %>' CssClass="NoUnderLine"></asp:LinkButton> </ItemTemplate> </telerik:GridTemplateColumn>Our users have a question:
Is there an option that makes combobox compatible for mobile applications?
I really appreciate if someone can send me a link to resources or answer to that question.
Thanks
Protected Sub RadGrid1_InsertCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles RadGrid1.InsertCommand<br> If e.CommandName = RadGrid.InitInsertCommandName Then<br> e.Canceled = True<br> End If<br> End Sub