or
function
OnClientCheckFinishedHandler(sender, args) {
args.suppressCompleteMessage(
true
);
//prevent the alert
console.log(
'Spell check is complete'
);
}
function
OnClientCheckFinishedHandler(sender, args) {
args.suppressCompleteMessage =
true
;
//prevent the alert
console.log(
'Spell check is complete'
);
}
<
telerik:RadGrid
ID
=
"RadGrid1"
runat
=
"server"
AllowAutomaticDeletes
=
"True"
AllowAutomaticInserts
=
"True"
AllowAutomaticUpdates
=
"True"
AllowSorting
=
"True"
DataSourceID
=
"SqlDataSource1"
ShowGroupPanel
=
"True"
AutoGenerateEditColumn
=
"True"
ShowStatusBar
=
"True"
AutoGenerateColumns
=
"False"
CellSpacing
=
"-1"
GridLines
=
"Both"
AllowMultiRowEdit
=
"True"
>
<
ExportSettings
>
<
Pdf
PageWidth
=
""
>
</
Pdf
>
</
ExportSettings
>
<
ClientSettings
AllowDragToGroup
=
"True"
Selecting-AllowRowSelect
=
"True"
>
<
Selecting
AllowRowSelect
=
"True"
></
Selecting
>
</
ClientSettings
>
<
MasterTableView
AutoGenerateColumns
=
"False"
DataSourceID
=
"SqlDataSource1"
CommandItemDisplay
=
"Top"
DataKeyNames
=
"Id"
>
<
Columns
>
<
telerik:GridBoundColumn
DataField
=
"Id"
FilterControlAltText
=
"Filter Id column"
HeaderText
=
"Id"
SortExpression
=
"Id"
UniqueName
=
"Id"
DataType
=
"System.Int32"
ReadOnly
=
"True"
Visible
=
"False"
>
</
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
DataField
=
"Whs"
FilterControlAltText
=
"Filter Whs column"
HeaderText
=
"Whs"
SortExpression
=
"Whs"
UniqueName
=
"Whs"
>
</
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
DataField
=
"ItemNo"
FilterControlAltText
=
"Filter ItemNo column"
HeaderText
=
"ItemNo"
SortExpression
=
"ItemNo"
UniqueName
=
"ItemNo"
>
</
telerik:GridBoundColumn
>
<
telerik:RadPageView
ID
=
"radPage1"
runat
=
"server"
>
<
telerik:RadAjaxPanel
ID
=
"RadAjaxPanel3"
runat
=
"server"
EnableAJAX
=
"True"
LoadingPanelID
=
"RadAjaxLoadingPanel1"
ClientEvents-OnRequestStart
=
"onRequestStart"
>
<
table
width
=
"100%"
cellpadding
=
"0"
cellspacing
=
"0"
>
<
tr
>
<
td
style
=
"width: 50%"
>
<%-- <
telerik:RadAjaxPanel
ID
=
"RadAjaxPanel4"
runat
=
"server"
EnableAJAX
=
"True"
LoadingPanelID
=
"RadAjaxLoadingPanel1"
ClientEvents-OnRequestStart
=
"onRequestStart"
> --%>
<
telerik:RadGrid
ID
=
"radGrid"
runat
=
"server"
AllowSorting
=
"true"
AllowFilteringByColumn
=
"False"
OnNeedDataSource
=
"grdUnResolvedFaxes_NeedDataSource"
Skin
=
"Metro"
CellSpacing
=
"0"
GridLines
=
"None"
Width
=
"99%"
PageSize
=
"12"
OnItemCommand
=
"grdUnResolvedFaxes_ItemCommand"
EnableViewState
=
"true"
>....
.....
.....
</
telerik:RadGrid
>
<%-- </
telerik:RadAjaxPanel
> --%>
</
td
>
<
td
style
=
"width: 50%"
>
<
telerik:RadPanelBar
runat
=
"server"
ID
=
"pnlBar"
ExpandMode
=
"MultipleExpandedItems"
Width
=
"99%"
Visible
=
"false"
>
<
Items
>
.................
</
Items
>
</
telerik:RadPanelBar
>
</
td
>
</
tr
>
</
table
>
</
telerik:RadAjaxPanel
>
</
telerik:RadPageView
>
if (e.CommandName.ToLower() == "select")
{
RadAjaxPanel4.ResponseScripts.Add(String.Format("$find('{0}').ajaxRequest();", RadAjaxPanel3.ClientID));
}