I recieve the following javascript error:
"this.get_element()' is null or not an object" on line number 124
Do you have any suggestions on what could be causing this error?
Thanks for any input.
Private Sub RadGrid1_EditCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles RadGrid1.EditCommand
If TypeOf e.Item Is GridDataItem Then
Dim btn_Row_Options As Button = e.Item.FindControl("btn_Row_Options")
btn_Row_Options.Visible = False
Dim btn_Row_Options As Button = DirectCast(e.Item.FindControl("btn_Row_Options"), Button)
btn_Row_Options.Visible = False
End If
End Sub
| <script type="text/javascript"> |
| function SetComboBoxFocus(clientId) { |
| var comboBox = $find(clientId); |
| var input = comboBox.get_inputDomElement(); |
| input.focus(); |
| return false; |
| } |
| </script> |
| Dim _radComboBox As RadComboBox = RadComboBox1 |
| If CheckBox1.Checked Then |
| _radComboBox = RadComboBox2 |
| End If |
| ScriptManager.RegisterStartupScript(Me, Me.GetType, "inlinesetfocus", "SetComboBoxFocus('" & _radComboBox.ClientID & "');", True) |
Posted 2 hours ago (permalink)
Hello Telerik Team,
I have a requirement where i need to bind the Radscheduler to two datasources.Meaning
I have developed a usercontrol which is wrapped in a Sharepoint webpart which consists of a
rad scheduler.As of now my rad scheduler pulls the information from a specific list.
But now i need to pull the information for the appointments not only from a specific list but also from a sql database table.
what is the method i need to follow.
Do i need to use this
Any sample for this is greatly appreciated.
Thank you,
Smith