MUI V5 DatePicker not updating Redux toolkit state - material-ui

I want to use MUI V5 DatePicker in my form to update a redux-toolkit date state.
However, when a date is selected the state doesn't change and the value in the text field doesn't update.
When I tried to edit this in the code Sandbox I got an error."2 arguments required but only one present"
Please see the code sandbox in the below link.
https://codesandbox.io/s/determined-curie-ydwpd0?file=/src/App.js

Related

Where is the autocomplete list of all heading tags, which was available in TinyMCE4 when you clicked the empty Url field in the Insert link plugin?

TinyMCE v4 Insert link dialog had an option where you could click the empty Url field and it listed all headings included in the content. When you selected one of these headings, then an id attribute with a generated id value was automatically added to the selected heading tag and a link was created to that heading id. You can see it in action at basic example from TinyMCE v4 docs.
To reproduce
Go to the basic example from TinyMCE v4 docs.
insert the cursor in the editor
hit +K to display Insert link dialog (or right click and choose Link)
click or double click the empty Url field
an autocomplete list of all headings present in the content is provided to choose from
select one and push the Ok button
A link is inserted to the selected heading
Insert link dialog showing autocomplete of all headings in TinyMCE v4
Is this feature still available in TinyMCE v6?
Or has Tiny introduced regression at v5 and/or did they fail to mention that this is no longer supported?
I expected this to be available in TinyMCE v5 and TinyMCE v6, but it isn't.
basic example from TinyMCE v5 docs
basic example from TinyMCE v6 docs
This regression was not mentioned in any of the upgrade docs or release notes.

Load a different form on different pages using the same page template

Kentico 12, not MVC:
I have a page template that is used on several pages. On some of those pages I want to display a form. (a biz form from the Forms application) I don't necessarily want the same form on each of those pages. I need a way to specify which form to display. I expect I could create a field in the page type to specify the form name, but it would be nicer to be able to have designers add a page with the form on it, and have a repeater display that page in a webpartzone on the aforementioned page template. I'm not sure how to do this, though. Anyone have an example or suggestions?
If you’re using portal engine, then you should easily be able to add an editor zone to your template. Content editors can then add the online form widget to individual pages. The widgets work at page level rather than template level, so should give the control you
The page from the docs will show how to setup an editor zone:
https://docs.kentico.com/k12/developing-websites/preparing-widgets-for-users/setting-up-widget-zones-on-pages
In addition to adding a widget zone, you can simply add an editable text webpart to the template and in the WYSIWYG editor you can click on the BizForm icon to insert that widget there. This doesn't require you to change the page template to a widget zone template.

Bootstrap Vue invalid feedback on input not computed

I am working on a project that previous developer used Bootstrap Vue, the problem I have is with b-form-invalid-feedback.
Invalid feedback works once page is loaded, the reason for that is the docs provides example does the same
, now if you have a page with 10 input for a user to register and directly after he opens the page immediately the invalid feedback starts and shows errors in all fields for the user before he even starts writing his name.
Bootstrap V4.3 CSS uses sibling selectors to show/hide valid/invalid feedback.
Wrap each input+feebdack components inside a div so that the other inputs/feedback are no longer siblings of the previous input(s).

Using Appium - Unable to access date picker on mobile web app on android platform

I have created test script for mobile web application using appium.
The issues are given below
I'm not able to get date picker id's in DOM windows [Android default date picker populated in my web app which is available in setting menu of android mobile]
So how can i access date picker on mobile web application.
2.I tried copied DATE without opened date picker via java script. Date has displayed successfully but if i tried to navigating next screen, error has been displayed as pl entered DATE.
Please find the below code which i have taken DOM windows for text box ids[Date value should be stored in text box]
<input tabindex="-1" type="date" data-ng-model="firstMovedInDetails" data-ng-blur="firstMovedIn(firstMovedInDetails)" name="firstMovedInDetails" class="field mdot ng-pristine ng-valid selectboxblank" input-focus="" select-box="" resize-box="" style="width: 280px;">
Please find the below which I have written java script to paste the DATE in text box, without opened date picker
( (JavascriptExecutor)driver).executeScript ("var dob = document.getElementsByName('firstMovedInDetails')[0];dob.value='2010-01-06';");
The mobile web application developed by anjularjs.
Kindly let me know whether how can I access date picker or navigating on next page with date value.
Thanks in advance!
The default DatePicker in android has the IDs associated. Could you check once in the dev branch and confirm if they have not updated the same.
Is they did, you would have to access those objects to SET the date.

Update Dashboard Without Using Submit Button in Jasperserver

This is the case: I have a dashboard in my jasperserver, and I have a dropdown as an input control in it. What I must do if I want the dashboard to be auto-updated when I change the value in the dropdown, so I don't have to put a Submit button? (And not using auto-interval for the update)
I also have two reports inside the dashboard, but I want it to be updated separately, without causing other report to be reprocessed, how can I do that?