draw.io / diagrams.net - current date in a text field? - draw.io

Is it possible to enter a variable of some sort in a text field in my diagram that has the current date and will auto-update to the current date whenever I edit the diagram again?

My suggestion would be to try %date% placeholder as described here:
https://www.diagrams.net/doc/faq/predefined-placeholders
Placeholder should be ticked under Edit data: https://www.diagrams.net/blog/placeholders

Related

Oracle Apex- Enter a value and convert it to a link

I have a Master Detial with 2 interactive grids.
I would like to be able to genrate a link based on user input....is that at all possible?
To give a simple example:
Lets say I have website like https://www.google.com/
I would like a user to enter anything...for example "Prague"
Once this is entered, I would like APEX to generate a URL from it to result in: https://www.google.com/Prague
Now I know that Google search does not work like that, but I need that sort of mechanism for our internal company app. Is this possible?
Ideally , once the grid is saved the link in the Interactive grid only said "Prague" but if I click it, it would direct me to https://www.google.com/Prague
This can be achieved using the "JavaScript Initialization Code" attribute of the column.
Example on the EMP sample table (*). Functionality is that when a user enters a value in the ENAME column, it is converted to a google search url.
Create an editable IG on table EMP
Set the type of column ENAME to "Text Field"
Set "Javascript Initialization Code" for column "ENAME" to
function(config) {
config.defaultGridColumnOptions = {
cellTemplate: '&ENAME.'
};
return config;
}
Notice that the column now is a link. A user will have to open in new window to get the actual link value, since clicking the column will active the edit mode.
(*) Sample dataset can be installed using SQL Workshop > UTILITIES > Sample Data Sets > EMP/DEPT
yes, you can let user enter the value and by creating a dynamic action(choose the when attribute as whatever suits you) you can take that value and on another column, use that column as &Columnvalue. for example and concatanate it by using to base url using ||

JavaScript code for adding days to a text field based on other text field in oracle Apex

JavaScript code to add 60 days automatically to release_date field when enter an date to resignation_date field in Oracle Apex .
I think Damir's suggestion to use a Dynamic Action with PL/SQL is a good one. But if you want a true client-side solution, look into https://date-fns.org/. See the addDays function: https://date-fns.org/v2.8.0/docs/addDays

How to write a query based on the Date item, in interactive grid

I have a date field and a interactive grid. I am trying to generate the Interactive grid based on the value inputted in the date field.
I am trying to write the query as below :
select pap.effective_start_date , pap.effective_end_date
from per_all_people_f pap
where :SELECT_DATE between pap.effective_start_date and
pap.effective_end_date
Here, SELECT_DATE is the name of the Date field (datatype Date picker). I am writing a dynamic action on Change of Date field, and refreshing the interactive grid region.
But when I change the value in Date field, it doesn't return any rows.
I have done a similar change where my interactive grid was based on a dropdown. There I had to set the "page action on selection" to Submit, and it worked. But here, since it is a Date field, the "Page Action on selection" property doesn't appear on the page .
Can somebody please suggest, how can I achieve this.
You need to explicitly convert your bind variables, which are treated as strings, to dates.
to_date(:SELECT_DATE)
The format mask will come from the application properties, or you can be explicit with that, too.

QDate empty value on add product page

I have a form to insert a product on vector. My form is a QT dialog form and I'd like that the space where I insert the date of purchase is blank and when I click on the QDateEdit the current date appears and I can set the date I prefer.
When I add the date to the vector ( both blank and setted date) I show it on QTableWidget. the column of purchase date must show me that value and if it is blank I'd like to be able to set the date I prefer ( after this I have a function to update the info on the vector).
How can I do this? Because on Qdate Class I have nothing that allows me to do this thing (http://doc.qt.io/qt-5/qdate.html).
I have to use qt and c++
thank you, I hope I explained the problem in a good way.
An easy way: use a customized QDateEdit and enable the QCalendarWidget popup, you can customize it using QSS. Example:
When the user sets the new date, just connect the signal dateChanged() whit your own slot and update your data.

Is there any way to edit the pop-up comments dialog box for Workbox actions?

Right now, this dialog just says "Enter a comment:". I would like to edit this text or add some new text. Is this possible?
Switch to "core" database and navigate to /sitecore/system/Dictionary/E/Enter a comment item. In the Phrase field of this item place a string you'd like to see instead of default "Enter a comment:". Save the item - and try it out!
Update: BTW, the same technique is used for translations. If you switch to the Danish version of the item, you can see the Danish text in the Phrase field. If Phrase field is empty (like for English version of the item by default), the Key field is returned instead.