Jump to content

HaPe

Administrators
  • Posts

    80
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by HaPe

  1. This behavior will be changed with the next nedyx version. Then the image will always be completely visible 🙂 Then it will be resized in a way that it has maximum size, is completely visible and the ratio is preserved.
  2. Hi, Thats not an easy use case... but possible to realize to a certain degree with nedyx. I have attached one of our chart libraries, and added some examples, in the "WithBackground" page and the "PolarArea" page. Here the colors are applied by the Cell styles property. And the "WithBackground" example uses two stacked radar charts, one for the background, and one for the radar chart itself. I hope that helps. nedyx_Charts - Examples (54).zip
  3. Hi, right, if a cell is empty, the NUMBER function returns 0. Then the LEN function converts the number 0 into a string, which is "0", and returns 1 as the length of this string. Instead, e.g. a formula like IF(OR(ISEMPTY(#cell1); ... IF(OR(LEN(#cell1) == 0; ... could be used instead.
  4. Anbei ein Beispiel für so einen "Toggle Button". Dazu muss der Click-Zustand in einer Zelle gemerkt werden und bei jedem Anklicken per NOT(#cell1) zwischen true und false gewechselt werden. nedyx_Button color (3).zip
  5. Hi Ashish, please find attached one example how such a linear scale could be realized in nedyx. Please let me know if you have any further questions. Hans Peter nedyx_Linear Scale Demo.zip
  6. A tutorial for the Getting Started app can be found in the nedyx online help at: https://docs.nedyx.com/getting-started GettingStarted.zip
  7. Hallo Elena, ich habe mal ein Beispiel beigefügt, in dem angeklickte Zellen eingefärbt werden. Dazu wird eine Hilfs-Tabelle (unter der ursprünglichen Tabelle) nach dem Anklicken mit 1'en gefüllt, und diese dann zum Berechnen der Cell styles der oberen Tabelle verwendet. Ich bin mir allerdings nicht sicher, ob das deinen Use-Case komplett abdeckt, daher gerne nochmal Bescheid geben wenn noch Fragen offen sind. Hans Peter nedyx_Tabelle (1).zip
  8. Hallo, eine dynamische Positionierung von Widgets geht momentan noch nicht, ist aber vorgesehen. Es gibt alternativ diverse Optionen, Inhalte von Seiten kompakt darzustellen, z.B. über dynamische Befüllung oder Filtern von leeren Zeilen. Das hängt dann von dem jeweiligen UseCase ab.
  9. Hallo, hier gibt es zwei Optionen: nedyx kann hier entweder über ein IFrame in eine Webseite eingefügt werden, oder man kann eine neue Webseite mit der URL zur nedyx app öffnen. Eine Integration in z.B. ein DIV ist (momentan) noch nicht unterstützt.
  10. Hallo, das sollte eigentlich genauso gehen wie mit statischen Daten. Kannst du mir evtl. das Beispiel als App-Datei hier hochladen? Dann kann ich mal reinschauen...
  11. Hallo Thade, anbei eine App in der so ein Case umgesetzt ist. Bitte Bescheid geben, ob das dem gewünschten Verhalten entspricht oder noch Fragen sind. (Die App im "My Apps" Screen über den "Import App" Button oben links importieren.) nedyx_Button color.zip
  12. Das geht über die "Cell styles" Property. Hier kann man in dem Cell-Widget, dass den Style definiert, den Rahmen und den Hintergrund von Chart-Elementen definieren: In dem Grafik-Widget sollte dazu zusätzlich noch die Point Shape und Point Size angepasst werden:
  13. Eine dynamische Positionierung von Widgets ist auf der Roadmap, das wäre dann eine ähnliche Berechnung wie bei anderen Properties wie Visible oder Editable. Damit sollte sich dies Anforderung umsetzen lassen. Einen konkreten Umsetzungs-Termin gibt es allerdings noch nicht. In der Zwischenzeit könnte man dafür das Konzept des Fortschrittsbalkens verwenden. Zwei Beispiele sind in der Beispielsapp unter diesem Link abgelegt:
  14. Hi, I can reproduce that, and we will create a bug report about it. I think we can fix that soon. Thanks for reporting.
  15. Hi, wir konnten das Problem reproduzieren, es tritt auf wenn eine Seite des PDFCREATE nicht existiert. Das ist ein neuer Bug, und wird schnell gefixt. In deinem Fall wurde "Prozesstauglichkeits_Ergebnis" anstelle "Prozesstauglichkeit_Ergebnis" verwendet. Mit diesem Spalten-Inhalt funktioniert alles: Solange dieser Fehler noch nicht korrigiert ist, bitte die Seitennamen vor dem Ausführen des PDFCREATE nochmal prüfen.
  16. Hallo Manuel, anbei ist ein einfaches Beispiel, in dem das exemplarisch umgesetzt ist. Einfach auf den Button klicken, dann wird eine PDF-Mappe mit mehreren Seiten erstellt und runtergeladen. Die Seiten müssen nicht in der Navigation enthalten sein. Eine detaillierte Beschreibung der PDFCREATE Funktion (z.B. mit Hinweisen, wie man die gleiche Seite mit unterschiedlichen Menüeinstellungen mehrfach einpacken kann) findest du in der nedyx Online Hilfe (https://docs.nedyx.com/welcome-to-nedyx) Sag Bescheid wenn du noch Fragen dazu hast. nedyx_PDFMappe (2).zip
  17. PS: Ich hatte letzte Woche auch mit Manuel ein Beispiel erstellt, in dem das funktioniert hatte...
  18. Das sollte aber eigentlich funktionieren, mit allen Dateiformaten. Evtl. lädst du mal ein Beispiel hoch? Evtl. ist das ein besonderes Bildformat, oder zu groß?
  19. Yes, indeed. There are several options to realize this, and we are currently taking a deeper look into pros&cons of each approach. One option is to provide a new function HTML, which creates html-based content which could be inserted e.g. into a cell widget.
  20. Thats one option, but the selection frame must re-appear after a while, to see that the widget(s) are still selected. E.g. if you want to change a style after the repositioning. An alternative approach could be to use e.g. the CTRL key to hide the selection frame (and maybe the "..." menu as well). Thats for repositioning with the cursor keys. During drag & drop, we could hide the selection frame without the CTRL key pressed. Because after the repositioning / drop we can easily display the selection frame(s) again.
  21. Following the nedyx logic, that widget take care about their properties by themselves, this use case would rather be realized by a new calculated property called "Column widths" / "Row heights". This is already a story in our product backlog, and I hope it will not take long to realize it.
  22. Thanks for this suggestion, and the use case can really be helpful for others as well. Shouldn't actually be much work to realize... 🙂 I have added this idea to our product backlog.
  23. Hi, this is as designed, but not easy to explain 🙂 The reason for that is the value left of the "=" defines the value type which should be compared. So in case of #cell1 == "" if cell1 contains a 0, a numerical comparison is applied. For this purpose, the value right to the "=" is first converted to a number. And a conversion from an empty string to a number returns 0 (in the same way as NUMBER("") returns 0 as well). So this comparison returns true.
×
×
  • Create New...