hello,
I have a problem pressing the GridEditCommandColumn edit a radgrid, although I have turned off the bone postback is executed by the client side like the button performs the postback edit.
how to disable the postback in GridEditCommandColumn pressing edit.
code fragment:
I have a problem pressing the GridEditCommandColumn edit a radgrid, although I have turned off the bone postback is executed by the client side like the button performs the postback edit.
how to disable the postback in GridEditCommandColumn pressing edit.
code fragment:
<
radG:RadGrid
ID
=
"RadGrid1"
runat
=
"server"
GridLines
=
"None"
HierarchyLoadMode
=
"Client"
Width
=
"1600px"
ShowStatusBar
=
"true"
AllowPaging
=
"True"
AllowSorting
=
"True"
AutoGenerateColumns
=
"False"
Skin
=
"Bus"
>
<
PagerStyle
Mode
=
"NumericPages"
></
PagerStyle
>
<
ClientSettings
AllowDragToGroup
=
"True"
AllowGroupExpandCollapse
=
"True"
AllowExpandCollapse
=
"true"
>
<
Selecting
AllowRowSelect
=
"True"
></
Selecting
>
</
ClientSettings
>
<
MasterTableView
Width
=
"100%"
AllowPaging
=
"true"
HierarchyLoadMode
=
"Client"
DataKeyNames
=
"CustomerID"
AllowMultiColumnSorting
=
"True"
AllowAutomaticDeletes
=
"true"
>
<
DetailTables
>
<
radG:GridTableView
DataKeyNames
=
"OrderID"
Name
=
"Orders"
Width
=
"100%"
GridLines
=
"Horizontal"
AllowAutomaticUpdates
=
"true"
EditMode
=
"InPlace"
>
<
Columns
>
<
radG:GridEditCommandColumn
FooterText
=
"Edit"
UniqueName
=
"EditCommandColumn"
ButtonType
=
"ImageButton"
EditImageUrl
=
"../../img/b_editar_1.gif"
HeaderText
=
"Edit"
HeaderStyle-Width
=
"100px"
UpdateText
=
"Edit"
>
</
radG:GridEditCommandColumn
>