Magento2 add custom datepicker with ui component at grid listing with inline editing - datepicker

How i add a custom jquery date picker in grid with inline editing. I have add in the form but in inline editing i am facing issues. data are not save for inline editing with datepicker and don't have any error in console

Related

Is there any valid way to show an input without a border in SAPUI5?

I am working on a SAPUI5 app in which we do not want to add custom css to. Currently we are displaying text in a form which does not have the same height and styling as the inputs.
I'd prefer to change the text to an input with a pre-filled value so everything in the form has consistent styling but I need to differentiate that this should be treated as text.
The easiest way to do this is to remove the border but I cannot find away of doing this without creating custom css.
I tried borderDesign="None" but this does not affect inputs.

How can I get Textflow editable in Javafx 8?

I have an Editor with a TextArea which is editable but it is not possible to dye the keywords in another Color.
So I want to Change the textarea into a Textfllow which is editable.

Textarea is briefly visible before TinyMCE renders

I am using the TinyMCE WYSIWYG editor for a ASP.NET MVC project. Although the editor is working, when the page loads the underlying textarea is visible for a brief moment before the editor kicks in - the raw textarea is visible for about, give or take, a second. Is there a way to only load the content once the TinyMCE editor is ready?
I'm using Bootstrap and if I assign the textarea a class of hide (which essentially is just a display: none CSS style) the textarea is hidden, and the editor renders when it's initialized.
Populate the data on the TinyMCE's init event.
function myCustomOnInit() {
alert("We are ready to rumble!!");
}
tinyMCE.init({
...
oninit : myCustomOnInit
});
code from http://www.tinymce.com/wiki.php/Configuration3x:oninit

CQ5 - Widget for displaying sample HTML

I am trying to build a widget that has an area that will display sample of ~20 line HTML code. This sample code must be selectable so the user will be able to copy + paste it into their own text editor.
Currently I am using an xtype displayfield and using the fieldDescription to put my HTML code inside. I realized though that this fieldDescription does not allow me to format my code. I also tried using an xtype textarea and setting the emptyText as my HTML code, but clicking in the textarea would remove the HTML code.
The user story for this is that I have a textarea where the user will be populating a textarea with HTML code. This HTML code must be structured in a certain way so the CSS will format their code correctly. I want to include an example of how this HTML code should be structured.
EDIT - It will be great if I can apply the font-face Courier to this for ease of readability.
Try using value property of textarea.
Set ignoreData to true to avoid the value being populated from content.
To make sure it doesn't get saved back as a property - leave name empty, or just set a value that doesn't start with ./
To achieve different font face - play with CSS on a page. If you want to add specific CSS class to your widget, use overCls property.
Find more on the documentation

NicEdit with jQuery Autocomplete

I'm trying to make a rich text editor with an autocomplete feature. Right now i'm using NicEdit to turn a textarea into a rich text editor, works ok(i'm using it for its simplicity). Also i'm using the autocomplete feature form jQuery successfully on textboxes or textareas, but if i try to use the same textarea that NicEdit uses(that is a text area with "textareaID" id), it doesn't work beacause NicEdit changes the textarea into DIVs with different IDs(in my case the html source ID for that DIV is "nicEdit-main"), and the autocomplete does not work on the DIVs ID.
So, autocomplete does not work on:
$("#nicEdit-main").autocomplete({...
neither does on:
$("#textareaID").autocomplete({...
An idea on how i can accomplish NicEdit and autocomplete to work on the same textarea, will be appreciated.