jQuery-contextMenu icon indicating copy to clipboard operation
jQuery-contextMenu copied to clipboard

Input commands: check and radio selected

Open bomastudio opened this issue 8 years ago • 3 comments

In all browser the demo

https://swisnl.github.io/jQuery-contextMenu/demo/input.html

doesn't fire at startup the selection on radio nor on checkbox input type.

Why?

bomastudio avatar May 30 '16 10:05 bomastudio

I've looked into it, but cant seem to find the reason right now. Bit weird, seems the initial state is ignored and for someweird reason... I'll try again soon.

bbrala avatar Aug 26 '16 13:08 bbrala

sorry to bump an old issue, but as it hasn't been marked as resolved, I didn't see the need to create a new issue for the same thing, adding selected: true to a type: 'checkbox' still doesn't set the initial state, any chance for a fix on this? I feel like after 2 years, now is a good time to try again ;) Thanks

MRVDOG avatar Oct 28 '18 05:10 MRVDOG

sorry to bump an old issue, but as it hasn't been marked as resolved, I didn't see the need to create a new issue for the same thing, adding selected: true to a type: 'checkbox' still doesn't set the initial state, any chance for a fix on this? I feel like after 2 years, now is a good time to try again ;) Thanks

ughhh.... apologies, this isn't a bug... it was my own stupidity!!!

input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

will prevent inputs looking like inputs, so they didn't appear checked hahaha, whoops

MRVDOG avatar Oct 28 '18 21:10 MRVDOG