Hello:
I'm having an issue after updated my applications to the latest telerik dll,
If im Using Client setting AllowRowSelect true, when I edit a row I cannot click on the text boxes, is this a bug or i have to do something extra in order to keep everything working.
My grid configuration looks like this
Thks in advance ;)
I'm having an issue after updated my applications to the latest telerik dll,
If im Using Client setting AllowRowSelect true, when I edit a row I cannot click on the text boxes, is this a bug or i have to do something extra in order to keep everything working.
My grid configuration looks like this
<
telerik:RadGrid
runat
=
"server"
ID
=
"gv"
PageSize
=
"10"
Skin
=
"Office2007"
AllowSorting
=
"true"
AllowMultiRowSelection
=
"true"
AllowPaging
=
"True"
ShowGroupPanel
=
"false"
HeaderStyle-HorizontalAlign
=
"Center"
AutoGenerateColumns
=
"false"
AllowAutomaticDeletes
=
"false"
AllowAutomaticInserts
=
"false"
AllowAutomaticUpdates
=
"false"
OnNeedDataSource
=
"gvNeedDataSource"
OnRowDrop
=
"gvRowDrop"
OnPreRender
=
"gvPreRender"
OnDetailTableDataBind
=
"gvDetailTableDataBind"
OnItemDataBound
=
"gvItemDataBound"
OnUpdateCommand
=
"gvItemUpdated"
OnDeleteCommand
=
"gvDeleteCommand"
OnItemInserted
=
"gvItemInserted"
OnInsertCommand
=
"gvInsertCommand"
>
<
PagerStyle
Mode
=
"NextPrevAndNumeric"
/>
<
ClientSettings
AllowRowsDragDrop
=
"True"
AllowColumnsReorder
=
"false"
ReorderColumnsOnClient
=
"false"
EnableRowHoverStyle
=
"false"
>
<
Resizing
AllowColumnResize
=
"false"
/>
<
Selecting
AllowRowSelect
=
"true"
EnableDragToSelectRows
=
"false"
/>
<
Scrolling
AllowScroll
=
"false"
UseStaticHeaders
=
"false"
/>
</
ClientSettings
>
<
MasterTableView
Name
=
"gv1"
CommandItemDisplay
=
"Top"
EditMode
=
"InPlace"
DataKeyNames
=
"ID"
>
<
Columns
>
<
telerik:GridBoundColumn
UniqueName
=
"Description"
SortExpression
=
"Description"
HeaderText
=
"Description"
HeaderButtonType
=
"TextButton"
DataField
=
"Description"
HeaderStyle-Width
=
"150px"
ItemStyle-HorizontalAlign
=
"Center"
></
telerik:GridBoundColumn
>
</
MasterTableView
>
</
telerik:RadGrid
>
Thks in advance ;)