hello,
as you give me the code to make the column read only which is as follows
{ columnKey: "Content", editorOptions: { readOnly: true } },
it didn't seems working for IE11
anybody there who can help me out.
Hi Sushant,
Thank you for posting in our forums! Try setting the readOnly property of the column itself not the editor's one. It looks like this:
{ columnKey : "Content", readOnly: true }
I hope this helps!
Kind regards, Petko Zhekov Senior Software Engineer
i don't know why this is not working for me but i solve it using another approach see below code
editCellStarting: function (evt, ui) { if (ui.columnKey == "ShortContent") { return false; } else if (ui.columnKey == "TypeOfContent") { return false; } else { return true; } },
I tested the case in IE11 and it worked as expected. I also tested it in IE10, IE9, Firefox and Chrome. It worked everywhere. Can you give me more detailed information about your case? Do you reproduce it only in IE11? Does it work in other browsers? Which version of IgniteUI, jQuery and jQueryUI are you using? And if you could send me a sample page that demonstrates the issue will be even better.
I’m looking forward to your reply!
hi,
it is not working for me.