How to do region collapse for JS in Visual Studio 2012/2013

后端 未结 5 621
孤街浪徒
孤街浪徒 2021-02-05 06:29

Region code collapse for JS in Visual Studio 2012 and 2013 ?

#region AutoComplete JS
$(\"#<%=txtBirim.ClientID %>\").autocomplete({
   source: function (re         


        
5条回答
  •  孤独总比滥情好
    2021-02-05 07:07

    Install web essentials

    Use the same name in end region

    //#region AutoComplete JS
    $("#<%=txtBirim.ClientID %>").autocomplete({
          source: function(request, response) {
              $.ajax({
                    url: '<%=ResolveUrl("~/Classlar/TextboxOtomatik.asmx/BirimGetir") %>',
                    data: "{ 'prefix': '" + request.term + "'}",
                    dataType: "json",
                    type: "POST",
                    contentType: "application/json; charset=utf-8",
                    success: function(data) {
                      response($.map(data.d, function(item) {
                        return {
                          label: item.split('-')[0],
                          val: item.split('-')[1]
                        }
                      }))
                    },
                    Code....
    //#endregion AutoComplete JS
    

提交回复
热议问题