Hi ,
we are trying to upgrade classical UI components to the Touch UI as part of that trying to capture the selectionchanged event in Touch UI.
I need an example for this, that helps me to proceed further.
Thanks In Advance.
Solved! Go to Solution.
Views
Replies
Total Likes
Hi
You have to handle the touch UI using normal Jquery functions. On your checkbox or dropdown widget node, you can give a class attribute like below
and then in the JS file add a function, to handle the select option on this field
$(document).on("selected", ".cq-dialog-layout", function() {
......
......
}
I would try to come up with a sample code which will help to demo this. But as a quick note, just try to handle the fields using normal jquery functions
Thanks
Veena
Views
Replies
Total Likes
Hi,
Did you see this alternate option at
http://aempodcast.com/2016/javascript/simple-touch-ui-dialog-extensions-aem/
Thanks,
Views
Replies
Total Likes
Hi Stuff,
Thanks for the reply. I went through that article before the creation of this ticket. I have got a good idea how to extend the listeners in Touch Ui but in that article talked about dialog related listeners. I am looking for the examples of how we use the selection change, selected etc?. That would be great if we have that info available somewhere. At least one working example with those listeners and any documentation for the which events can be able to capture in touch UI.
Thanks
Hi
You have to handle the touch UI using normal Jquery functions. On your checkbox or dropdown widget node, you can give a class attribute like below
and then in the JS file add a function, to handle the select option on this field
$(document).on("selected", ".cq-dialog-layout", function() {
......
......
}
I would try to come up with a sample code which will help to demo this. But as a quick note, just try to handle the fields using normal jquery functions
Thanks
Veena
Views
Replies
Total Likes
Views
Likes
Replies