Azure Pipelines YAML: Creating a button - yaml

We are using YAML pipelines. And we want to add a button in our template file. The problem is that we dont know how to do it. Any helps is appreciated.

What do you mean by adding a button? Template files are simply scripts, they have no user interface what so ever. Please update the question with more information.

Related

How to build own custom drag n drop template in MailChimp?

I want to build my own custom drag and drop templates using MailChimp template language. I didn't find any document or guide related to this. Is it possible to build a custom drag and drop templates in mailchimp? Please help me out with this issue. If you have any idea regarding this please let me know.
Thanks :)
It is not currently possible to create a drag-and-drop template on Mailchimp. However, you can create code a HTML template and use Mailchimp's email template language to make certain blocks editable (text, images, etc.)
You can find more info on how to do this in the Mailchimp API Documentation and check out this article from Mailchimp on the template language.

Is there a strapi plugin for admin UI customization?

I need to change some stuff about the styles such as the primary color and the project logo. All solutions known to me are just through writing a code or adding an image in project directory. Is there a Strapi plugin that can do these features ?
To my knowledge, there is not.
You don't need to, what you will need is to customize the backend as explained on the following document:
https://strapi.io/documentation/developer-docs/latest/development/admin-customization.html
From that point, you can "override admin files and functions" and do all the customization you need.

Are there any special event hooks for joomla modules

I have been searching special event hooks for use to track and update module forms. I found contenthooks on the documentation site but I couldn't get anything for modules. I want to add a plugin so that it adds an extra field viz. radio button to every module form. Finally I want to use the value of this radio field in templates/your-template/html/module.php. Can someone point me in the right direction towards this. Thanks :)
Jooma does not have event driven structure like for example .NET or Java. However if you want to trigger some additional functionality on certain event you may create a plugin. Plugin is something different than module or component but it 'collaborates' with them. It handles some per-defined events:
[http://docs.joomla.org/Plugin/Events][1]
[1]: http://docs.joomla.org/Plugin/Events and it lets you define your own.
You may also try the way I usually take which is customize module display. You simply copy
view file of the module you want to modify to your template. For example:
/modules/mod_feed/tmpl/default.php
to
/templates/{your template}/mod_feed/default.php
Now you can freely modify this file without any risk that it may be overwritten on the next Joomla update. Just don't forget to set your overwrite in module settings: go to administrator, modules, choose module to edit and in the tab 'Advanced' select 'Alternative Layout'.
I hope this helps and good luck!
Take a look at the new com_ajax that is in 3.2.

GoSublime - possible to display documentation beside the code completion popup?

After i have written out a function in some package, it's possible to display it's documentation via
ctrl+dot,ctrl+h
Is it possible to view the documentation for each method in the code completion popup, without actually writing the statement out?
No, it's not possible. Also, you're better off opening an issue on the issue tracker https://github.com/DisposaBoy/GoSublime/issues/new . In addition to emailing me, it's fastest way to get in contact with me.

Dynamics CRM option set

I am new to Dynamics CRM so please excuse me for the newbie question xD
I managed to create an option set field with 2 possibilities:
Scheme 1
Scheme 2
Does anyone have an idea how when a particular possibility is picked, a list of custom based fields will appear in the form? Thanks in advance
If i understand your problem correctly you want certain fields to appear/disappear according to the choice selected in the option set.
The way I see this working is by implementing a Javascript on the onChange event of the option set. you can do this from the 'Form Properties' when changing the layout of the form.
Below is a link showing some examples of possible useful commands that might help you:
http://www.powerobjects.com/blog/2011/01/14/crm-2011-useful-javascript-tidbits/
You can put your custom fields in a custom tab and then hide/disable it according to the value in the option set.
If you have any further problems feel free to ask :)
I hope this helps :)
Gdluck
If you are comfortable working in Visual Studio, I highly recommend installing the Developer Toolkit (You can find the .msi \tools\developertoolkit - download it from here). It will allow you to develop JScript with some syntax highlighting and intellisense and makes source control and deployment a snap.

Resources