I have a DropdownList in my gridview. now I don't want to click on the edit button for update my data. I just want click on the field and then the dropdown list shows to me. after that I select the value update my data.
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="Id">
<Columns>
<asp:BoundField DataField="Id" HeaderText="Id" ReadOnly="True" SortExpression="Id" />
<asp:BoundField DataField="Title" HeaderText="Title" SortExpression="Title" />
<asp:BoundField DataField="StudentId" HeaderText="StudentId" SortExpression="StudentId" />
<asp:TemplateField HeaderText="AttendanceStatus" SortExpression="AttendanceStatus">
<ItemTemplate>
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem Value="0">Absent</asp:ListItem>
<asp:ListItem Value="1">Present</asp:ListItem>
</asp:DropDownList>
</ItemTemplate>
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# Bind("AttendanceStatus") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Mark">
<ItemTemplate>
<asp:Label ID="lbl_Text1" runat="server" Text='<%# Bind("Mark") %>'></asp:Label>
<asp:TextBox ID="txt_Text1" runat="server" Text='<%# Bind("Mark") %>' CssClass="hideControl"
AutoPostBack="true" OnTextChanged="Change"></asp:TextBox>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
<style type="text/css">
.hideControl {
display: none;
}
</style>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript">
$(function () {
$('[id*=GridView1] tr td').on('click', function () {
if ($(this).index() > 1) {
$('[id*=GridView1] tr td').each(function () {
if ($(this).index() > 1) {
$(this).find('span').show();
$(this).find('input[type=text]').hide();
$(this).find('span').html($(this).find('input[type=text]').val());
}
});
var val = $(this).find('span').html();
$(this).find('span').hide();
$(this).find('input[type=text]').val(val);
$(this).find('input[type=text]').show();
$(this).find('input[type=text]').focus();
}
});
});
</script>
protected void Page_Load(object sender, EventArgs e)
{
if (!this.IsPostBack)
{
BindGrid();
}
}
private void BindGrid()
{
string constr = ConfigurationManager.ConnectionStrings["NorthwindConnectionString"].ConnectionString;
using (SqlConnection con = new SqlConnection(constr))
{
using (SqlCommand cmd = new SqlCommand("SELECT * FROM EDU_Lesson2", con))
{
using (SqlDataAdapter da = new SqlDataAdapter(cmd))
{
DataTable dt = new DataTable();
da.Fill(dt);
GridView1.DataSource = dt;
GridView1.DataBind();
}
}
}
}
protected void Change(object sender, EventArgs e)
{
TextBox txtMark = sender as TextBox;
GridViewRow row = (GridViewRow)txtMark.NamingContainer;
string query = "UPDATE EDU_Lesson2 SET Mark = @Mark WHERE Id = @Id";
string constr = ConfigurationManager.ConnectionStrings["NorthwindConnectionString"].ConnectionString;
using (SqlConnection con = new SqlConnection(constr))
{
using (SqlCommand cmd = new SqlCommand(query, con))
{
cmd.Parameters.AddWithValue("@Mark", txtMark.Text);
cmd.Parameters.AddWithValue("@Id", row.Cells[0].Text);
con.Open();
cmd.ExecuteNonQuery();
con.Close();
}
}
BindGrid();
}
how can I do this?