This is a migrated thread and some comments may be shown as answers.

listview data-click doesn't fire

1 Answer 97 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
M Kumar
Top achievements
Rank 1
Iron
Veteran
M Kumar asked on 06 Apr 2013, 11:22 AM
hi
the data-click event of listview does not firing
the list view inside the modal view

<div data-role="modalview" id="modalview-folder" style="width:95%;height:140px;">
           
          <ul data-role="listview" style="cursor:pointer;" data-click="folderOptionsClick"    >
              <li data-operation="capture" >Capture</li>
              <li data-operation="upload" >Upload</li>
              <li data-operation="cancel" >Cancel</li>
          </ul>  
            

           
        </div>

  function folderOptionsClick(e) {
var operation = e.dataItem.operation;
                console.log(operation);                                                
if (operation == "capture") {
}
else if (operation == "upload") {
}
else if (operation == "cancel") {
$("#modalview-folder").kendoMobileModalView("close");
}
}

1 Answer, 1 is accepted

Sort by
0
Steve
Telerik team
answered on 08 Apr 2013, 09:01 AM
Hi Kumar,

This is a known problem that slipped into the 1.3 release. You can find more information about it in the following forum thread: Kendo Mobile LIstView click events.

Regards,
Steve
the Telerik team

Share feedback and vote for features on our Feedback Portal.
Want some Kendo UI online training - head over to Kendo UI Dojo.
Tags
General Discussions
Asked by
M Kumar
Top achievements
Rank 1
Iron
Veteran
Answers by
Steve
Telerik team
Share this question
or