Hi,
This is my scenario. I have a ASPxGridView with a number of columns. The first column is a GridViewDataTextColumn with a ASPxCheckBox control. Druing the
OnCheckedChanged event, I identify the row using visible index and perform some db operations. This grid also has filtering enabled. My issue is that, if the
grid is not filtered, when checking/unchecking the checkbox, the OnCheckedChanged event is fired. But when I apply some filtering by entering some text in the "Name" column, the OnCheckedChanged does not fire (at times). Can you please give me some inputs regarding this? Also an example similar to this would be most helpful.
Given below is a simplified version of what I have in my project.
<dxwgv:ASPxGridView ID="GV_List" ClientInstanceName="GV_List" runat="server"
AutoGenerateColumns="False" KeyFieldName="ContentKey" Width="100%" >
<Settings ShowFilterRow="true" ShowFilterRowMenu="true" ShowTitlePanel="true" />
<SettingsText Title="Manage" />
<Styles AlternatingRow-BackColor="#efefef" Header-HorizontalAlign="Center"/>
<Columns>
<dxwgv:GridViewDataTextColumn Caption="Display" FieldName="DisplayIndicator" VisibleIndex="0" >
<DataItemTemplate>
<dxe:ASPxCheckBox ID="cbDisplayIndicator" runat="server" AutoPostBack="true"
ClientInstanceName='<%# string.Format("check_{0}_{1}", Eval("Key"), Eval("Type"))%>'
ValueType="System.String" ValueChecked="1" ValueUnchecked="0"
Checked='<%# System.Convert.ToBoolean(Eval("DisplayIndicator")) %>'
OnCheckedChanged="DisplayIndicator_CheckedChanged">
</dxe:ASPxCheckBox>
</DataItemTemplate>
<CellStyle HorizontalAlign="Center"/>
</dxwgv:GridViewDataTextColumn>
<dxwgv:GridViewDataTextColumn Caption="Name" FieldName="Name" VisibleIndex="1">
<Settings AutoFilterCondition="Contains" />
</dxwgv:GridViewDataTextColumn>
</Columns>
<Settings ShowFooter="true" ShowGroupPanel="True" />
</dxwgv:ASPxGridView>
protected void DisplayIndicator_CheckedChanged(object sender, EventArgs e)
{
ASPxCheckBox checkbox = (ASPxCheckBox)sender;
string sCheckValue = checkbox.Value.ToString();
GridViewDataItemTemplateContainer container = checkbox.NamingContainer as GridViewDataItemTemplateContainer;
int rowIndex = container.VisibleIndex;
string _key = GV_IndicatorList.GetRowValues(rowIndex, new string[] { "Key" }).ToString();
string _type = GV_IndicatorList.GetRowValues(rowIndex, new string[] { "Type" }).ToString();
// Things to be done w/ _key & _type
}
Please let me know if you have any questions.
PS - I am using DevExpress v9.2.6.0
Thanks,
Karthik
Hello Karthik,
Thank you for your report. I am afraid it is unclear to me how to reproduce the issue so our developers can examine it. Is it possible for you to provide me with step-by-step instructions? I am asking this because I need to know how you bind the grid.
In any case, I can suggest you use the approach from the How to update a Boolean field using the ASPxCheckBox in a DataItem template example, demonstrating how to perform a custom operation when the checkbox control contained in the DataItem template is checked.
Please examine it, and let me know if it suits you better.
Thanks,
Vest
Hi Vest,
Thanks for your inputs. I have given below the complete page now, excluding the master page related stuff.
<dxwgv:ASPxGridView ID="GV_List" ClientInstanceName="GV_List" runat="server"
AutoGenerateColumns="False" KeyFieldName="ContentKey" Width="100%" >
<Settings ShowFilterRow="true" ShowFilterRowMenu="true" ShowTitlePanel="true" />
<SettingsText Title="Manage" />
<Styles AlternatingRow-BackColor="#efefef" Header-HorizontalAlign="Center"/>
<Columns>
<dxwgv:GridViewDataTextColumn Caption="Display" FieldName="DisplayIndicator" VisibleIndex="0" >
<DataItemTemplate>
<dxe:ASPxCheckBox ID="cbDisplayIndicator" runat="server" AutoPostBack="true"
ClientInstanceName='<%# string.Format("check_{0}_{1}", Eval("Key"), Eval("Type"))%>'
ValueType="System.String" ValueChecked="1" ValueUnchecked="0"
Checked='<%# System.Convert.ToBoolean(Eval("DisplayIndicator")) %>'
OnCheckedChanged="DisplayIndicator_CheckedChanged">
</dxe:ASPxCheckBox>
</DataItemTemplate>
<CellStyle HorizontalAlign="Center"/>
</dxwgv:GridViewDataTextColumn>
<dxwgv:GridViewDataTextColumn Caption="Name" FieldName="Name" VisibleIndex="1">
<Settings AutoFilterCondition="Contains" />
</dxwgv:GridViewDataTextColumn>
</Columns>
<Settings ShowFooter="true" ShowGroupPanel="True" />
</dxwgv:ASPxGridView>
.aspx.cs
-----------
protected void Page_Load(object sender, EventArgs e)
{
if ((!Page.IsPostBack) || (Page.IsCallback))
{
BuildList();
}
}
protected void BuildList() {
dbAccess dbData = new dbAccess();
dbData = new dbAccess();
DataSet dataset = new DataSet();
dataset = dbData.getDataSetwithStoredProc("IND_List");
GV_List.DataSource = dataset;
GV_List.DataBind();
}
protected void DisplayIndicator_CheckedChanged(object sender, EventArgs e)
{
ASPxCheckBox checkbox = (ASPxCheckBox)sender;
string sCheckValue = checkbox.Value.ToString();
GridViewDataItemTemplateContainer container = checkbox.NamingContainer as GridViewDataItemTemplateContainer;
int rowIndex = container.VisibleIndex;
string _key = GV_IndicatorList.GetRowValues(rowIndex, new string[] { "Key" }).ToString();
string _type = GV_IndicatorList.GetRowValues(rowIndex, new string[] { "Type" }).ToString();
// Things to be done w/ _key & _type
}
Steps to reproduce:
When the grid loads for the first time, setting a break point anywhere in DisplayIndicator_CheckedChanged is always hit. But if i filter the grid by some text and then click on the checkboxes, breakpoints in DisplayIndicator_CheckedChanged is not hit.
Hope this helps… I will also look in to the sample you have linked to. Thanks!
Regards,
Karthik
Hello Karthik:
We are working on this problem and will answer you as soon as possible. Please accept our apologies for the delay.
Thanks
Kate.
Hello Karthik,
In your code snippet, I see that you do not bind ASPxGridView during postbacks. However, according to the ASP.NET Page Life Cycle, you must provide controls with data on each round trip to the server. So, please delete the condition below. It should resolve your issue.
protected void Page_Load(object sender, EventArgs e) { //if ((!Page.IsPostBack) || (Page.IsCallback)) << - delete this condition BuildList(); }
Moreover, I suggest that you update the ASPxCheckBox value via callbacks rather than postbacks. You can find how to implement this approach in an example suggested by Vest.
Thanks,
Marion