Writing Custom Templates - FlowFuse Dashboard

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 ธ.ค. 2024

ความคิดเห็น • 14

  • @martinpegler7342
    @martinpegler7342 15 วันที่ผ่านมา

    Very useful, thanks so much.

  • @a14266
    @a14266 หลายเดือนก่อน

    again very informative . @58:44 , how to you align the multiplelinee text together ?

  •  2 หลายเดือนก่อน

    As one of the most voracious and persistent content creators, element developers and node-red promoters on Brazilian TH-cam, I would like to thank you for your approach to time and sincerely ask you to maintain persistence on the element.. by far one of the most used by me and punctual developers.. grateful and I will always keep an eye on improving.

    • @FlowFuseInc
      @FlowFuseInc  หลายเดือนก่อน

      Just to check, are you asking about persistence on the ui-template node specifically? That is already in place. It retains the last "msg" sent to it, and will auto-reload that "msg" when you refresh the page

    •  หลายเดือนก่อน

      @@FlowFuseInc Don't worry, that's not exactly what I talked about, but I had already noticed this change. With it I eliminated the "mounted" of my nodes.. are there other things I could say to improve and give more power to this node.. simple things like the possibility of giving multiple outputs to the node as we do with function. Ex. "node.send([{payload: this.value}, null]);" .. simple things that you could use as ideas... many others and if you want... I will send them with great pleasure.

  • @ejwolski
    @ejwolski หลายเดือนก่อน +1

    Excellent tutorial! I appreciate all the detailed explanations of the various components. Very useful!

  • @controlas
    @controlas 2 หลายเดือนก่อน +1

    At last a real nice tutorial to better understand how to work with the new dashboard. Thank you!! It would be great if you could dig deeper in certain topics in future videos.

    • @FlowFuseInc
      @FlowFuseInc  หลายเดือนก่อน

      Which topics would you like to see us dive into?

    •  หลายเดือนก่อน

      @@FlowFuseInc 1 - Positioning of elements on the dashboard.
      2 - Using global variables in ui-template
      3 - Practical examples of vue elements in ui-template
      ...Many others

  • @ThomasStoehrmann
    @ThomasStoehrmann หลายเดือนก่อน

    Really loved this tutorial as it clarified a few point. I'm still struggeling with data management in template, especially loosing data when F5-Refresh is pressed .. would be nice to see a tutorial on how to handle different type of data including how to maintain/refresh data after 'refresh' ... thx a lot

    • @FlowFuseInc
      @FlowFuseInc  หลายเดือนก่อน

      Great idea - I've added it to the list here: github.com/FlowFuse/node-red-dashboard/issues/1361

    •  หลายเดือนก่อน

      I would really like a practical example they covered to solve this.. I also have problems with this constantly and I can't find material to deal with..

  • @RijkvanGeijtenbeek
    @RijkvanGeijtenbeek 12 วันที่ผ่านมา

    I can't find the fancy data used for the locations, or the function to calculate distance. Doesn't seem to be linked from here? Anyway, it was a useful demonstration.

    • @joepavitt3d
      @joepavitt3d 9 วันที่ผ่านมา

      The data was an array of three random cities, with their respective latitude and longitude, which can be looked up online. The formula for claculating the distance is: =Math.acos(Math.sin(lat1)*Math.sin(lat2)+Math.cos(lat1)*Math.cos(lat2)*Math.cos(lon2-lon1))*6371