Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to check the multiple checkboxes in Datagrid/gridview using descriptive programe
#2
Hi,

This might help u.

Code:
Dim obj_ChkDesc

Set obj_ChkDesc=Description.Create
obj_ChkDesc(“html tag”).value = “INPUT”
obj_ChkDesc(“type”).value = “checkbox”

Dim allCheckboxes, singleCheckBox

Set allCheckboxes = Browse(“Browser”).Page(“Page”).ChildObjects(obj_ChkDesc)

For each singleCheckBox in allCheckboxes

singleCheckBox.Set “ON”

Next

Regards,
Sankalp
Reply


Messages In This Thread
RE: How to check the multiple checkboxes in Datagrid/gridview using descriptive programe - by sshukla12 - 10-15-2013, 04:08 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)