selecting grid

Simpe question. How to select grid from server side code and client siede code? Is this written somewhere in documentation?

1 Reply

BM Balaji M Syncfusion Team November 2, 2009 09:18 AM UTC

Hi Lukasz,

Thank you for your interst in syncfusion products.

We regret to let you know that currently, we don't support server side property for Row selection. We suggest

you to use selectRow() client side method to achieve this.

Refer the below code snippet, which illustrates this.
Sys.Application.add_load(function() {
var gridObj = $find("Grid1");
//Row gets selected at Specified index
gridObj.selectRow(0);
});

Currently we are working on revamping of online documentation and we appreciate your suggestions and please let

me know if you have any concerns.

Please refer the sample from below location.

http://files.syncfusion.com/support/grid_mvc/presale/P511/SelectRow.zip

Please let me know if you have any concerns.

Regards,
M. Balaji.

Loader.
Up arrow icon