Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>CodePlex's AjaxControlToolkit release of July 2013 <a href="http://stephenwalther.com/archive/2013/07/25/july-2013-release-of-the-ajax-control-toolkit" rel="noreferrer">introducing control bundles</a>.</p> <p>After this by default AjaxControlToolkit loads all scripts. So, to manage what scripts for what controls should be added and grouped you need to add AjaxControlToolkit.config to root of your web application project. Like in the following example:</p> <pre><code>&lt;ajaxControlToolkit&gt; &lt;controlBundles&gt; &lt;controlBundle&gt; &lt;control name="CalendarExtender" /&gt; &lt;control name="ComboBox" /&gt; &lt;/controlBundle&gt; &lt;controlBundle name="CalendarBundle"&gt; &lt;control name="CalendarExtender"&gt;&lt;/control&gt; &lt;/controlBundle&gt; &lt;/controlBundles&gt; &lt;/ajaxControlToolkit&gt; </code></pre> <p>Then you will need to specify which bundels are going to be used on which page (or master page if you have controls which are used on all pages) by adding bundle with specific name to toolkit script manager control:</p> <pre><code>&lt;ajaxToolkit:ToolkitScriptManager runat="server" CombineScripts="true" ScriptMode="Release" &gt; &lt;ControlBundles&gt; &lt;ajaxToolkit:ControlBundle Name="Calendar" /&gt; &lt;/ControlBundles&gt; &lt;/ajaxToolkit:ToolkitScriptManager&gt; </code></pre> <p>Remarks: <a href="https://ajaxcontroltoolkit.codeplex.com/SourceControl/latest#SampleWebSites/AjaxControlToolkitSampleSite/AjaxControlToolkit.config" rel="noreferrer">here</a> you can find example of the config which contains most (maybe all definition of the controls from ajax control toolkit library).</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload