I am trying to create a RadGrid which uses the batch edit mode feature but does not use any skin. When I change the Skin property from "Default" to "" the click to edit functionality stops working. I have been able to recreate the issue with a very basic example. Is this a known issue? Is there some sort of Skin="None" that I could use instead of an empty string?
Here is my ASPX
<
telerik:RadGrid
ID
=
"RadGrid1"
runat
=
"server"
Skin
=
""
AutoGenerateColumns
=
"False"
>
<
MasterTableView
CommandItemDisplay
=
"TopAndBottom"
EditMode
=
"Batch"
AutoGenerateColumns
=
"False"
>
<
BatchEditingSettings
EditType
=
"Cell"
/>
<
Columns
>
<
telerik:GridBoundColumn
DataField
=
"Item1"
></
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
DataField
=
"Item2"
></
telerik:GridBoundColumn
>
</
Columns
>
</
MasterTableView
>
</
telerik:RadGrid
>
Here is my C#
protected
void
Page_Load(
object
sender, EventArgs e)
{
if
(!Page.IsPostBack)
{
List<Tuple<
string
,
string
>> source =
new
List<Tuple<
string
,
string
>>();
source.Add(
new
Tuple<
string
,
string
>(
"First Item"
,
"Value1"
));
source.Add(
new
Tuple<
string
,
string
>(
"Second Item"
,
"Value 2"
));
source.Add(
new
Tuple<
string
,
string
>(
"Third Item"
,
"Value 3"
));
RadGrid1.DataSource = source;
RadGrid1.DataBind();
}
}