When ever I clicked on . it navigate to “showDetailPage” (showDetailPage is just a function) with the data displayed after clicking showDetailPage. But after the update “showDetailPage” doesn’t even get response to click.
This is a js I used to push data whenever showDetailPage is clicked
function showDetailPage(args)
{
selectedItem.value = args.data.description;
router.push("DetailPage", selectedItem.value);
}
inside DetailPage ux. JS looks like this. Note: DetailPage.js is a separate file.
var Observable = require("FuseJS/Observable");
var description = this.Parameter
function button_go_back()
{
router.goBack();
}
module.exports={
button_go_back:button_go_back,
description:description
}
Hi! Sorry to hear that. There is not enough information in this post to identify the problem. Please read the release changelog carefully, as there might be subtle differences between releases. If you can’t figure it out please provide a complete project that demonstrates the problem. Thanks!
tl;dr= ‘Clicked Handler’ doesn’t work anymore after the update inside ‘Each’ tag. Used my git and went back to previous version. It worked completely fine. I checked whether I changed the previous version of my code to new version using git… nothing was changed. Not sure what’s going on. Been 2 hrs trying to figure it out.
Update: just had to restart my computer and it works perfectly. Strange that I have to restart computer after installing fuse. Thanks for looking into it though.