There is a
problem with inline editing, when drag and drop are allowed.
Try your
example: http://dojo.telerik.com/uRaza
Here I can
mouseclick in the two cells and change the values - perfect.
But replace:
editable: "inline" with:
editable: {
move: true,
mode: 'inline'
}
Then it’s
not possible to change values in both cells.
6 Answers, 1 is accepted
Hello Kenneth,
This seems to be bug in our implementation. We will provide fix for it in the upcoming SP2 next week.
Thank you for bringing this to our attention.
Regards,
Nikolay Rusev
Telerik

Thank you Nikolay !
I try to make some click functionality in the treelist, and it gives me troubles in firefox and chrome but not in Explorer. Perhaps there is nothing to do about it, but I hope you will look at it - I have described the isue in the link: example.
Regards from Kenneth
Hello Kenneth,
I'm not sure what is not working in the example. It seems that the click handler is executed when I debug the function. Am I missing something.
Regards,Nikolay Rusev
Telerik

Hello Nikolay
In my example, it is procedure 2, thats not working.
Please try
to edit then name ‘Jim Dave’ and afterwards, click on row 2. The change will only be saved as expected, in Explorer - not in Firefox and Chrome.
Hello Kenneth,
I see what you mean. This behavior is somewhat expected. Events in different browser are triggered in different order and this is what you are observing. The selection feature tracks mousedown event and prevents it in certain cases, this prevents change of the input field.
You can avoid this by forcing blur. Here is updated example - http://dojo.telerik.com/@rusev/eHuji
Regards,
Nikolay Rusev
Telerik

Perfect Nikolay! And very good explanation - thank you so much.