How would I be able to fill in the whole row red when the check box is filled. i was able to figure it out for just the check box it self.
if (this.rawValue == "1") {
this.fillColor
="255,0,0";
}
else {
this.fillColor
="255,255,255";
}
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
Assuming the checkbox is placed in a cell of the table directly ( not in a subform) then you should be able to call this when you want to change the colour.
this.parent.fillColor = "255.0.0";
Hope this helps
Malcolm
Views
Replies
Total Likes
Views
Replies
Total Likes
Hi,
Assuming the checkbox is placed in a cell of the table directly ( not in a subform) then you should be able to call this when you want to change the colour.
this.parent.fillColor = "255.0.0";
Hope this helps
Malcolm
Views
Replies
Total Likes
Thank you sir that did help and my apologies for a really late responses.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies