Valeriy

Results 96 comments of Valeriy

Added in 1.1.1 ``` javascript $("#city").autocomplete({ source:[{ url: '/cities/list/' + $('#state').val(), type:'remote' }], limit: 10 }); var source = $("#city").autocomplete('getSource',0);//get first source $('#state').on('change', function() { source.url = '/cities/list/' + this.value;...

I'm stupid, sorry) updated

jsonp - it's not JSON it must be functionname({json});

Use css rule .xdsoft_autocomplete{ display:inline-block !important; }

Hi @hookedupjoe no, this is expected behaviour. Inline elements invisible for cursor Just imagine that you have a nesting greater than 1 and the elements have no padding. you press...

@daniwaxman It is not HEX input, it is just usual input[type=color] You can enable it https://xdsoft.net/jodit/doc/options/showBrowserColorPicker/

Hi, https://xdsoft.net/jodit/doc/options/fullsize/ set true.

You can set parent container `position:relative` And disable `globalFullSize` option ```html ``` ```js Jodit.make('#editor', { fullsize: true, globalFullSize: false }); ```

You should check with the browser inspector what exactly is preventing focus on the elements. Perhaps this is some kind of your overlay

To upload a file to the server, the uploader module must be configured https://xdsoft.net/jodit/docs/interfaces/types.IUploaderOptions-1.html#url https://xdsoft.net/jodit/docs/modules/modules_uploader.html