| ((Image)myRow["Chart"].FindControl("imgChart")).ImageUrl = "~/Reports/cst/ListBar.aspx?pl=" + perflevel.ToString() + "&ss=" + myValue[0].ToString(); |
| <div id="RadAjaxPanel1Panel"> |
| <div id="RadAjaxPanel1" class="cssclass"> |
| <!-- Content Goes Here --> |
| </div> |
| </div> |
RadScriptManager
.RegisterStartupScript(this.Page, Page.GetType(), "PopUpAlert", "javascript:FnPopupAlert();", true);
function FnPopupAlert()
{
radalert(
"Hi",400,30);
return false;
}
When i run the page an javascript undefined error is coming. Please tell what could be the reason for this because when i remove the radalert line from the function everything works fine.<asp:ScriptReference Path="~/Scripts/Common/Core.js" />
<asp:ScriptReference Path="~/Scripts/Common/Animation/AnimationScripts.js" />
<asp:ScriptReference Path="~/Scripts/Common/Navigation/NavigationScripts.js" />
<asp:ScriptReference Path="~/Scripts/Common/Popup/PopupScripts.js" />
<asp:ScriptReference Path="~/Scripts/Ajax/Ajax.js" />
<asp:ScriptReference Path="~/Scripts/Grid/RadGridScripts.js" />
<asp:ScriptReference Path="~/Scripts/Menu/RadMenuScripts.js" />
<asp:ScriptReference Path="~/Scripts/Menu/ContextMenu/RadContextMenuScripts.js" />
<asp:ScriptReference Path="~/Scripts/Splitter/RadPane.js" />
<asp:ScriptReference Path="~/Scripts/Splitter/RadSlidingPane.js" />
<asp:ScriptReference Path="~/Scripts/Splitter/RadSlidingZone.js" />
<asp:ScriptReference Path="~/Scripts/Splitter/RadSplitBar.js" />
<asp:ScriptReference Path="~/Scripts/Splitter/RadSplitter.js" />
<asp:ScriptReference Path="~/Scripts/Splitter/SplitterItem.js" />
<asp:ScriptReference Path="~/Scripts/Splitter/SplitterPaneBase.js" />
<asp:ScriptReference Path="~/Scripts/TabStrip/RadTabStripScripts.js" />
<asp:ScriptReference Path="~/Scripts/TabStrip/MultiPage/RadMultiPageScripts.js" />
<asp:ScriptReference Path="~/Scripts/TreeView/RadTreeViewScripts.js" />
Kind regards,
Rob
After selecting a date from the Date Picker calendar pop up, the control loses the focus. By default, shouldn't the focus return back to the input area?
If not, how can I set the focus back to the Rad Date Picker's associated input area?
I've tried the following javascript after the DateSelected event, but the focus method is not recognized:
| <script type="text/javascript"> |
| function SetDatePickerFocus() |
| { |
| var datePicker = window["<%= RADDatePicker1.ClientID %>"]; |
| datePicker.Focus(); |
| } |
| </script> |
AutoGenerateColumns
="True"
it works ok but When I define
AutoGenerateColumns
="False"
and defines columns throws
An error occurred during the processing of . Type 'Telerik.Web.UI.GridBoundColumn' does not have a public property named 'GridBoundColumn'
any idea???