Questions tagged [user-feedback]

90 questions
1
vote
1 answer

Custom Accepted Operation in Drag and Drop

I am making a library management software. This is the screenshot: I have implementing functionalities like dragging a book into the delete icon to delete the book. But there are two obstacles: DataPackageOperation has only four possibilities:…
Hemil
  • 916
  • 9
  • 27
1
vote
2 answers

How to show snackbar when network unavailable on SEND button press

Can anyone help me how to show snackbar when WiFi or Mobile data not available on button press. Actually this button using for to send an email when user wants to send feedback form from my Android app. My Requirement is: When user press button If…
1
vote
2 answers

What are some ideas for how to add feedback to a Checkbox input?

The normal use of a Checkbox is fairly straightforward. You click the box and a check appears in the box. You click again to remove the check. I'm looking for a way to add feedback to the clicking of the box. My current idea is that you would have…
Bijan
  • 904
  • 3
  • 12
  • 24
1
vote
0 answers

custom checkbox input validation feedback

I have constructed a basic contact form which includes heavy styling. I have used specified checkbox characters in order to not use the bland default checkbox. When you use a checkbox which differs from the default checkbox you need to hide the…
1
vote
3 answers

How to tell whether Accounts.addEmail succeeded or failed, and if it failed, the reason why

I have a page where the user can type in a new email address and then this method attempts to add it to their account: Meteor.methods({ add_new_email: function(address) { Accounts.addEmail(Meteor.userId(), address); } }); I'm using the…
Little Brain
  • 2,647
  • 1
  • 30
  • 54
1
vote
0 answers

default start reputaion at stackoverflow for new users?

i want to know what is the default start reputaion at stackoverflow for new users? BTW i studied informatics and recievied an excelent diploma (needs only 3 years for it) but i disagreed with some here. they downvoted me. sad. seems not a fair…
SL5net
  • 2,282
  • 4
  • 28
  • 44
1
vote
0 answers

Rails - Show changes after PATCH

I would like to show the users which fields have been modified following his PUT/PATCH request For example, I have a big "project" form, with several fields, but my user decided to only update the deadline and the project name. After he clicks the…
Cyril Duchon-Doris
  • 12,964
  • 9
  • 77
  • 164
1
vote
1 answer

Returning an integer to determine which switch statement to show

I'm creating a board game (stratego) in c++ and was wondering if it considered a poor practice to return an integer from a class method in order to determine which case in a switch statement to show to the user. Example: In stratego, you can't…
ecaz
  • 33
  • 1
  • 4
1
vote
0 answers

Implementing txtProgressBar outside of a loop

Say I have the following R script, where cat provides the user with some feedback on what is being done and Sys.sleep stands for the actual computations being carried on: cat("Doing something\n") Sys.sleep(1) cat("Doing something…
Waldir Leoncio
  • 10,853
  • 19
  • 77
  • 107
1
vote
2 answers

Send review to google play store without leaving app

I know how to open the google play store to rate my app, but I was wondering if its possible to let the user write their review/rate my app from a popup within my app. Then using some kind of intent to send the information to the google play store.…
enyciaa
  • 1,982
  • 1
  • 14
  • 24
1
vote
2 answers

Continuing a loop until good input?

I'm trying to make a program where the user needs an account to access other parts of it. I want this set up so that if the user's 2 confirm password dont match, they have to reenter the info. Also, if the user leaves anything blank, they must…
AlecR
  • 47
  • 2
  • 9
1
vote
0 answers

Show dialog of "android-feedback.com" library

I am following the tutorial given here http://www.android-feedback.com/library for sending feedback. But I am unable to show dialog in onOptionsItemSelected. @Override public boolean onCreateOptionsMenu(Menu menu) { //menu.add("Email"); //…
Vivek Warde
  • 1,936
  • 8
  • 47
  • 77
1
vote
2 answers

Give user feedback on the execution of a Javascript function?

So I'm building a rather complex (from my standpoint) client-sided web-app in Javascript. What the program does basically is take a (rather huge) set of string data from the user, take a list of keywords from the user, perform a search and return an…
clecai
  • 85
  • 1
  • 8
1
vote
3 answers

Allow customers to send feedback

I thought this would be simpler. I want to allow users of my software to fill out a feedback form, which would then get emailed to me. Apparently, this is not as simple as just calling a "Send Email" function. The user could be anywhere in the…
NielW
  • 3,626
  • 1
  • 30
  • 38
1
vote
3 answers

MVC 4: How to display visual feedback while an Action executes?

I have an Action (Controller Action)that can take a couple minutes to run under some circumstances. I would like to provide our users a visual indication that the Action is running, such as a message, a spinner, or a progress bar. The trouble is,…
campbelt
  • 1,573
  • 5
  • 27
  • 43