experts,
any one hlpe me to resolve the below
I have a Kendo grid
in that dropdwon is there
when i select any duplicate item need to raise alert by using java script selected change event
but below code is not working
Ex :


experts,
any one hlpe me to resolve the below
I have a Kendo grid
in that dropdwon is there
when i select any duplicate item need to raise alert by using java script selected change event
but below code is not working
Ex :


Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Vishal JoshiPosted Jan 12, 2023, 12:14 PM
Hello,
You need to check Condition
if(rec.MiscellaneousReceipt.MItemId == data)
because data want this.value() want return MItemId.
You need to use below code to get selected rows.
Now based on selectedIds you can get gridview rows and compare duplicate.
Please refer kendo UI document for the same.
https://docs.telerik.com/kendo-ui/api/javascript/ui/grid/methods/select
Thanks
yesubabu kPosted Jan 12, 2023, 8:54 AM
not working sir
Sachin SinghPosted Jan 12, 2023, 8:40 AM
modify this line
to
Naimish MakwanaPosted Jan 12, 2023, 8:39 AM
Please try below code.
Thanks