Join the conversation

Sign in to join this conversation, and others like it, in the communities you care about.

Wekan

Wekan is an open-source kanban board (Trello like) which allows a card-based task and to-do management.

Wekan / Feature Request

Hi, I have some questions for wekan please , Im a new user for wekan, i just instaled it localy, now i want to install it on the server (deployment on the server) also i want to integrate it into may applicattion, if you can help me or guide me to de this . I await your response.

Hi, I have some questions for wekan please , Im a new user for wekan, i just instaled it localy, now i want to install it on the server (deployment on the server) also i want to integrate it into may applicattion, if you can help me or guide me to de this . I await your response.

Wekan/Feature Request · July 1, 2020 at 12:05pm

Hi, I have some questions for wekan please , Im a new user for wekan, i just instaled it localy, now i want to install it on the server (deployment on the server) also i want to integrate it into may applicattion, if you can help me or guide me to de this . I await your response.

Wekan / Feature Request · July 1, 2020 at 12:05pm
Load previous messages

August 12, 2020 at 4:31pm

see there 16.3 Specifying target frame information

    • reply
    • like

    For example this: <A href="slide3.html" target="dynamic">slide 3.</A>

      • reply
      • like

      When that link is at left menu, when you click it, it will open that slide3.html page in frame that has name "dynamic"

        • reply
        • like

        For example, <a href="https://wekan.example.com/b/..." targent="content">Kanban</a>

          • reply
          • like

          So that URL is what you copy from that board URL you would like to have in bottom left frame

            • reply
            • like

            And then you have for example: <a href="angular.html" target="content">Angular component</a>

              • reply
              • like

              so that angular.html is all of your current angular component html+css+js page

                • reply
                • like

                and when you click on left menu, it changes content on right bottom content frame

                  • reply
                  • like

                  with that FRAMESET you define how big area in pixels (px) or percent (%) is used for each frame area

                    • reply
                    • like

                    Alternative to frames is iframe. It means you can use divs, css top/left/width/height to position iframe anywhere in the page.

                      • reply
                      • like

                      Well, you seem to like Angular. According to this webpage: https://angular-2-training-book.rangle.io/components Angular compoment that embeds Wekan could for example look like this:

                      angular.module('ngcourse')
                      .component('ngcHelloComponent', {
                      bindings: { name: '=' },
                      template: '<span><iframe src="https://wekan.example.com/b/abcd1234" title="Wekan"></iframe></span>',
                      controller: MyComponentCtrl
                      });
                        • reply
                        • like

                        where src= is URL to your Wekan board, copied from your webbrowser URL area

                          • reply
                          • like

                          in that that template, maybe <span></span> is not necessary, only <iframe> tags are

                            • reply
                            • like

                            August 13, 2020 at 12:39pm

                            you mean to tell me i can put wekan in an angular component?

                              • reply
                              • like

                              August 13, 2020 at 1:59pm

                              Yes, if it does work like above. But I have not used Angular. I found that above from Angular documention how to make Angular component. I don't know does it help you in any way, does it work with your other Angular components, you can test yourself. If it does not work as Angular component, you can try above way of using frames or iframe.

                                • reply
                                • like

                                For that Wekan Angular component, you can place it anywhere in webpage similarly like any other Angular component.

                                  • reply
                                  • like

                                  pretty sure that is spot on (angular component. I find angular more flexible than react and react iframe works great as a through manipulation.

                                    • reply
                                    • like

                                    Just to make this clear though, the api and web hooks work great to create widgets and delete them but not for the most part to edit them inside wekan to correct your outboard system databases, meaning if you rename a board or swimlane or card through the wekan portal you get nothing back from any webhook so your system and wekan can drift apart. Most of the PUT api endpoints are not there either so if you edit something in your based program its not usually possible to update (edit) an existing wekan widget (card, board, etc) unless you write directly to the mongo db underneath wekan.

                                      Edited
                                      • reply
                                      • like

                                      the only solution missing to make full bidirectional editing between wekan and our hosting app is by "watching" mongo collections for changes and the snap deployment version of wekan is on a version on mongodb too old to support "watching" db collection changes as a means to provide a edit a webhook like edit update from wekan outward.

                                        • reply
                                        • like

                                        Well, plan is to sometime add more API calls and Outgoing Webhooks, and also update MongoDB database to newer version.

                                          • reply
                                          • like

                                          And of course anyone is welcome to send pull request to add those, if someone thinks some of those is urgently needed.

                                            • reply
                                            • like

                                            Currently my priorities are 1) security fixes 2) bug fixes 3) features 4) others

                                              • reply
                                              • like

                                              and link to Roadmap is at https://wekan.github.io

                                                • reply
                                                • like

                                                I do also daily reply to Wekan issues, community messages, Commercial Support requests https://wekan.team/commercial-support/ etc

                                                  • reply
                                                  • like

                                                  August 14, 2020 at 11:35am

                                                  Hello thank you very much for your interest your advice helps me a lot, now I have created an angular component in my angular project and I want that I integrate wekan in this component but I don't know how!!

                                                    • reply
                                                    • like