WELCOME TO THE COMMUNITY
find what you are looking for or ask a new question
Home > User Voice > Latest posts

User Voice

Hello everyone,

Increasingly, when creating large applications containing many processes, dictionaries or document templates, the ability to group processes in Designer Studio would be useful. You can then group processes as you wish, making it much easier to navigate through large applications.

Would it be possible to add such grouping to Designer Studio?

Greetings to all ;)

In reply to: Maksymilian Stachowiak

Hi,
I'm not really sure if webcon is good place to delegate tasks from project perspective (you've mentioned project tracking). It would require project managers to have access to designer desk / designer studio.

I would rather opt for some integration with Jira/Github/Gitlab/Teams tasks/issues -> creating a task on webcon side, automatically creates one in integrated platform.
This would help with keeping the tasks in one place, rather than having many of them.

I'm interested to hear other voices though :)

If you could to do list use in process .. then
You can do process to assign task to someone ...
then why not.
If is more than 1/2 person responsible for dev or testing then I see potential

-- edit---
https://developer.webcon.com/2024/resources/db/#todoitems

So .. you can do process to assign tasks using ToDo table ...
using native webcon template https://community.webcon.com/online-store/app/task/23
just add few attributes ...

MVP

Hi everyone,

This might be a big one, but on one of latest webinars I've heard that there is open 'Designer Studio' project at Webcon, so I'll give it a shot - if not now, then I'm not sure if there will be a better time ;)
I think most of us have used SQL Server Management Studio or Azure Data Studio to test some queries, and maybe a VSCode / Notepad++ for some powershell - all of those support autocompletion (which in most cases of recent software is supported by language server protocol).

Could we get a built in autocompletion for custom business rules inside Designer Studio?
I'm leaving 2 examples of how autocompletion works in Azure Data Studio, and leaving one additional concept what kind of autocompletions i would like to see.

Creating it as LSP would also allow using it natively in Designer Studio, and as extensions to text editors.

MVP

Hi,
I'm not really sure if webcon is good place to delegate tasks from project perspective (you've mentioned project tracking). It would require project managers to have access to designer desk / designer studio.

I would rather opt for some integration with Jira/Github/Gitlab/Teams tasks/issues -> creating a task on webcon side, automatically creates one in integrated platform.
This would help with keeping the tasks in one place, rather than having many of them.

I'm interested to hear other voices though :)

MVP
In reply to: Paweł Tołoczko

I agree, I don't use it yeat (I'm in Webcon 2022 ...) , but I see limitation.
I would like to have something like that as native:

[code="https://devrecipes.net/step-progres-bar-with-pure-css/"]

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dynamic Stepper</title>
<style>
.stepper-wrapper {
margin-top: auto;
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
.stepper-item {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
flex: 1;
}

.stepper-item::before {
position: absolute;
content: "";
border-bottom: 2px solid #ccc;
width: 100%;
top: 20px;
left: -50%;
z-index: 2;
}

.stepper-item::after {
position: absolute;
content: "";
border-bottom: 2px solid #ccc;
width: 100%;
top: 20px;
left: 50%;
z-index: 2;
}

.stepper-item .step-counter {
position: relative;
z-index: 5;
display: flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
border-radius: 50%;
background: white; /* Zmienione wypełnienie na białe */
margin-bottom: 6px;
border: 2px solid #ccc; /* Dodana szara obwódka */
}

.stepper-item.active .step-counter {
border: 2px solid black; /* Czarna pogrubiona obwódka wokół aktywnego kroku */
}

.stepper-item.completed .step-counter {
background-color: #4bb543;
border: 2px solid #4bb543; /* Dopasowanie obwódki do koloru wypełnienia dla ukończonego kroku */
}

.stepper-item.completed::after {
position: absolute;
content: "";
border-bottom: 2px solid #4bb543;
width: 100%;
top: 20px;
left: 50%;
z-index: 3;
}

.stepper-item:first-child::before {
content: none;
}
.stepper-item:last-child::after {
content: none;
}

.stepper-item.active .step-name {
font-weight: bold; /* Pogrubienie tekstu w aktywnym kroku */
}
</style>
</head>
<body>
<div class="stepper-wrapper">
<div class="stepper-item">
<div class="step-counter"></div>
<div class="step-name">D0</div>
</div>
<div class="stepper-item">
<div class="step-counter"></div>
<div class="step-name">D1</div>
</div>
<div class="stepper-item">
<div class="step-counter"></div>
<div class="step-name">D2</div>
</div>
<div class="stepper-item">
<div class="step-counter"></div>
<div class="step-name">D3</div>
</div>
<div class="stepper-item">
<div class="step-counter"></div>
<div class="step-name">D4</div>
</div>
<div class="stepper-item">
<div class="step-counter"></div>
<div class="step-name">D5</div>
</div>
<div class="stepper-item">
<div class="step-counter"></div>
<div class="step-name">D6</div>
</div>
<div class="stepper-item">
<div class="step-counter"></div>
<div class="step-name">D7</div>
</div>
<div class="stepper-item">
<div class="step-counter"></div>
<div class="step-name">D8</div>
</div>
<div class="stepper-item">
<div class="step-counter"></div>
<div class="step-name">Zakończona</div>
</div>
</div>

<script>
// Tutaj ustawiamy wartość zmiennej krok
var krok = #{3123}#; // przykład, można ją dynamicznie ustawiać

var stepperItems = document.querySelectorAll('.stepper-item');

stepperItems.forEach((item, index) => {
var stepCounter = item.querySelector('.step-counter');
if (index < krok - 1) {
item.classList.add('completed');
stepCounter.textContent = '✓'; // Unicode dla ptaszka
} else if (index === krok - 1) {
item.classList.add('active');
}
});
</script>
</body>
</html>

[/code]

if you wish to test: >>> https://portal.webconbps.com/db/1/app/452/element/6828/form

Hi,

something similar may be available in 2024 R2 if I understood it correctly in the webinar.

I was referring to the new widgets:
https://community.webcon.com/posts/post/widgets/465/3

I would have liked if the widgets could accept pure text like in the attachment (1).
Clicking on it could execute a form rule, for example to show a tab, navigate somewhere else or it could be used as a big button. :)

Best regards,
Daniel

MVP

Hi,

it would really be great to add support for the hyperlink action on the attachment menu.
The only additional thing which would be required is the id of the current attachment.

The hyperlink action supports executing JavaScript and one use case would be to trigger the print dialog without opening the preview.
While this is one there may be other use cases which is the reason why I don't request a "print action".

Best regards,
Daniel

MVP

Hi,

it would really be great to add a custom title or even a description to a new diagnostic session or in the overview.

This would make it easier to identify the session.

It would nice if the user could provide the details but it shouldn't be in the "end and save session" dialog. It happened to me a few times, that the a JS error occurred and the dialog wasn't displayed.

Best regards,
Daniel