stiaan Posted May 9, 2014 Posted May 9, 2014 Hi I was hoping that someone can help: I want to be able to detect if a user has checked the check box in UniDBGrid. I want to be able to follow a separate workflow before I allow the actual check to take place. I have played around with the ExtJS Events with little success. Much appreciated! Regards Stiaan Quote
Administrators Farshad Mohajeri Posted May 9, 2014 Administrators Posted May 9, 2014 Try UniDBGrid 'edit' Ext JS event. function edit(editor, context, eOpts) { if (context.column.dataIndex == 5) { // 5 is index of your checkbox column // do my task } } Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.