This is a migrated thread and some comments may be shown as answers.

Row Select

1 Answer 22 Views
ListBox
This is a migrated thread and some comments may be shown as answers.
Tina
Top achievements
Rank 1
Tina asked on 28 Aug 2011, 03:53 PM
How can i make a row select on checking the checkbox?

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 29 Aug 2011, 05:38 AM
Hello Tina,

You can achieve this by attaching the client event OnClientItemChecked
Javascript:
<script type="text/javascript">
function OnClientItemChecked(sender, args)
{
  var   item = args.get_item();
    item.select(true);
}
</script>

Thanks,
Princy.
Tags
ListBox
Asked by
Tina
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or