How to avoid Autofill feature not creating a blank space - autofill

Looks like the default behavior of the smart suggestion is to add a space after the provided text. And that is not cool for example when you are trying to reset your password.
Is it possible to somehow to trim this blank space (in mobile web browser settings or anywhere)?
Could someone please advise? We don't want to off this feature just to avoid blank space
Thanks

Related

AppJS does not show Unicode characters

I have a situation where I want to open a website by clicking a desktop icon. I found AppJS to be the answer. I created an app with just a full window covering iframe. The only problem I am facing is, Unicode characters are not shown properly (all I see is boxes in place of text). I could not understand where should I look for. Please, give me some pointers. or maybe an alternative to fulfill the original purpose.
Thanks in advance

confluence display content by user

I am trying to get specific content on a confluence cloud wiki to display content based on a specific user. The scenario here is that there are links on a page but only 1 should display, the one that displays is based on whom ever is logged in.
I have been told how a macro is the way forward, but I have read the documentation and I am at a loss. I do not understand what I have to do or how to write a confluence macro. could someone help me out with either an example or some links? I have searched like crazy, but maybe i am not asking the right questions but hopfully you can all help me out?
There's a plugin for this:
https://marketplace.atlassian.com/plugins/net.customware.confluence.plugin.visibility
But I'm not sure how thoroughly it hides the content. It might still be visible if users view the page source. If you're trying to hide content which needs to be really protected, you'll probably need to do something else.
Depending on how many users are going to be using the page, you could also just make separate spaces for them, add the permissions to those spaces, and then use a page-include on your "main" page to display the content. If they don't have access it shouldn't show up. You might experience some formatting issues with that solution, however.
Finally, you could grab the username with jquery and display stuff based on that. This solution will be pretty easy if you are familiar with javascript/jquery.
Edit: Here are some helpful resources on how to use javascript and jquery within confluence:
https://confluence.atlassian.com/display/CONFKB/How+to+Use+JavaScript+in+Confluence
https://developer.atlassian.com/confdev/confluence-plugin-guide/writing-confluence-plugins/including-javascript-and-css-resources

Top section of page is not visible while hints are off

I am very new to magento and have developed theme.
When I try to use my theme I am unable to see header.phtml, head.phtml etc in my page.
In page source I am seeing all stuff but thats not visible on page.
When hints are on I am seeing all stuff correctly with hints.
Please help me out.
This is my URL..
http://216.12.194.46/~kartscom/kartsftp/magento/index.php/computer/sony.html
Regards,
Suraj.
It appears that your header-container (and possibly header) does not close itself correctly.
I suggest checking the file /app/design/frontend/my_company/default/template/page/html/header.phtml to make sure each div closes itself.
By enabling hints, the hint boxes (which are made by div tags) end up closing the containers, which is why it shows correctly with it on, except for the fact that the box labeled as "frontend/my_company/default/template/page/html/header.phtml" (Mage_Page_Block_Html_Header) in your hints extends all the way down the page.
The "header-container" div needs to close before the "main-container col2-right-layout" div. To help deduce any other errors, I suggest starting off by turning hints off and running your page through the W3C Html Validator, and trying to correct as many issues as possible.
The validator tool will definitely help in tracking down any tags that aren't being closed, plus I always strive to have pages that pass with 0 errors / 0 warnings.

What is the best way to present multiple options in a form for section 508?

I will need to provide a way for a user (who will be using a screen reader) to select multiple options within a form. Currently, these options are laid out in a two column table with checkboxes in the first column and spans with the label for the option in the second column. This isn't section 508 compliant, but it will need to be for this site. I'm trying to figure out the best way to replace this form with something better.
The options I have are to either
Use ul/lis with labels for the checkboxes
OR
Use a multi-select drop down list.
Does anyone have a preference or a better idea?
I've decided to use a muli-select dropdown. In case anyone was wondering. It seems to work fairly well with the screen reader I'm using. I did find that IE seems to be the best browser to work with and most screen readers aren't working very well with Chrome or other browsers unfortunately. I can only assume then that most people who visually disabled are probably using IE because of this.

What kind of Markup should i use for the Notes in my WebApp?

i am building a webapp that will have notes fields all over the place, but i dont know what kind of markup i should use.
these are my requirements
User must be able to change the text style (bold, italic, underlined)
User must be able to create bullet lists
User must be able to create numbered lists
User must be able to change the font-size or use pre-definded headings
User must be able to add links
User must have a WYSIWYG - Editor that hides the actual markup
the last one is the most important requirement, my target users struggle even with word, so using markup style input like here on stackoverflow is not an option.
so what kind`s of markup do you know that fits ans has some fancy WYSIWYG - Editor?
if you think that i missed a important requirement please feel free to suggest it.
tia
You'll need to check out tinyMCE.
It's the best javascript-based WYSIWYG editor I've found.