Nothing Happens when i click the + icon in the to do

0
so by clicking on the plus icon of to do ,so according to mendix academy thier open Task title,Due Date,Priority,and Status open.What should i do if it does not open?  
asked
1 answers
0

Which learning path are you on? That makes it a little easier to help you. To debug, you could:

 

  • Go to the page in Studio pro and make sure that the correct microflow or nanoflow is connected to the button
  • Check the microflow or nanoflow that the button triggers. Does it look like it does what it should do?
  • Set a breakpoint on the first action in your microflow or nanoflow:
    • Does the breakpoint even get triggered? If not, something is wrong and you're not calling the flow you think you're calling
    • If your breakpoint is triggered, walk through the microflow step by step and monitor the variables to see if it does what you're expecting it to
  • If it reaches the end of the flow succesfully and everything that should be changed is changed, make sure you have "refresh in page" turned on for the relevant object and that you have the module / user rights to view the changes.
answered