H
hazz
Given the update query
UPDATE Columns
SET Include_in_Report = @Include_in_Report
WHERE (ID = @Original_ID);
Include_In_Report is a bit field in the table, represented as a checkbox on
the grid.
If someone clicks on the checkbox, I would like the bit field in that row in
the database table to be updated immediately. I don't want to have to first
select the Edit button, which then selects the whole row in the grid as
editable.
I ONLY want that one column of the datarow to be editable, all the other are
readonly.
Include_In_Report should be a CommandField AND a CheckBoxField at the same
time. As a Commandfield it would fire the update query above.
How do I do that?
Thank you for any help.
Greg
UPDATE Columns
SET Include_in_Report = @Include_in_Report
WHERE (ID = @Original_ID);
Include_In_Report is a bit field in the table, represented as a checkbox on
the grid.
If someone clicks on the checkbox, I would like the bit field in that row in
the database table to be updated immediately. I don't want to have to first
select the Edit button, which then selects the whole row in the grid as
editable.
I ONLY want that one column of the datarow to be editable, all the other are
readonly.
Include_In_Report should be a CommandField AND a CheckBoxField at the same
time. As a Commandfield it would fire the update query above.
How do I do that?
Thank you for any help.
Greg