Click here to Skip to main content
15,888,802 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi why jquery does not work in kendo grid popup windows?
I have a dropdownlist and a textbox in popup.
i want to fill textbox according to selected value of dropdownlist.
but jquery does not work.
thank you in advance

What I have tried:

i add a kendo grid and set popup windows for it.and for changing value of textbox i need jquery. but jquery does not work
Posted
Updated 24-Jul-16 3:23am
Comments
Karthik_Mahalingam 23-Jul-16 8:54am    

1 solution

use body.on event. I have checked this by editing the example Popup data editing example for Kendo UI Grid widget[^]
and worked

$('body').on("change","input[name='ProductName']",function(){
             debugger;
               alert('hi');
             });
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900