﻿<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
>
  
    <xsl:output method="xml" indent="yes"/>

    <xsl:template match="/">

      <div class="col-md-12">
     
        <div id="" >
          <span class="font15"> Select Integrator</span>
          <select id="ddlApiSource" onchange="GetHttpPostIntegratorDetails(id,'ApiSourceData')" class="dropboxnw form-control">
            <option value="">Select</option>
            <xsl:for-each select="AjaxRequest/ApiSources">
              <option value="{APISourceID}">
                <xsl:value-of select = "APISource"/>
              </option>
            </xsl:for-each>
          </select>

          <div id="" align="right" style="margin-top:5px;float:right;">
            <button onclick="CreateHttpPostIntegratorApiDetails(id,'ApiSourceData')" class="btn adbtn" style="width: auto;font-family: sans-serif;">
              <span class="glyphicon glyphicon-plus"></span>
              <span style="margin-left: 5px;">Create Api Key </span>
            </button>
          </div>
        
        </div>
        <div id="ApiSourceData" class="col-md-12">
          
        </div >
        
      </div>

      
    </xsl:template>
</xsl:stylesheet>
