We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

I want to focus on particular cell on grid view

Waiting for your previous reply 


I want to use Technology must be Angular JS and MVC

while performing validation If I  am getting error I want to focus on first row and first column of grid of textbox which is open row

So here what i want is to put focus on first row and first cell of grid which is open cell of grid

Thank you waiting for you quick reply.







1 Reply

MS Madhu Sudhanan P Syncfusion Team August 25, 2015 09:45 AM UTC

Hi Bharat,

Thanks for using Syncfusion products.

Query: “while performing validation If I  am getting error I want to focus on first row and first column of grid of textbox which is open row”

We can achieve this requirement by registering a click event to the grid. Since the Jquery validation will perform out of box of the grid, we need to set the focus to the first element in the click handler registered, when the validation failed.

Please refer the below truncated code example.


<div id="grid" ej-grid e-datasource="data" . . . .  e-create="onCreate">

        . . . .
</div>

angular.module("SampleApp", ["ejangular"])

            .controller("SampleController", function ($scope) {

                . . . .

               $scope.onCreate = function () {


                     this.element.on("click.ejgrid", ".e-rowcell,.e-tooltxt", ej.proxy(function (e) {


                        //Check for edit state and prevent click on edit element.

                        if (this.model.isEdit && $(e.currentTarget).closest("form").length == 0) {

                            $("#gridEditForm input")[0].focus();

                        }


                    }, this));


                };
            });


For your convenience we have created a grid sample with above code and the same can be referred from the below link.

http://jsplayground.syncfusion.com/oeyk3xqr

Please let us know if you have any query.

Regards,
Madhu Sudhanan. P

Loader.
Live Chat Icon For mobile
Up arrow icon