Drag and Drop Captivate Question: Need 'Submit' button to work similar to 'Next' button - drag-and-drop

I am trying to create Adobe Captivate Quiz and have included Drag and Drop Interactive Questions (along with MCQ questions). How to go to the next slide?
I have changed the text of 'Submit' button to 'Next' button. In 'Drag and Drop' Actions, I have selected the following settings:
The question looks like:
The correct answer to this question is 'provide a safe workplace/environment'. When I try to submit a wrong answer or no answer, and click on the 'Next' (Submit) button, the control does not go to the next slide.
I tried to keep these settings:
This setting simply gives me 10 attempts to submit right answer. Without going to the next slide.
What settings should I choose and how do I move to the next slide and ensure that the candidate has the freedom to revisit the question n number of times, until they 'Submit' the entire quiz?
Thanks in advance :)

Drag and Drop slides are Content slides and not Adobe Question Slides and hence, changing the number of attempts will not necessarily help.
Number of attempts simply means the number of attempts to reach the correct solution. This means that they will have say 10 attempts to select the correct answer. However, they not be able to proceed to the next slide unless they get the answer right or they are out of attempts.
The best way to implement such questions will be using dropdown Fill In The Blanks or Sequence questions.
Hope this helps!

Related

Make enter select existing or top match

We've implemented algolia for our search, but now we're trying to figure out how I can trigger "enter" to select the existing match (say you're done typing and it's a match), or the #1 selected choice that comes from the dropdown.
I haven't been able to find any good documentation on this. Does anybody know how to do this?
Example (here I want 0934 to be chosen when you click enter):
I think you're just looking for the autoselect parameter of autocomplete.js.
autoselect – If true, pressing ENTER in the search bar will automatically select the first suggestion.
I guess, based on your question, that you've already handled the selection event afterwards, but in case you didn't, or for others that would stumble upon this question, the next thing to do is to use the autocomplete:selected event to use this selection (e.g. redirect or change something on the page).

Swift- How do I make it so that if the user clicks the button it takes them to a new view?

I'm currently trying to create a small notepad app, and i'm in need of help. I am using a Tabbed View Application. Say we had a view that has two text fields for Name and short description, and then a button beneath saying "Create Note".
How can I make this button change the view to my editor/notepad view that does not have the tabs at the bottom?
Thanks
If you are using storyboards, which I assume that you are, what you will want to use are triggered movements called segues.
To create one, right-click on the button and drag the line that appears to the second view, and then release.
It should look like this:
Then, when you release, a gray box will appear, with a list of segues. You can find out what each one does online, and as you get more advanced you can develop custom ones.
However, use Modal as a basic one to begin with.
Hope this helps,
Will.
PS. In the future, try and make your questions more specific, and do some research before you ask a question. It's important that you gain a good reputation on Stack Overflow if you want your questions answered properly.

Usability for confirm message in a long form

I term of usability, I'm wondering what's the best solution to display my confirm message.
I have a long form, and in small screen I can't see the top of the form.
When I'm submitting my form, where is the best position for my message "Your information has been saved"?
In the top of the form, and I add an automatic scroll up ?
In the bottom close to the save button?
In a dialog box?
Other solutions?
I tried to find that on Internet but nothing really interesting. Please quote your source if you have an answer for me.
Thanks!
If this is the only place in your application that has this functionality, it doesn't matter so much; if you already have it working one way or the other somewhere else, consistency is the most important.
Where will the user need to navigate to next? If navigation is at the top, auto-scrolling them to the top and showing a message there might be appropriate.
If the navigation is on the left side, auto-scrolling will lose the user's place in the page, which will make navigation harder. In this case, tell them right next to the submit button.
If there's only one place they can navigate to next, skip the AJAX and do an interstitial "success!" screen that also takes them to the next place they'll want to navigate.
But most of all? Consistency with the rest of your app.

Jasper Reports - remove buttons from input control

I've been digging all over Jasper documentation and can't find the answer.
Currently for our reports, we have a simple input control, Date. When this launches, I am given a date control and at the bottom, I get series of useless button choices...
Apply, OK, Reset, Cancel, Save
Can anyone help me get these removed? Just want OK and Cancel. I looked at DefaultParametersForm.jsp but am having a hard time finding anything useful there. I'm an amateur jsp programmer.
We removed the Cancel button from the input control popup, we found it in the file inputControls.jsp in the jsp/templates directory.
You should find the apply, ok, reset and save button here also.
I do not know off-hand how to remove the buttons, but these buttons are not all useless. Reset clears your fields back to their defaults (blank if no default).
When you are using the Control Layout 1, you may think the Apply and OK button do the same thing but they don't. Apply will run the report with the set parameters, but will not get rid of the dialog box. OK runs apply and removes the dialog as well. (Note that the dialog can be dragged out of the way.)
If you switch to one of the other Control Layouts (I like 4), then the OK button goes away b/c there is no longer a dialog. You will only get Apply, Reset, and Cancel.

How to add a Button to a HeaderSpan in SmartGWT?

I want to add a Button to a HeaderSpan in SmartGWT. At start, the title of the button will be + (Plus), when the user clicks the button, all the rows of the table are shown and the title of the Button becomes - (Minus). There are around 25 columns in the ListGrid hence I want this behaviour.
I have tried using the HeaderSpan.setAttribute("button", new Button("+")) method but it did not work. Please help.
Any other approach to hide/unhide columns will be very much appreciated.
I've watched this link. As per the overview given in the screen, it does provide hide/show of particular column as well as particular headerspan. On right side of each column a dropdown like button is given which is visible on mouse over & serves your purpose. If you want to change it's icon, you can try the following code, where headerMenuButtonIcon is the path of your image:
grid.setHeaderMenuButtonIcon(headerMenuButtonIcon);
Hope this helps you.