Ready to Test
This commit is contained in:
File diff suppressed because one or more lines are too long
@ -0,0 +1,13 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI igCombo KnockoutJS extension 19.1.20
|
||||
*
|
||||
* Copyright (c) 2012-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
* Depends on:
|
||||
* jquery-1.9.1.js
|
||||
* ig.util.js
|
||||
* ig.dataSource.js
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["../modules/infragistics.ui.combo","knockout"],factory)}else{factory(jQuery,ko)}})(function($,ko){function selectItems(combo,selectedItems){var valueKey=combo.igCombo("option","valueKey"),allowCustomValue=combo.igCombo("option","allowCustomValue"),selectedValues=[],index,item,value;selectedItems=ko.utils.unwrapObservable(selectedItems);if(selectedItems){if(allowCustomValue&&!selectedItems.length){return}for(index=0;index<selectedItems.length;index++){item=selectedItems[index];if(typeof item==="function"){item=item()}if(typeof item==="object"){value=item[valueKey]}else{value=item}selectedValues.push(value)}combo.igCombo("value",selectedValues)}}function applyListItemsBindings(valueAccessor){var combo=valueAccessor().combo,$comboList=combo.igCombo("listItems"),options=valueAccessor().options,dataSource=ko.utils.unwrapObservable(valueAccessor().dataSource),i;if(dataSource){for(i=0;i<dataSource.length;i++){if(ko.isObservable(dataSource[i])){ko.applyBindingsToNode($comboList[i],{igComboItem:{combo:combo,value:dataSource[i],index:i,options:options}},dataSource[i])}}}}ko.bindingHandlers.igCombo={init:function(element,valueAccessor){var combo=$(element),options=valueAccessor(),dataSource=options.dataSource,selectedItems=options.selectedItems,dataSourceSubscription;combo.igCombo(options);ko.applyBindingsToNode(element,{igComboSelection:{selectedItems:selectedItems}},selectedItems);if(ko.isObservable(dataSource)){dataSourceSubscription=dataSource.subscribe(function(){combo.data("dataSourceUpdating",true)});ko.utils.domNodeDisposal.addDisposeCallback(element,function(){dataSourceSubscription.dispose()})}ko.applyBindingsToNode(combo.data("igCombo")._options.$dropDownCont[0],{igComboList:{combo:combo,options:options,dataSource:dataSource,selectedItems:selectedItems}},dataSource);ko.utils.registerEventHandler(element,"igcomboselectionchanged",function(evt,ui){var valueKey=ui.owner.options.valueKey,items=ui.items,selectedItems=valueAccessor().selectedItems,selectionType=valueAccessor().selectedItemType,selectedValues=[],item,itemData,firstItem,itemForSelection,index;if(items&&selectedItems&&ko.isObservable(selectedItems)){selectedItems=ko.utils.unwrapObservable(selectedItems);if(!selectionType){if(selectedItems.length>0){firstItem=selectedItems[0];if(typeof firstItem==="function"){firstItem=firstItem()}if(typeof firstItem==="object"){selectionType="object"}else{selectionType="primitive"}}else{selectionType="primitive"}}items=typeof items==="function"?items():items;for(index=0;index<items.length;index++){item=items[index];itemData=item.data;if(typeof itemData==="function"){itemData=itemData()}if(selectionType==="object"){itemForSelection=itemData}else if(selectionType==="primitive"){itemForSelection=itemData[valueKey]}if(typeof itemForSelection==="function"){itemForSelection=itemForSelection()}selectedValues.push(itemForSelection)}}if(ko.isObservable(valueAccessor().selectedItems)){valueAccessor().selectedItems(selectedValues)}})}};ko.bindingHandlers.igComboSelection={update:function(element,valueAccessor){selectItems($(element),valueAccessor().selectedItems)}};ko.bindingHandlers.igComboList={init:function(element,valueAccessor){applyListItemsBindings(valueAccessor)},update:function(element,valueAccessor){var combo=$(valueAccessor().combo),options=valueAccessor().options,dataSource=ko.utils.unwrapObservable(valueAccessor().dataSource),dropDownScroller=combo.data("igCombo")._options.$dropDownScrollCont,lastScrollTop=dropDownScroller?dropDownScroller.scrollTop():0;if(!!combo.data("dataSourceUpdating")){combo.removeData("dataSourceUpdating");combo.one("igcomboitemsrendered",function(){applyListItemsBindings(valueAccessor);selectItems(combo,valueAccessor().selectedItems)});combo.igCombo("option","dataSource",dataSource);if(options.virtualization){dropDownScroller.scrollTop(lastScrollTop-1)}}}};ko.bindingHandlers.igComboItem={update:function(element,valueAccessor){var combo=valueAccessor().combo,textKey=valueAccessor().options.textKey,valueKey=valueAccessor().options.valueKey,item,index,dsItem;if(valueKey===undefined&&textKey===undefined){return}index=valueAccessor().index;dsItem=valueAccessor().value;item=$(combo.igCombo("dropDown").find("li").eq(index));combo.data("igCombo")._updateItem(item,dsItem);combo.data("igCombo")._updateInputValues()}};ko.bindingHandlers.igComboVisible={update:function(element,valueAccessor){var visible=valueAccessor(),combo=$(element);if(!ko.isObservable(visible)){return}combo.igCombo("comboWrapper").css("display",visible()?"inline-block":"none")}};ko.bindingHandlers.igComboDisable={update:function(element,valueAccessor){var disabled=valueAccessor(),combo=$(element);if(!ko.isObservable(disabled)){return}combo.igCombo("option","disabled",disabled())}}});
|
@ -0,0 +1,26 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI igDataChart KnockoutJS extension 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
* Depends on:
|
||||
* jquery-1.9.1.js
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
* infragistics.util.js
|
||||
* infragistics.ui.chart.js
|
||||
* infragistics.dv.core.js
|
||||
* infragistics.chart_piechart.js
|
||||
* infragistics.chart_categorychart.js
|
||||
* infragistics.chart_financialchart.js
|
||||
* infragistics.chart_polarchart.js
|
||||
* infragistics.chart_radialchart.js
|
||||
* infragistics.chart_rangecategorychart.js
|
||||
* infragistics.chart_scatterchart.js
|
||||
* infragistics.dvcommonwidget.js
|
||||
* infragistics.dataSource.js
|
||||
* infragistics.util.js
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery","knockout","../modules/infragistics.ui.chart"],factory)}else{factory(jQuery,ko)}})(function($,ko){ko.bindingHandlers.igDataChart={init:function(element,valueAccessor){var options=$.extend(true,{},ko.utils.unwrapObservable(valueAccessor())),ds,i,addHandler,deleteHandler,rootItem,current;addHandler=function(data,index){var ds=options.dataSource,rootElem,current;rootElem=$(element).find("#rootElem");current=$("<li><ul></ul></li>");if(index===0){rootElem.prepend(current)}else if(index===ds.length-1){rootElem.append(current)}else{$($(rootElem).children()[index]).before(current)}$(element).igDataChart("notifyInsertItem",options.dataSource,index,data);ko.applyBindingsToNode(current[0],{igDataChartRecord:{value:ds[index],chartInstance:$(element),dataSourceInstance:ds}},ds[i])};deleteHandler=function(data,index){var ds=options.dataSource,rootElem;rootElem=$(element).find("#rootElem");if(index===0){$(rootElem).children().first().remove()}else if(index===ds.length){$(rootElem).children().last().remove()}else{$($(rootElem).children()[index]).remove()}$(element).igDataChart("notifyRemoveItem",options.dataSource,index,data)};if(ko.isObservable(options.dataSource)){ds=options.dataSource();options.dataSource.subscribeArrayChanged(addHandler,deleteHandler);options.dataSource=ko.utils.unwrapObservable(options.dataSource)}else{ds=options.dataSource}if(options.expectFunctions!==true){options.expectFunctions=true}$(element).igDataChart(options);rootItem=$("<ul id='rootElem'></ul>");$("<div style='display: none !important'></div>").appendTo(element).append(rootItem);for(i=0;i<ds.length;i++){current=$("<li><ul></ul></li>");rootItem.append(current);ko.applyBindingsToNode(current[0],{igDataChartRecord:{value:ds[i],chartInstance:$(element),dataSourceInstance:ds}},ds[i])}ko.utils.domNodeDisposal.addDisposeCallback(element,function(){$(element).igDataChart("destroy")})}};ko.bindingHandlers.igDataChartRecord={init:function(element,valueAccessor){var options=valueAccessor(),key,currItem,record=options.value;for(key in record){if(record.hasOwnProperty(key)&&ko.isObservable(record[key])){currItem=$("<li class='property'></li>");$(element).find("ul").append(currItem);ko.applyBindingsToNode(currItem[0],{igDataChartItem:{value:record[key],chartInstance:valueAccessor().chartInstance,dataSourceInstance:valueAccessor().dataSourceInstance}},record[key])}}}};ko.bindingHandlers.igDataChartItem={update:function(element,valueAccessor){var chart,ds,item,index;index=$(element).parent().parent().index();ds=valueAccessor().dataSourceInstance;chart=valueAccessor().chartInstance;item=ds[index];$(chart).igDataChart("notifySetItem",ds,index,item,item)}};ko.observableArray.fn.subscribeArrayChanged=function(addCallback,deleteCallback){var previousValue=null;this.subscribe(function(_previousValue){if(previousValue===null){previousValue=_previousValue.slice(0)}},undefined,"beforeChange");this.subscribe(function(latestValue){var delta=ko.utils.compareArrays(previousValue,latestValue,true),i;for(i=0;i<delta.length;i++){switch(delta[i].status){case"retained":break;case"deleted":if(deleteCallback){deleteCallback(delta[i].value,delta[i].index);previousValue.splice(delta[i].index,1)}break;case"added":if(addCallback){addCallback(latestValue[i],delta[i].index);previousValue.splice(delta[i].index,0,latestValue[i])}break}}})}});
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,21 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI igTree KnockoutJS extension 19.1.20
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
* Depends on:
|
||||
* jquery-1.9.1.js
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
* jquery.ui.draggable.js
|
||||
* jquery.ui.droppable.js
|
||||
* infragistics.templating.js
|
||||
* infragistics.dataSource.js
|
||||
* infragistics.ui.shared.js
|
||||
* infragistics.util.js
|
||||
* infragistics.ui.tree-en.js
|
||||
* infragistics.ui.tree.js
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["../modules/infragistics.ui.tree","knockout"],factory)}else{factory(jQuery,ko)}})(function($,ko){ko.bindingHandlers.igTree={init:function(element,valueAccessor){var options=$.extend(true,{},ko.utils.unwrapObservable(valueAccessor())),ds=options.dataSource,addHandler,deleteHandler;addHandler=function(event,ui){if(ui.element.attr("data-path").split(ui.owner.options.pathSeparator).length<=1){ds.valueHasMutated();$(element).find(".ui-igtree-noderoot").each(function(index,node){ko.applyBindingsToNode(node,{igTreeNode:{value:ds()[index],bindings:options.bindings}},ds()[index])})}};deleteHandler=function(){ds.valueHasMutated()};options.dataSource=ko.utils.unwrapObservable(options.dataSource);options.nodeAdded=addHandler;options.nodeDeleted=deleteHandler;$(element).igTree(options);$(element).find(".ui-igtree-noderoot").each(function(index,node){ko.applyBindingsToNode(node,{igTreeNode:{value:ds()[index],bindings:options.bindings}},ds()[index])});ko.utils.domNodeDisposal.addDisposeCallback(element,function(){$(element).igTree("destroy")});return{controlsDescendantBindings:true}},update:function(element,valueAccessor){var options=ko.utils.unwrapObservable(valueAccessor()),ds=options.dataSource,tree=$(element);options.dataSource=ko.utils.unwrapObservable(options.dataSource);if(tree.find(".ui-igtree-noderoot").length!==ds().length){tree.igTree("option","dataSource",options.dataSource);tree.find(".ui-igtree-noderoot").each(function(index,node){ko.applyBindingsToNode(node,{igTreeNode:{value:ds()[index],bindings:options.bindings}},ds()[index])})}}};ko.bindingHandlers.igTreeNodeCollection={init:function(element,valueAccessor){var options=valueAccessor(),bindings=options.bindings,ds=options.value,children=$(element).children("li"),addHandler,deleteHandler;addHandler=function(event,ui){if(ui.element.attr("data-path").split(ui.owner.options.pathSeparator).length>1){$(element).children("li").each(function(index,node){ko.applyBindingsToNode(node,{igTreeNode:{value:ds()[index],bindings:bindings.bindings||bindings}},ds()[index])})}};deleteHandler=function(){if($(element).children("li").length!==ds().length){ds.valueHasMutated()}};$(element).closest(".ui-igtree").on("igtreenodeadded",addHandler);$(element).closest(".ui-igtree").on("igtreenodedeleted",deleteHandler);children.each(function(index,node){ko.applyBindingsToNode(node,{igTreeNode:{value:ds()[index],bindings:bindings.bindings||bindings}},ds()[index])})},update:function(element,valueAccessor){var options=valueAccessor(),children=$(element).children("li"),ds=options.value;if(children.length!==ds().length){$(element).empty();$(element).closest(".ui-igtree").igTree("addNode",ds(),$(element).parent("li"))}}};ko.bindingHandlers.igTreeNode={init:function(element,valueAccessor){var options=valueAccessor(),bindings=options.bindings,ds=options.value,children=$(element).children("ul");if(children.length>0){ko.applyBindingsToNode(children[0],{igTreeNodeCollection:{value:ds[bindings.childDataProperty],bindings:bindings}},ds[bindings.childDataProperty])}},update:function(element,valueAccessor){$(element).closest(".ui-igtree").igTree("applyChangesToNode",$(element),valueAccessor().value)}}});
|
298
Archive/wwwroot/igniteui/js/i18n/infragistics-bg.js
Normal file
298
Archive/wwwroot/igniteui/js/i18n/infragistics-bg.js
Normal file
File diff suppressed because one or more lines are too long
307
Archive/wwwroot/igniteui/js/i18n/infragistics-de.js
Normal file
307
Archive/wwwroot/igniteui/js/i18n/infragistics-de.js
Normal file
File diff suppressed because one or more lines are too long
307
Archive/wwwroot/igniteui/js/i18n/infragistics-en.js
Normal file
307
Archive/wwwroot/igniteui/js/i18n/infragistics-en.js
Normal file
File diff suppressed because one or more lines are too long
307
Archive/wwwroot/igniteui/js/i18n/infragistics-es.js
Normal file
307
Archive/wwwroot/igniteui/js/i18n/infragistics-es.js
Normal file
File diff suppressed because one or more lines are too long
308
Archive/wwwroot/igniteui/js/i18n/infragistics-fr.js
Normal file
308
Archive/wwwroot/igniteui/js/i18n/infragistics-fr.js
Normal file
File diff suppressed because one or more lines are too long
310
Archive/wwwroot/igniteui/js/i18n/infragistics-ja.js
Normal file
310
Archive/wwwroot/igniteui/js/i18n/infragistics-ja.js
Normal file
File diff suppressed because one or more lines are too long
314
Archive/wwwroot/igniteui/js/i18n/infragistics-ru.js
Normal file
314
Archive/wwwroot/igniteui/js/i18n/infragistics-ru.js
Normal file
File diff suppressed because one or more lines are too long
558
Archive/wwwroot/igniteui/js/infragistics.core.js
Normal file
558
Archive/wwwroot/igniteui/js/infragistics.core.js
Normal file
File diff suppressed because one or more lines are too long
1391
Archive/wwwroot/igniteui/js/infragistics.dv.js
Normal file
1391
Archive/wwwroot/igniteui/js/infragistics.dv.js
Normal file
File diff suppressed because one or more lines are too long
479
Archive/wwwroot/igniteui/js/infragistics.excel-bundled.js
Normal file
479
Archive/wwwroot/igniteui/js/infragistics.excel-bundled.js
Normal file
File diff suppressed because one or more lines are too long
10
Archive/wwwroot/igniteui/js/infragistics.loader.js
Normal file
10
Archive/wwwroot/igniteui/js/infragistics.loader.js
Normal file
File diff suppressed because one or more lines are too long
1191
Archive/wwwroot/igniteui/js/infragistics.lob.js
Normal file
1191
Archive/wwwroot/igniteui/js/infragistics.lob.js
Normal file
File diff suppressed because one or more lines are too long
211
Archive/wwwroot/igniteui/js/infragistics.scheduler-bundled.js
Normal file
211
Archive/wwwroot/igniteui/js/infragistics.scheduler-bundled.js
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,18 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.encoding_iso-8859-1.js 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
* Depends:
|
||||
* jquery-1.4.4.js
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
* infragistics.util.js
|
||||
* infragistics.ext_core.js
|
||||
* infragistics.ext_collections.js
|
||||
* infragistics.ext_text.js
|
||||
* infragistics.encoding.core.js
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["./infragistics.util","./infragistics.ext_core","./infragistics.ext_collections","./infragistics.ext_text","./infragistics.encoding.core"],factory)}else{factory(igRoot)}})(function($){$.ig=$.ig||{};var $$t={};$.ig.globalDefs=$.ig.globalDefs||{};$.ig.globalDefs.$$au=$$t;$.ig.$currDefinitions=$$t;$.ig.util.bulkDefine(["Iso8859Dash1:a","SingleByteEncoding:b","Encoding:c","Object:d","Type:e","Boolean:f","ValueType:g","Void:h","IConvertible:i","IFormatProvider:j","Number:k","String:l","IComparable:m","Number:n","IComparable$1:o","IEquatable$1:p","Number:q","Number:r","Number:s","NumberStyles:t","Enum:u","Array:v","IList:w","ICollection:x","IEnumerable:y","IEnumerator:z","Error:aa","Error:ab","Number:ac","String:ad","StringComparison:ae","RegExp:af","CultureInfo:ag","DateTimeFormat:ah","Calendar:ai","Date:aj","Number:ak","DayOfWeek:al","DateTimeKind:am","CalendarWeekRule:an","NumberFormatInfo:ao","CompareInfo:ap","CompareOptions:aq","IEnumerable$1:ar","IEnumerator$1:as","IDisposable:at","StringSplitOptions:au","Number:av","Number:aw","Number:ax","Number:ay","Number:az","Number:a0","Assembly:a1","Stream:a2","SeekOrigin:a3","RuntimeTypeHandle:a4","MethodInfo:a5","MethodBase:a6","MemberInfo:a7","ParameterInfo:a8","TypeCode:a9","ConstructorInfo:ba","PropertyInfo:bb","UTF8Encoding:bc","InvalidOperationException:bd","NotImplementedException:be","Script:bf","Decoder:bg","UnicodeEncoding:bh","Math:bi","AsciiEncoding:bj","ArgumentNullException:bk","DefaultDecoder:bl","ArgumentException:bm","IEncoding:bn","Dictionary$2:bo","IDictionary$2:bp","ICollection$1:bq","KeyValuePair$2:br","IDictionary:bs","IEqualityComparer$1:bt","EqualityComparer$1:bu","IEqualityComparer:bv","DefaultEqualityComparer$1:bw","Thread:bx","ThreadStart:by","MulticastDelegate:bz","IntPtr:b0","StringBuilder:b1","Environment:b2","RuntimeHelpers:b3","RuntimeFieldHandle:b4","AbstractEnumerable:b5","Func$1:b6","AbstractEnumerator:b7","GenericEnumerable$1:b8","GenericEnumerator$1:b9"]);var $a=$.ig.intDivide,$b=$.ig.util.cast,$c=$.ig.util.defType,$d=$.ig.util.defEnum,$e=$.ig.util.getBoxIfEnum,$f=$.ig.util.getDefaultValue,$g=$.ig.util.getEnumValue,$h=$.ig.util.getValue,$i=$.ig.util.intSToU,$j=$.ig.util.nullableEquals,$k=$.ig.util.nullableIsNull,$l=$.ig.util.nullableNotEquals,$m=$.ig.util.toNullable,$n=$.ig.util.toString$1,$o=$.ig.util.u32BitwiseAnd,$p=$.ig.util.u32BitwiseOr,$q=$.ig.util.u32BitwiseXor,$r=$.ig.util.u32LS,$s=$.ig.util.unwrapNullable,$t=$.ig.util.wrapNullable,$u=String.fromCharCode,$v=$.ig.util.castObjTo$t;$c("Iso8859Dash1:a","SingleByteEncoding",{ai:null,ac:function(){return this.ai},init:function(){this.ai=["\0","\x01","\x02","\x03","\x04","\x05","\x06","\x07","\b","\t","\n","\x0B","\f","\r","\x0e","\x0f","\x10","\x11","\x12","\x13","\x14","\x15","\x16","\x17","\x18","\x19","\x1a","\x1b","\x1c","\x1d","\x1e","\x1f"," ","!",'"',"#","$","%","&","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","\x7f","\x80","\x81","\x82","\x83","\x84","\x85","\x86","\x87","\x88","\x89","\x8a","\x8b","\x8c","\x8d","\x8e","\x8f","\x90","\x91","\x92","\x93","\x94","\x95","\x96","\x97","\x98","\x99","\x9a","\x9b","\x9c","\x9d","\x9e","\x9f","\xa0","\xa1","\xa2","\xa3","\xa4","\xa5","\xa6","\xa7","\xa8","\xa9","\xaa","\xab","\xac","\xad","\xae","\xaf","\xb0","\xb1","\xb2","\xb3","\xb4","\xb5","\xb6","\xb7","\xb8","\xb9","\xba","\xbb","\xbc","\xbd","\xbe","\xbf","\xc0","\xc1","\xc2","\xc3","\xc4","\xc5","\xc6","\xc7","\xc8","\xc9","\xca","\xcb","\xcc","\xcd","\xce","\xcf","\xd0","\xd1","\xd2","\xd3","\xd4","\xd5","\xd6","\xd7","\xd8","\xd9","\xda","\xdb","\xdc","\xdd","\xde","\xdf","\xe0","\xe1","\xe2","\xe3","\xe4","\xe5","\xe6","\xe7","\xe8","\xe9","\xea","\xeb","\xec","\xed","\xee","\xef","\xf0","\xf1","\xf2","\xf3","\xf4","\xf5","\xf6","\xf7","\xf8","\xf9","\xfa","\xfb","\xfc","\xfd","\xfe","\xff"];$$t.$b.init1.call(this,1,28591,"iso-8859-1")},$type:new $.ig.Type("Iso8859Dash1",$$t.$b.$type)},true)});
|
@ -0,0 +1,18 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.encoding_iso-8859-11.js 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
* Depends:
|
||||
* jquery-1.4.4.js
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
* infragistics.util.js
|
||||
* infragistics.ext_core.js
|
||||
* infragistics.ext_collections.js
|
||||
* infragistics.ext_text.js
|
||||
* infragistics.encoding.core.js
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["./infragistics.util","./infragistics.ext_core","./infragistics.ext_collections","./infragistics.ext_text","./infragistics.encoding.core"],factory)}else{factory(igRoot)}})(function($){$.ig=$.ig||{};var $$t={};$.ig.globalDefs=$.ig.globalDefs||{};$.ig.globalDefs.$$bd=$$t;$.ig.$currDefinitions=$$t;$.ig.util.bulkDefine(["Iso8859Dash11:a","SingleByteEncoding:b","Encoding:c","Object:d","Type:e","Boolean:f","ValueType:g","Void:h","IConvertible:i","IFormatProvider:j","Number:k","String:l","IComparable:m","Number:n","IComparable$1:o","IEquatable$1:p","Number:q","Number:r","Number:s","NumberStyles:t","Enum:u","Array:v","IList:w","ICollection:x","IEnumerable:y","IEnumerator:z","Error:aa","Error:ab","Number:ac","String:ad","StringComparison:ae","RegExp:af","CultureInfo:ag","DateTimeFormat:ah","Calendar:ai","Date:aj","Number:ak","DayOfWeek:al","DateTimeKind:am","CalendarWeekRule:an","NumberFormatInfo:ao","CompareInfo:ap","CompareOptions:aq","IEnumerable$1:ar","IEnumerator$1:as","IDisposable:at","StringSplitOptions:au","Number:av","Number:aw","Number:ax","Number:ay","Number:az","Number:a0","Assembly:a1","Stream:a2","SeekOrigin:a3","RuntimeTypeHandle:a4","MethodInfo:a5","MethodBase:a6","MemberInfo:a7","ParameterInfo:a8","TypeCode:a9","ConstructorInfo:ba","PropertyInfo:bb","UTF8Encoding:bc","InvalidOperationException:bd","NotImplementedException:be","Script:bf","Decoder:bg","UnicodeEncoding:bh","Math:bi","AsciiEncoding:bj","ArgumentNullException:bk","DefaultDecoder:bl","ArgumentException:bm","IEncoding:bn","Dictionary$2:bo","IDictionary$2:bp","ICollection$1:bq","KeyValuePair$2:br","IDictionary:bs","IEqualityComparer$1:bt","EqualityComparer$1:bu","IEqualityComparer:bv","DefaultEqualityComparer$1:bw","Thread:bx","ThreadStart:by","MulticastDelegate:bz","IntPtr:b0","StringBuilder:b1","Environment:b2","RuntimeHelpers:b3","RuntimeFieldHandle:b4","AbstractEnumerable:b5","Func$1:b6","AbstractEnumerator:b7","GenericEnumerable$1:b8","GenericEnumerator$1:b9"]);var $a=$.ig.intDivide,$b=$.ig.util.cast,$c=$.ig.util.defType,$d=$.ig.util.defEnum,$e=$.ig.util.getBoxIfEnum,$f=$.ig.util.getDefaultValue,$g=$.ig.util.getEnumValue,$h=$.ig.util.getValue,$i=$.ig.util.intSToU,$j=$.ig.util.nullableEquals,$k=$.ig.util.nullableIsNull,$l=$.ig.util.nullableNotEquals,$m=$.ig.util.toNullable,$n=$.ig.util.toString$1,$o=$.ig.util.u32BitwiseAnd,$p=$.ig.util.u32BitwiseOr,$q=$.ig.util.u32BitwiseXor,$r=$.ig.util.u32LS,$s=$.ig.util.unwrapNullable,$t=$.ig.util.wrapNullable,$u=String.fromCharCode,$v=$.ig.util.castObjTo$t;$c("Iso8859Dash11:a","SingleByteEncoding",{ai:null,ac:function(){return this.ai},init:function(){this.ai=["\0","\x01","\x02","\x03","\x04","\x05","\x06","\x07","\b","\t","\n","\x0B","\f","\r","\x0e","\x0f","\x10","\x11","\x12","\x13","\x14","\x15","\x16","\x17","\x18","\x19","\x1a","\x1b","\x1c","\x1d","\x1e","\x1f"," ","!",'"',"#","$","%","&","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","\x7f","\u20ac","\x81","\x82","\x83","\x84","\u2026","\x86","\x87","\x88","\x89","\x8a","\x8b","\x8c","\x8d","\x8e","\x8f","\x90","\u2018","\u2019","\u201c","\u201d","\u2022","\u2013","\u2014","\x98","\x99","\x9a","\x9b","\x9c","\x9d","\x9e","\x9f","\xa0","\u0e01","\u0e02","\u0e03","\u0e04","\u0e05","\u0e06","\u0e07","\u0e08","\u0e09","\u0e0a","\u0e0b","\u0e0c","\u0e0d","\u0e0e","\u0e0f","\u0e10","\u0e11","\u0e12","\u0e13","\u0e14","\u0e15","\u0e16","\u0e17","\u0e18","\u0e19","\u0e1a","\u0e1b","\u0e1c","\u0e1d","\u0e1e","\u0e1f","\u0e20","\u0e21","\u0e22","\u0e23","\u0e24","\u0e25","\u0e26","\u0e27","\u0e28","\u0e29","\u0e2a","\u0e2b","\u0e2c","\u0e2d","\u0e2e","\u0e2f","\u0e30","\u0e31","\u0e32","\u0e33","\u0e34","\u0e35","\u0e36","\u0e37","\u0e38","\u0e39","\u0e3a","\uf8c1","\uf8c2","\uf8c3","\uf8c4","\u0e3f","\u0e40","\u0e41","\u0e42","\u0e43","\u0e44","\u0e45","\u0e46","\u0e47","\u0e48","\u0e49","\u0e4a","\u0e4b","\u0e4c","\u0e4d","\u0e4e","\u0e4f","\u0e50","\u0e51","\u0e52","\u0e53","\u0e54","\u0e55","\u0e56","\u0e57","\u0e58","\u0e59","\u0e5a","\u0e5b","\uf8c5","\uf8c6","\uf8c7","\uf8c8"];$$t.$b.init1.call(this,1,874,"iso-8859-11")},$type:new $.ig.Type("Iso8859Dash11",$$t.$b.$type)},true)});
|
@ -0,0 +1,18 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.encoding_iso-8859-13.js 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
* Depends:
|
||||
* jquery-1.4.4.js
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
* infragistics.util.js
|
||||
* infragistics.ext_core.js
|
||||
* infragistics.ext_collections.js
|
||||
* infragistics.ext_text.js
|
||||
* infragistics.encoding.core.js
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["./infragistics.util","./infragistics.ext_core","./infragistics.ext_collections","./infragistics.ext_text","./infragistics.encoding.core"],factory)}else{factory(igRoot)}})(function($){$.ig=$.ig||{};var $$t={};$.ig.globalDefs=$.ig.globalDefs||{};$.ig.globalDefs.$$be=$$t;$.ig.$currDefinitions=$$t;$.ig.util.bulkDefine(["Iso8859Dash13:a","SingleByteEncoding:b","Encoding:c","Object:d","Type:e","Boolean:f","ValueType:g","Void:h","IConvertible:i","IFormatProvider:j","Number:k","String:l","IComparable:m","Number:n","IComparable$1:o","IEquatable$1:p","Number:q","Number:r","Number:s","NumberStyles:t","Enum:u","Array:v","IList:w","ICollection:x","IEnumerable:y","IEnumerator:z","Error:aa","Error:ab","Number:ac","String:ad","StringComparison:ae","RegExp:af","CultureInfo:ag","DateTimeFormat:ah","Calendar:ai","Date:aj","Number:ak","DayOfWeek:al","DateTimeKind:am","CalendarWeekRule:an","NumberFormatInfo:ao","CompareInfo:ap","CompareOptions:aq","IEnumerable$1:ar","IEnumerator$1:as","IDisposable:at","StringSplitOptions:au","Number:av","Number:aw","Number:ax","Number:ay","Number:az","Number:a0","Assembly:a1","Stream:a2","SeekOrigin:a3","RuntimeTypeHandle:a4","MethodInfo:a5","MethodBase:a6","MemberInfo:a7","ParameterInfo:a8","TypeCode:a9","ConstructorInfo:ba","PropertyInfo:bb","UTF8Encoding:bc","InvalidOperationException:bd","NotImplementedException:be","Script:bf","Decoder:bg","UnicodeEncoding:bh","Math:bi","AsciiEncoding:bj","ArgumentNullException:bk","DefaultDecoder:bl","ArgumentException:bm","IEncoding:bn","Dictionary$2:bo","IDictionary$2:bp","ICollection$1:bq","KeyValuePair$2:br","IDictionary:bs","IEqualityComparer$1:bt","EqualityComparer$1:bu","IEqualityComparer:bv","DefaultEqualityComparer$1:bw","Thread:bx","ThreadStart:by","MulticastDelegate:bz","IntPtr:b0","StringBuilder:b1","Environment:b2","RuntimeHelpers:b3","RuntimeFieldHandle:b4","AbstractEnumerable:b5","Func$1:b6","AbstractEnumerator:b7","GenericEnumerable$1:b8","GenericEnumerator$1:b9"]);var $a=$.ig.intDivide,$b=$.ig.util.cast,$c=$.ig.util.defType,$d=$.ig.util.defEnum,$e=$.ig.util.getBoxIfEnum,$f=$.ig.util.getDefaultValue,$g=$.ig.util.getEnumValue,$h=$.ig.util.getValue,$i=$.ig.util.intSToU,$j=$.ig.util.nullableEquals,$k=$.ig.util.nullableIsNull,$l=$.ig.util.nullableNotEquals,$m=$.ig.util.toNullable,$n=$.ig.util.toString$1,$o=$.ig.util.u32BitwiseAnd,$p=$.ig.util.u32BitwiseOr,$q=$.ig.util.u32BitwiseXor,$r=$.ig.util.u32LS,$s=$.ig.util.unwrapNullable,$t=$.ig.util.wrapNullable,$u=String.fromCharCode,$v=$.ig.util.castObjTo$t;$c("Iso8859Dash13:a","SingleByteEncoding",{ai:null,ac:function(){return this.ai},init:function(){this.ai=["\0","\x01","\x02","\x03","\x04","\x05","\x06","\x07","\b","\t","\n","\x0B","\f","\r","\x0e","\x0f","\x10","\x11","\x12","\x13","\x14","\x15","\x16","\x17","\x18","\x19","\x1a","\x1b","\x1c","\x1d","\x1e","\x1f"," ","!",'"',"#","$","%","&","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","\x7f","\x80","\x81","\x82","\x83","\x84","\x85","\x86","\x87","\x88","\x89","\x8a","\x8b","\x8c","\x8d","\x8e","\x8f","\x90","\x91","\x92","\x93","\x94","\x95","\x96","\x97","\x98","\x99","\x9a","\x9b","\x9c","\x9d","\x9e","\x9f","\xa0","\u201d","\xa2","\xa3","\xa4","\u201e","\xa6","\xa7","\xd8","\xa9","\u0156","\xab","\xac","\xad","\xae","\xc6","\xb0","\xb1","\xb2","\xb3","\u201c","\xb5","\xb6","\xb7","\xf8","\xb9","\u0157","\xbb","\xbc","\xbd","\xbe","\xe6","\u0104","\u012e","\u0100","\u0106","\xc4","\xc5","\u0118","\u0112","\u010c","\xc9","\u0179","\u0116","\u0122","\u0136","\u012a","\u013b","\u0160","\u0143","\u0145","\xd3","\u014c","\xd5","\xd6","\xd7","\u0172","\u0141","\u015a","\u016a","\xdc","\u017b","\u017d","\xdf","\u0105","\u012f","\u0101","\u0107","\xe4","\xe5","\u0119","\u0113","\u010d","\xe9","\u017a","\u0117","\u0123","\u0137","\u012b","\u013c","\u0161","\u0144","\u0146","\xf3","\u014d","\xf5","\xf6","\xf7","\u0173","\u0142","\u015b","\u016b","\xfc","\u017c","\u017e","\u2019"];$$t.$b.init1.call(this,1,28603,"iso-8859-13")},$type:new $.ig.Type("Iso8859Dash13",$$t.$b.$type)},true)});
|
@ -0,0 +1,18 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.encoding_iso-8859-15.js 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
* Depends:
|
||||
* jquery-1.4.4.js
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
* infragistics.util.js
|
||||
* infragistics.ext_core.js
|
||||
* infragistics.ext_collections.js
|
||||
* infragistics.ext_text.js
|
||||
* infragistics.encoding.core.js
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["./infragistics.util","./infragistics.ext_core","./infragistics.ext_collections","./infragistics.ext_text","./infragistics.encoding.core"],factory)}else{factory(igRoot)}})(function($){$.ig=$.ig||{};var $$t={};$.ig.globalDefs=$.ig.globalDefs||{};$.ig.globalDefs.$$bf=$$t;$.ig.$currDefinitions=$$t;$.ig.util.bulkDefine(["Iso8859Dash15:a","SingleByteEncoding:b","Encoding:c","Object:d","Type:e","Boolean:f","ValueType:g","Void:h","IConvertible:i","IFormatProvider:j","Number:k","String:l","IComparable:m","Number:n","IComparable$1:o","IEquatable$1:p","Number:q","Number:r","Number:s","NumberStyles:t","Enum:u","Array:v","IList:w","ICollection:x","IEnumerable:y","IEnumerator:z","Error:aa","Error:ab","Number:ac","String:ad","StringComparison:ae","RegExp:af","CultureInfo:ag","DateTimeFormat:ah","Calendar:ai","Date:aj","Number:ak","DayOfWeek:al","DateTimeKind:am","CalendarWeekRule:an","NumberFormatInfo:ao","CompareInfo:ap","CompareOptions:aq","IEnumerable$1:ar","IEnumerator$1:as","IDisposable:at","StringSplitOptions:au","Number:av","Number:aw","Number:ax","Number:ay","Number:az","Number:a0","Assembly:a1","Stream:a2","SeekOrigin:a3","RuntimeTypeHandle:a4","MethodInfo:a5","MethodBase:a6","MemberInfo:a7","ParameterInfo:a8","TypeCode:a9","ConstructorInfo:ba","PropertyInfo:bb","UTF8Encoding:bc","InvalidOperationException:bd","NotImplementedException:be","Script:bf","Decoder:bg","UnicodeEncoding:bh","Math:bi","AsciiEncoding:bj","ArgumentNullException:bk","DefaultDecoder:bl","ArgumentException:bm","IEncoding:bn","Dictionary$2:bo","IDictionary$2:bp","ICollection$1:bq","KeyValuePair$2:br","IDictionary:bs","IEqualityComparer$1:bt","EqualityComparer$1:bu","IEqualityComparer:bv","DefaultEqualityComparer$1:bw","Thread:bx","ThreadStart:by","MulticastDelegate:bz","IntPtr:b0","StringBuilder:b1","Environment:b2","RuntimeHelpers:b3","RuntimeFieldHandle:b4","AbstractEnumerable:b5","Func$1:b6","AbstractEnumerator:b7","GenericEnumerable$1:b8","GenericEnumerator$1:b9"]);var $a=$.ig.intDivide,$b=$.ig.util.cast,$c=$.ig.util.defType,$d=$.ig.util.defEnum,$e=$.ig.util.getBoxIfEnum,$f=$.ig.util.getDefaultValue,$g=$.ig.util.getEnumValue,$h=$.ig.util.getValue,$i=$.ig.util.intSToU,$j=$.ig.util.nullableEquals,$k=$.ig.util.nullableIsNull,$l=$.ig.util.nullableNotEquals,$m=$.ig.util.toNullable,$n=$.ig.util.toString$1,$o=$.ig.util.u32BitwiseAnd,$p=$.ig.util.u32BitwiseOr,$q=$.ig.util.u32BitwiseXor,$r=$.ig.util.u32LS,$s=$.ig.util.unwrapNullable,$t=$.ig.util.wrapNullable,$u=String.fromCharCode,$v=$.ig.util.castObjTo$t;$c("Iso8859Dash15:a","SingleByteEncoding",{ai:null,ac:function(){return this.ai},init:function(){this.ai=["\0","\x01","\x02","\x03","\x04","\x05","\x06","\x07","\b","\t","\n","\x0B","\f","\r","\x0e","\x0f","\x10","\x11","\x12","\x13","\x14","\x15","\x16","\x17","\x18","\x19","\x1a","\x1b","\x1c","\x1d","\x1e","\x1f"," ","!",'"',"#","$","%","&","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","\x7f","\x80","\x81","\x82","\x83","\x84","\x85","\x86","\x87","\x88","\x89","\x8a","\x8b","\x8c","\x8d","\x8e","\x8f","\x90","\x91","\x92","\x93","\x94","\x95","\x96","\x97","\x98","\x99","\x9a","\x9b","\x9c","\x9d","\x9e","\x9f","\xa0","\xa1","\xa2","\xa3","\u20ac","\xa5","\u0160","\xa7","\u0161","\xa9","\xaa","\xab","\xac","\xad","\xae","\xaf","\xb0","\xb1","\xb2","\xb3","\u017d","\xb5","\xb6","\xb7","\u017e","\xb9","\xba","\xbb","\u0152","\u0153","\u0178","\xbf","\xc0","\xc1","\xc2","\xc3","\xc4","\xc5","\xc6","\xc7","\xc8","\xc9","\xca","\xcb","\xcc","\xcd","\xce","\xcf","\xd0","\xd1","\xd2","\xd3","\xd4","\xd5","\xd6","\xd7","\xd8","\xd9","\xda","\xdb","\xdc","\xdd","\xde","\xdf","\xe0","\xe1","\xe2","\xe3","\xe4","\xe5","\xe6","\xe7","\xe8","\xe9","\xea","\xeb","\xec","\xed","\xee","\xef","\xf0","\xf1","\xf2","\xf3","\xf4","\xf5","\xf6","\xf7","\xf8","\xf9","\xfa","\xfb","\xfc","\xfd","\xfe","\xff"];$$t.$b.init1.call(this,1,28605,"iso-8859-15")},$type:new $.ig.Type("Iso8859Dash15",$$t.$b.$type)},true)});
|
@ -0,0 +1,18 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.encoding_iso-8859-2.js 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
* Depends:
|
||||
* jquery-1.4.4.js
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
* infragistics.util.js
|
||||
* infragistics.ext_core.js
|
||||
* infragistics.ext_collections.js
|
||||
* infragistics.ext_text.js
|
||||
* infragistics.encoding.core.js
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["./infragistics.util","./infragistics.ext_core","./infragistics.ext_collections","./infragistics.ext_text","./infragistics.encoding.core"],factory)}else{factory(igRoot)}})(function($){$.ig=$.ig||{};var $$t={};$.ig.globalDefs=$.ig.globalDefs||{};$.ig.globalDefs.$$av=$$t;$.ig.$currDefinitions=$$t;$.ig.util.bulkDefine(["Iso8859Dash2:a","SingleByteEncoding:b","Encoding:c","Object:d","Type:e","Boolean:f","ValueType:g","Void:h","IConvertible:i","IFormatProvider:j","Number:k","String:l","IComparable:m","Number:n","IComparable$1:o","IEquatable$1:p","Number:q","Number:r","Number:s","NumberStyles:t","Enum:u","Array:v","IList:w","ICollection:x","IEnumerable:y","IEnumerator:z","Error:aa","Error:ab","Number:ac","String:ad","StringComparison:ae","RegExp:af","CultureInfo:ag","DateTimeFormat:ah","Calendar:ai","Date:aj","Number:ak","DayOfWeek:al","DateTimeKind:am","CalendarWeekRule:an","NumberFormatInfo:ao","CompareInfo:ap","CompareOptions:aq","IEnumerable$1:ar","IEnumerator$1:as","IDisposable:at","StringSplitOptions:au","Number:av","Number:aw","Number:ax","Number:ay","Number:az","Number:a0","Assembly:a1","Stream:a2","SeekOrigin:a3","RuntimeTypeHandle:a4","MethodInfo:a5","MethodBase:a6","MemberInfo:a7","ParameterInfo:a8","TypeCode:a9","ConstructorInfo:ba","PropertyInfo:bb","UTF8Encoding:bc","InvalidOperationException:bd","NotImplementedException:be","Script:bf","Decoder:bg","UnicodeEncoding:bh","Math:bi","AsciiEncoding:bj","ArgumentNullException:bk","DefaultDecoder:bl","ArgumentException:bm","IEncoding:bn","Dictionary$2:bo","IDictionary$2:bp","ICollection$1:bq","KeyValuePair$2:br","IDictionary:bs","IEqualityComparer$1:bt","EqualityComparer$1:bu","IEqualityComparer:bv","DefaultEqualityComparer$1:bw","Thread:bx","ThreadStart:by","MulticastDelegate:bz","IntPtr:b0","StringBuilder:b1","Environment:b2","RuntimeHelpers:b3","RuntimeFieldHandle:b4","AbstractEnumerable:b5","Func$1:b6","AbstractEnumerator:b7","GenericEnumerable$1:b8","GenericEnumerator$1:b9"]);var $a=$.ig.intDivide,$b=$.ig.util.cast,$c=$.ig.util.defType,$d=$.ig.util.defEnum,$e=$.ig.util.getBoxIfEnum,$f=$.ig.util.getDefaultValue,$g=$.ig.util.getEnumValue,$h=$.ig.util.getValue,$i=$.ig.util.intSToU,$j=$.ig.util.nullableEquals,$k=$.ig.util.nullableIsNull,$l=$.ig.util.nullableNotEquals,$m=$.ig.util.toNullable,$n=$.ig.util.toString$1,$o=$.ig.util.u32BitwiseAnd,$p=$.ig.util.u32BitwiseOr,$q=$.ig.util.u32BitwiseXor,$r=$.ig.util.u32LS,$s=$.ig.util.unwrapNullable,$t=$.ig.util.wrapNullable,$u=String.fromCharCode,$v=$.ig.util.castObjTo$t;$c("Iso8859Dash2:a","SingleByteEncoding",{ai:null,ac:function(){return this.ai},init:function(){this.ai=["\0","\x01","\x02","\x03","\x04","\x05","\x06","\x07","\b","\t","\n","\x0B","\f","\r","\x0e","\x0f","\x10","\x11","\x12","\x13","\x14","\x15","\x16","\x17","\x18","\x19","\x1a","\x1b","\x1c","\x1d","\x1e","\x1f"," ","!",'"',"#","$","%","&","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","\x7f","\x80","\x81","\x82","\x83","\x84","\x85","\x86","\x87","\x88","\x89","\x8a","\x8b","\x8c","\x8d","\x8e","\x8f","\x90","\x91","\x92","\x93","\x94","\x95","\x96","\x97","\x98","\x99","\x9a","\x9b","\x9c","\x9d","\x9e","\x9f","\xa0","\u0104","\u02d8","\u0141","\xa4","\u013d","\u015a","\xa7","\xa8","\u0160","\u015e","\u0164","\u0179","\xad","\u017d","\u017b","\xb0","\u0105","\u02db","\u0142","\xb4","\u013e","\u015b","\u02c7","\xb8","\u0161","\u015f","\u0165","\u017a","\u02dd","\u017e","\u017c","\u0154","\xc1","\xc2","\u0102","\xc4","\u0139","\u0106","\xc7","\u010c","\xc9","\u0118","\xcb","\u011a","\xcd","\xce","\u010e","\u0110","\u0143","\u0147","\xd3","\xd4","\u0150","\xd6","\xd7","\u0158","\u016e","\xda","\u0170","\xdc","\xdd","\u0162","\xdf","\u0155","\xe1","\xe2","\u0103","\xe4","\u013a","\u0107","\xe7","\u010d","\xe9","\u0119","\xeb","\u011b","\xed","\xee","\u010f","\u0111","\u0144","\u0148","\xf3","\xf4","\u0151","\xf6","\xf7","\u0159","\u016f","\xfa","\u0171","\xfc","\xfd","\u0163","\u02d9"];$$t.$b.init1.call(this,1,28592,"iso-8859-2")},$type:new $.ig.Type("Iso8859Dash2",$$t.$b.$type)},true)});
|
@ -0,0 +1,18 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.encoding_iso-8859-3.js 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
* Depends:
|
||||
* jquery-1.4.4.js
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
* infragistics.util.js
|
||||
* infragistics.ext_core.js
|
||||
* infragistics.ext_collections.js
|
||||
* infragistics.ext_text.js
|
||||
* infragistics.encoding.core.js
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["./infragistics.util","./infragistics.ext_core","./infragistics.ext_collections","./infragistics.ext_text","./infragistics.encoding.core"],factory)}else{factory(igRoot)}})(function($){$.ig=$.ig||{};var $$t={};$.ig.globalDefs=$.ig.globalDefs||{};$.ig.globalDefs.$$aw=$$t;$.ig.$currDefinitions=$$t;$.ig.util.bulkDefine(["Iso8859Dash3:a","SingleByteEncoding:b","Encoding:c","Object:d","Type:e","Boolean:f","ValueType:g","Void:h","IConvertible:i","IFormatProvider:j","Number:k","String:l","IComparable:m","Number:n","IComparable$1:o","IEquatable$1:p","Number:q","Number:r","Number:s","NumberStyles:t","Enum:u","Array:v","IList:w","ICollection:x","IEnumerable:y","IEnumerator:z","Error:aa","Error:ab","Number:ac","String:ad","StringComparison:ae","RegExp:af","CultureInfo:ag","DateTimeFormat:ah","Calendar:ai","Date:aj","Number:ak","DayOfWeek:al","DateTimeKind:am","CalendarWeekRule:an","NumberFormatInfo:ao","CompareInfo:ap","CompareOptions:aq","IEnumerable$1:ar","IEnumerator$1:as","IDisposable:at","StringSplitOptions:au","Number:av","Number:aw","Number:ax","Number:ay","Number:az","Number:a0","Assembly:a1","Stream:a2","SeekOrigin:a3","RuntimeTypeHandle:a4","MethodInfo:a5","MethodBase:a6","MemberInfo:a7","ParameterInfo:a8","TypeCode:a9","ConstructorInfo:ba","PropertyInfo:bb","UTF8Encoding:bc","InvalidOperationException:bd","NotImplementedException:be","Script:bf","Decoder:bg","UnicodeEncoding:bh","Math:bi","AsciiEncoding:bj","ArgumentNullException:bk","DefaultDecoder:bl","ArgumentException:bm","IEncoding:bn","Dictionary$2:bo","IDictionary$2:bp","ICollection$1:bq","KeyValuePair$2:br","IDictionary:bs","IEqualityComparer$1:bt","EqualityComparer$1:bu","IEqualityComparer:bv","DefaultEqualityComparer$1:bw","Thread:bx","ThreadStart:by","MulticastDelegate:bz","IntPtr:b0","StringBuilder:b1","Environment:b2","RuntimeHelpers:b3","RuntimeFieldHandle:b4","AbstractEnumerable:b5","Func$1:b6","AbstractEnumerator:b7","GenericEnumerable$1:b8","GenericEnumerator$1:b9"]);var $a=$.ig.intDivide,$b=$.ig.util.cast,$c=$.ig.util.defType,$d=$.ig.util.defEnum,$e=$.ig.util.getBoxIfEnum,$f=$.ig.util.getDefaultValue,$g=$.ig.util.getEnumValue,$h=$.ig.util.getValue,$i=$.ig.util.intSToU,$j=$.ig.util.nullableEquals,$k=$.ig.util.nullableIsNull,$l=$.ig.util.nullableNotEquals,$m=$.ig.util.toNullable,$n=$.ig.util.toString$1,$o=$.ig.util.u32BitwiseAnd,$p=$.ig.util.u32BitwiseOr,$q=$.ig.util.u32BitwiseXor,$r=$.ig.util.u32LS,$s=$.ig.util.unwrapNullable,$t=$.ig.util.wrapNullable,$u=String.fromCharCode,$v=$.ig.util.castObjTo$t;$c("Iso8859Dash3:a","SingleByteEncoding",{ai:null,ac:function(){return this.ai},init:function(){this.ai=["\0","\x01","\x02","\x03","\x04","\x05","\x06","\x07","\b","\t","\n","\x0B","\f","\r","\x0e","\x0f","\x10","\x11","\x12","\x13","\x14","\x15","\x16","\x17","\x18","\x19","\x1a","\x1b","\x1c","\x1d","\x1e","\x1f"," ","!",'"',"#","$","%","&","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","\x7f","\x80","\x81","\x82","\x83","\x84","\x85","\x86","\x87","\x88","\x89","\x8a","\x8b","\x8c","\x8d","\x8e","\x8f","\x90","\x91","\x92","\x93","\x94","\x95","\x96","\x97","\x98","\x99","\x9a","\x9b","\x9c","\x9d","\x9e","\x9f","\xa0","\u0126","\u02d8","\xa3","\xa4","\uf7f5","\u0124","\xa7","\xa8","\u0130","\u015e","\u011e","\u0134","\xad","\uf7f6","\u017b","\xb0","\u0127","\xb2","\xb3","\xb4","\xb5","\u0125","\xb7","\xb8","\u0131","\u015f","\u011f","\u0135","\xbd","\uf7f7","\u017c","\xc0","\xc1","\xc2","\uf7f8","\xc4","\u010a","\u0108","\xc7","\xc8","\xc9","\xca","\xcb","\xcc","\xcd","\xce","\xcf","\uf7f9","\xd1","\xd2","\xd3","\xd4","\u0120","\xd6","\xd7","\u011c","\xd9","\xda","\xdb","\xdc","\u016c","\u015c","\xdf","\xe0","\xe1","\xe2","\uf7fa","\xe4","\u010b","\u0109","\xe7","\xe8","\xe9","\xea","\xeb","\xec","\xed","\xee","\xef","\uf7fb","\xf1","\xf2","\xf3","\xf4","\u0121","\xf6","\xf7","\u011d","\xf9","\xfa","\xfb","\xfc","\u016d","\u015d","\u02d9"];$$t.$b.init1.call(this,1,28593,"iso-8859-3")},$type:new $.ig.Type("Iso8859Dash3",$$t.$b.$type)},true)});
|
@ -0,0 +1,18 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.encoding_iso-8859-4.js 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
* Depends:
|
||||
* jquery-1.4.4.js
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
* infragistics.util.js
|
||||
* infragistics.ext_core.js
|
||||
* infragistics.ext_collections.js
|
||||
* infragistics.ext_text.js
|
||||
* infragistics.encoding.core.js
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["./infragistics.util","./infragistics.ext_core","./infragistics.ext_collections","./infragistics.ext_text","./infragistics.encoding.core"],factory)}else{factory(igRoot)}})(function($){$.ig=$.ig||{};var $$t={};$.ig.globalDefs=$.ig.globalDefs||{};$.ig.globalDefs.$$ax=$$t;$.ig.$currDefinitions=$$t;$.ig.util.bulkDefine(["Iso8859Dash4:a","SingleByteEncoding:b","Encoding:c","Object:d","Type:e","Boolean:f","ValueType:g","Void:h","IConvertible:i","IFormatProvider:j","Number:k","String:l","IComparable:m","Number:n","IComparable$1:o","IEquatable$1:p","Number:q","Number:r","Number:s","NumberStyles:t","Enum:u","Array:v","IList:w","ICollection:x","IEnumerable:y","IEnumerator:z","Error:aa","Error:ab","Number:ac","String:ad","StringComparison:ae","RegExp:af","CultureInfo:ag","DateTimeFormat:ah","Calendar:ai","Date:aj","Number:ak","DayOfWeek:al","DateTimeKind:am","CalendarWeekRule:an","NumberFormatInfo:ao","CompareInfo:ap","CompareOptions:aq","IEnumerable$1:ar","IEnumerator$1:as","IDisposable:at","StringSplitOptions:au","Number:av","Number:aw","Number:ax","Number:ay","Number:az","Number:a0","Assembly:a1","Stream:a2","SeekOrigin:a3","RuntimeTypeHandle:a4","MethodInfo:a5","MethodBase:a6","MemberInfo:a7","ParameterInfo:a8","TypeCode:a9","ConstructorInfo:ba","PropertyInfo:bb","UTF8Encoding:bc","InvalidOperationException:bd","NotImplementedException:be","Script:bf","Decoder:bg","UnicodeEncoding:bh","Math:bi","AsciiEncoding:bj","ArgumentNullException:bk","DefaultDecoder:bl","ArgumentException:bm","IEncoding:bn","Dictionary$2:bo","IDictionary$2:bp","ICollection$1:bq","KeyValuePair$2:br","IDictionary:bs","IEqualityComparer$1:bt","EqualityComparer$1:bu","IEqualityComparer:bv","DefaultEqualityComparer$1:bw","Thread:bx","ThreadStart:by","MulticastDelegate:bz","IntPtr:b0","StringBuilder:b1","Environment:b2","RuntimeHelpers:b3","RuntimeFieldHandle:b4","AbstractEnumerable:b5","Func$1:b6","AbstractEnumerator:b7","GenericEnumerable$1:b8","GenericEnumerator$1:b9"]);var $a=$.ig.intDivide,$b=$.ig.util.cast,$c=$.ig.util.defType,$d=$.ig.util.defEnum,$e=$.ig.util.getBoxIfEnum,$f=$.ig.util.getDefaultValue,$g=$.ig.util.getEnumValue,$h=$.ig.util.getValue,$i=$.ig.util.intSToU,$j=$.ig.util.nullableEquals,$k=$.ig.util.nullableIsNull,$l=$.ig.util.nullableNotEquals,$m=$.ig.util.toNullable,$n=$.ig.util.toString$1,$o=$.ig.util.u32BitwiseAnd,$p=$.ig.util.u32BitwiseOr,$q=$.ig.util.u32BitwiseXor,$r=$.ig.util.u32LS,$s=$.ig.util.unwrapNullable,$t=$.ig.util.wrapNullable,$u=String.fromCharCode,$v=$.ig.util.castObjTo$t;$c("Iso8859Dash4:a","SingleByteEncoding",{ai:null,ac:function(){return this.ai},init:function(){this.ai=["\0","\x01","\x02","\x03","\x04","\x05","\x06","\x07","\b","\t","\n","\x0B","\f","\r","\x0e","\x0f","\x10","\x11","\x12","\x13","\x14","\x15","\x16","\x17","\x18","\x19","\x1a","\x1b","\x1c","\x1d","\x1e","\x1f"," ","!",'"',"#","$","%","&","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","\x7f","\x80","\x81","\x82","\x83","\x84","\x85","\x86","\x87","\x88","\x89","\x8a","\x8b","\x8c","\x8d","\x8e","\x8f","\x90","\x91","\x92","\x93","\x94","\x95","\x96","\x97","\x98","\x99","\x9a","\x9b","\x9c","\x9d","\x9e","\x9f","\xa0","\u0104","\u0138","\u0156","\xa4","\u0128","\u013b","\xa7","\xa8","\u0160","\u0112","\u0122","\u0166","\xad","\u017d","\xaf","\xb0","\u0105","\u02db","\u0157","\xb4","\u0129","\u013c","\u02c7","\xb8","\u0161","\u0113","\u0123","\u0167","\u014a","\u017e","\u014b","\u0100","\xc1","\xc2","\xc3","\xc4","\xc5","\xc6","\u012e","\u010c","\xc9","\u0118","\xcb","\u0116","\xcd","\xce","\u012a","\u0110","\u0145","\u014c","\u0136","\xd4","\xd5","\xd6","\xd7","\xd8","\u0172","\xda","\xdb","\xdc","\u0168","\u016a","\xdf","\u0101","\xe1","\xe2","\xe3","\xe4","\xe5","\xe6","\u012f","\u010d","\xe9","\u0119","\xeb","\u0117","\xed","\xee","\u012b","\u0111","\u0146","\u014d","\u0137","\xf4","\xf5","\xf6","\xf7","\xf8","\u0173","\xfa","\xfb","\xfc","\u0169","\u016b","\u02d9"];$$t.$b.init1.call(this,1,28594,"iso-8859-4")},$type:new $.ig.Type("Iso8859Dash4",$$t.$b.$type)},true)});
|
@ -0,0 +1,18 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.encoding_iso-8859-5.js 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
* Depends:
|
||||
* jquery-1.4.4.js
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
* infragistics.util.js
|
||||
* infragistics.ext_core.js
|
||||
* infragistics.ext_collections.js
|
||||
* infragistics.ext_text.js
|
||||
* infragistics.encoding.core.js
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["./infragistics.util","./infragistics.ext_core","./infragistics.ext_collections","./infragistics.ext_text","./infragistics.encoding.core"],factory)}else{factory(igRoot)}})(function($){$.ig=$.ig||{};var $$t={};$.ig.globalDefs=$.ig.globalDefs||{};$.ig.globalDefs.$$ay=$$t;$.ig.$currDefinitions=$$t;$.ig.util.bulkDefine(["Iso8859Dash5:a","SingleByteEncoding:b","Encoding:c","Object:d","Type:e","Boolean:f","ValueType:g","Void:h","IConvertible:i","IFormatProvider:j","Number:k","String:l","IComparable:m","Number:n","IComparable$1:o","IEquatable$1:p","Number:q","Number:r","Number:s","NumberStyles:t","Enum:u","Array:v","IList:w","ICollection:x","IEnumerable:y","IEnumerator:z","Error:aa","Error:ab","Number:ac","String:ad","StringComparison:ae","RegExp:af","CultureInfo:ag","DateTimeFormat:ah","Calendar:ai","Date:aj","Number:ak","DayOfWeek:al","DateTimeKind:am","CalendarWeekRule:an","NumberFormatInfo:ao","CompareInfo:ap","CompareOptions:aq","IEnumerable$1:ar","IEnumerator$1:as","IDisposable:at","StringSplitOptions:au","Number:av","Number:aw","Number:ax","Number:ay","Number:az","Number:a0","Assembly:a1","Stream:a2","SeekOrigin:a3","RuntimeTypeHandle:a4","MethodInfo:a5","MethodBase:a6","MemberInfo:a7","ParameterInfo:a8","TypeCode:a9","ConstructorInfo:ba","PropertyInfo:bb","UTF8Encoding:bc","InvalidOperationException:bd","NotImplementedException:be","Script:bf","Decoder:bg","UnicodeEncoding:bh","Math:bi","AsciiEncoding:bj","ArgumentNullException:bk","DefaultDecoder:bl","ArgumentException:bm","IEncoding:bn","Dictionary$2:bo","IDictionary$2:bp","ICollection$1:bq","KeyValuePair$2:br","IDictionary:bs","IEqualityComparer$1:bt","EqualityComparer$1:bu","IEqualityComparer:bv","DefaultEqualityComparer$1:bw","Thread:bx","ThreadStart:by","MulticastDelegate:bz","IntPtr:b0","StringBuilder:b1","Environment:b2","RuntimeHelpers:b3","RuntimeFieldHandle:b4","AbstractEnumerable:b5","Func$1:b6","AbstractEnumerator:b7","GenericEnumerable$1:b8","GenericEnumerator$1:b9"]);var $a=$.ig.intDivide,$b=$.ig.util.cast,$c=$.ig.util.defType,$d=$.ig.util.defEnum,$e=$.ig.util.getBoxIfEnum,$f=$.ig.util.getDefaultValue,$g=$.ig.util.getEnumValue,$h=$.ig.util.getValue,$i=$.ig.util.intSToU,$j=$.ig.util.nullableEquals,$k=$.ig.util.nullableIsNull,$l=$.ig.util.nullableNotEquals,$m=$.ig.util.toNullable,$n=$.ig.util.toString$1,$o=$.ig.util.u32BitwiseAnd,$p=$.ig.util.u32BitwiseOr,$q=$.ig.util.u32BitwiseXor,$r=$.ig.util.u32LS,$s=$.ig.util.unwrapNullable,$t=$.ig.util.wrapNullable,$u=String.fromCharCode,$v=$.ig.util.castObjTo$t;$c("Iso8859Dash5:a","SingleByteEncoding",{ai:null,ac:function(){return this.ai},init:function(){this.ai=["\0","\x01","\x02","\x03","\x04","\x05","\x06","\x07","\b","\t","\n","\x0B","\f","\r","\x0e","\x0f","\x10","\x11","\x12","\x13","\x14","\x15","\x16","\x17","\x18","\x19","\x1a","\x1b","\x1c","\x1d","\x1e","\x1f"," ","!",'"',"#","$","%","&","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","\x7f","\x80","\x81","\x82","\x83","\x84","\x85","\x86","\x87","\x88","\x89","\x8a","\x8b","\x8c","\x8d","\x8e","\x8f","\x90","\x91","\x92","\x93","\x94","\x95","\x96","\x97","\x98","\x99","\x9a","\x9b","\x9c","\x9d","\x9e","\x9f","\xa0","\u0401","\u0402","\u0403","\u0404","\u0405","\u0406","\u0407","\u0408","\u0409","\u040a","\u040b","\u040c","\xad","\u040e","\u040f","\u0410","\u0411","\u0412","\u0413","\u0414","\u0415","\u0416","\u0417","\u0418","\u0419","\u041a","\u041b","\u041c","\u041d","\u041e","\u041f","\u0420","\u0421","\u0422","\u0423","\u0424","\u0425","\u0426","\u0427","\u0428","\u0429","\u042a","\u042b","\u042c","\u042d","\u042e","\u042f","\u0430","\u0431","\u0432","\u0433","\u0434","\u0435","\u0436","\u0437","\u0438","\u0439","\u043a","\u043b","\u043c","\u043d","\u043e","\u043f","\u0440","\u0441","\u0442","\u0443","\u0444","\u0445","\u0446","\u0447","\u0448","\u0449","\u044a","\u044b","\u044c","\u044d","\u044e","\u044f","\u2116","\u0451","\u0452","\u0453","\u0454","\u0455","\u0456","\u0457","\u0458","\u0459","\u045a","\u045b","\u045c","\xa7","\u045e","\u045f"];$$t.$b.init1.call(this,1,28595,"iso-8859-5")},$type:new $.ig.Type("Iso8859Dash5",$$t.$b.$type)},true)});
|
@ -0,0 +1,18 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.encoding_iso-8859-6.js 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
* Depends:
|
||||
* jquery-1.4.4.js
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
* infragistics.util.js
|
||||
* infragistics.ext_core.js
|
||||
* infragistics.ext_collections.js
|
||||
* infragistics.ext_text.js
|
||||
* infragistics.encoding.core.js
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["./infragistics.util","./infragistics.ext_core","./infragistics.ext_collections","./infragistics.ext_text","./infragistics.encoding.core"],factory)}else{factory(igRoot)}})(function($){$.ig=$.ig||{};var $$t={};$.ig.globalDefs=$.ig.globalDefs||{};$.ig.globalDefs.$$az=$$t;$.ig.$currDefinitions=$$t;$.ig.util.bulkDefine(["Iso8859Dash6:a","SingleByteEncoding:b","Encoding:c","Object:d","Type:e","Boolean:f","ValueType:g","Void:h","IConvertible:i","IFormatProvider:j","Number:k","String:l","IComparable:m","Number:n","IComparable$1:o","IEquatable$1:p","Number:q","Number:r","Number:s","NumberStyles:t","Enum:u","Array:v","IList:w","ICollection:x","IEnumerable:y","IEnumerator:z","Error:aa","Error:ab","Number:ac","String:ad","StringComparison:ae","RegExp:af","CultureInfo:ag","DateTimeFormat:ah","Calendar:ai","Date:aj","Number:ak","DayOfWeek:al","DateTimeKind:am","CalendarWeekRule:an","NumberFormatInfo:ao","CompareInfo:ap","CompareOptions:aq","IEnumerable$1:ar","IEnumerator$1:as","IDisposable:at","StringSplitOptions:au","Number:av","Number:aw","Number:ax","Number:ay","Number:az","Number:a0","Assembly:a1","Stream:a2","SeekOrigin:a3","RuntimeTypeHandle:a4","MethodInfo:a5","MethodBase:a6","MemberInfo:a7","ParameterInfo:a8","TypeCode:a9","ConstructorInfo:ba","PropertyInfo:bb","UTF8Encoding:bc","InvalidOperationException:bd","NotImplementedException:be","Script:bf","Decoder:bg","UnicodeEncoding:bh","Math:bi","AsciiEncoding:bj","ArgumentNullException:bk","DefaultDecoder:bl","ArgumentException:bm","IEncoding:bn","Dictionary$2:bo","IDictionary$2:bp","ICollection$1:bq","KeyValuePair$2:br","IDictionary:bs","IEqualityComparer$1:bt","EqualityComparer$1:bu","IEqualityComparer:bv","DefaultEqualityComparer$1:bw","Thread:bx","ThreadStart:by","MulticastDelegate:bz","IntPtr:b0","StringBuilder:b1","Environment:b2","RuntimeHelpers:b3","RuntimeFieldHandle:b4","AbstractEnumerable:b5","Func$1:b6","AbstractEnumerator:b7","GenericEnumerable$1:b8","GenericEnumerator$1:b9"]);var $a=$.ig.intDivide,$b=$.ig.util.cast,$c=$.ig.util.defType,$d=$.ig.util.defEnum,$e=$.ig.util.getBoxIfEnum,$f=$.ig.util.getDefaultValue,$g=$.ig.util.getEnumValue,$h=$.ig.util.getValue,$i=$.ig.util.intSToU,$j=$.ig.util.nullableEquals,$k=$.ig.util.nullableIsNull,$l=$.ig.util.nullableNotEquals,$m=$.ig.util.toNullable,$n=$.ig.util.toString$1,$o=$.ig.util.u32BitwiseAnd,$p=$.ig.util.u32BitwiseOr,$q=$.ig.util.u32BitwiseXor,$r=$.ig.util.u32LS,$s=$.ig.util.unwrapNullable,$t=$.ig.util.wrapNullable,$u=String.fromCharCode,$v=$.ig.util.castObjTo$t;$c("Iso8859Dash6:a","SingleByteEncoding",{ai:null,ac:function(){return this.ai},init:function(){this.ai=["\0","\x01","\x02","\x03","\x04","\x05","\x06","\x07","\b","\t","\n","\x0B","\f","\r","\x0e","\x0f","\x10","\x11","\x12","\x13","\x14","\x15","\x16","\x17","\x18","\x19","\x1a","\x1b","\x1c","\x1d","\x1e","\x1f"," ","!",'"',"#","$","%","&","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","\x7f","\x80","\x81","\x82","\x83","\x84","\x85","\x86","\x87","\x88","\x89","\x8a","\x8b","\x8c","\x8d","\x8e","\x8f","\x90","\x91","\x92","\x93","\x94","\x95","\x96","\x97","\x98","\x99","\x9a","\x9b","\x9c","\x9d","\x9e","\x9f","\xa0","\uf7c8","\uf7c9","\uf7ca","\xa4","\uf7cb","\uf7cc","\uf7cd","\uf7ce","\uf7cf","\uf7d0","\uf7d1","\u060c","\xad","\uf7d2","\uf7d3","\uf7d4","\uf7d5","\uf7d6","\uf7d7","\uf7d8","\uf7d9","\uf7da","\uf7db","\uf7dc","\uf7dd","\uf7de","\u061b","\uf7df","\uf7e0","\uf7e1","\u061f","\uf7e2","\u0621","\u0622","\u0623","\u0624","\u0625","\u0626","\u0627","\u0628","\u0629","\u062a","\u062b","\u062c","\u062d","\u062e","\u062f","\u0630","\u0631","\u0632","\u0633","\u0634","\u0635","\u0636","\u0637","\u0638","\u0639","\u063a","\uf7e3","\uf7e4","\uf7e5","\uf7e6","\uf7e7","\u0640","\u0641","\u0642","\u0643","\u0644","\u0645","\u0646","\u0647","\u0648","\u0649","\u064a","\u064b","\u064c","\u064d","\u064e","\u064f","\u0650","\u0651","\u0652","\uf7e8","\uf7e9","\uf7ea","\uf7eb","\uf7ec","\uf7ed","\uf7ee","\uf7ef","\uf7f0","\uf7f1","\uf7f2","\uf7f3","\uf7f4"];$$t.$b.init1.call(this,1,28596,"iso-8859-6")},$type:new $.ig.Type("Iso8859Dash6",$$t.$b.$type)},true)});
|
@ -0,0 +1,18 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.encoding_iso-8859-7.js 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
* Depends:
|
||||
* jquery-1.4.4.js
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
* infragistics.util.js
|
||||
* infragistics.ext_core.js
|
||||
* infragistics.ext_collections.js
|
||||
* infragistics.ext_text.js
|
||||
* infragistics.encoding.core.js
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["./infragistics.util","./infragistics.ext_core","./infragistics.ext_collections","./infragistics.ext_text","./infragistics.encoding.core"],factory)}else{factory(igRoot)}})(function($){$.ig=$.ig||{};var $$t={};$.ig.globalDefs=$.ig.globalDefs||{};$.ig.globalDefs.$$ba=$$t;$.ig.$currDefinitions=$$t;$.ig.util.bulkDefine(["Iso8859Dash7:a","SingleByteEncoding:b","Encoding:c","Object:d","Type:e","Boolean:f","ValueType:g","Void:h","IConvertible:i","IFormatProvider:j","Number:k","String:l","IComparable:m","Number:n","IComparable$1:o","IEquatable$1:p","Number:q","Number:r","Number:s","NumberStyles:t","Enum:u","Array:v","IList:w","ICollection:x","IEnumerable:y","IEnumerator:z","Error:aa","Error:ab","Number:ac","String:ad","StringComparison:ae","RegExp:af","CultureInfo:ag","DateTimeFormat:ah","Calendar:ai","Date:aj","Number:ak","DayOfWeek:al","DateTimeKind:am","CalendarWeekRule:an","NumberFormatInfo:ao","CompareInfo:ap","CompareOptions:aq","IEnumerable$1:ar","IEnumerator$1:as","IDisposable:at","StringSplitOptions:au","Number:av","Number:aw","Number:ax","Number:ay","Number:az","Number:a0","Assembly:a1","Stream:a2","SeekOrigin:a3","RuntimeTypeHandle:a4","MethodInfo:a5","MethodBase:a6","MemberInfo:a7","ParameterInfo:a8","TypeCode:a9","ConstructorInfo:ba","PropertyInfo:bb","UTF8Encoding:bc","InvalidOperationException:bd","NotImplementedException:be","Script:bf","Decoder:bg","UnicodeEncoding:bh","Math:bi","AsciiEncoding:bj","ArgumentNullException:bk","DefaultDecoder:bl","ArgumentException:bm","IEncoding:bn","Dictionary$2:bo","IDictionary$2:bp","ICollection$1:bq","KeyValuePair$2:br","IDictionary:bs","IEqualityComparer$1:bt","EqualityComparer$1:bu","IEqualityComparer:bv","DefaultEqualityComparer$1:bw","Thread:bx","ThreadStart:by","MulticastDelegate:bz","IntPtr:b0","StringBuilder:b1","Environment:b2","RuntimeHelpers:b3","RuntimeFieldHandle:b4","AbstractEnumerable:b5","Func$1:b6","AbstractEnumerator:b7","GenericEnumerable$1:b8","GenericEnumerator$1:b9"]);var $a=$.ig.intDivide,$b=$.ig.util.cast,$c=$.ig.util.defType,$d=$.ig.util.defEnum,$e=$.ig.util.getBoxIfEnum,$f=$.ig.util.getDefaultValue,$g=$.ig.util.getEnumValue,$h=$.ig.util.getValue,$i=$.ig.util.intSToU,$j=$.ig.util.nullableEquals,$k=$.ig.util.nullableIsNull,$l=$.ig.util.nullableNotEquals,$m=$.ig.util.toNullable,$n=$.ig.util.toString$1,$o=$.ig.util.u32BitwiseAnd,$p=$.ig.util.u32BitwiseOr,$q=$.ig.util.u32BitwiseXor,$r=$.ig.util.u32LS,$s=$.ig.util.unwrapNullable,$t=$.ig.util.wrapNullable,$u=String.fromCharCode,$v=$.ig.util.castObjTo$t;$c("Iso8859Dash7:a","SingleByteEncoding",{ai:null,ac:function(){return this.ai},init:function(){this.ai=["\0","\x01","\x02","\x03","\x04","\x05","\x06","\x07","\b","\t","\n","\x0B","\f","\r","\x0e","\x0f","\x10","\x11","\x12","\x13","\x14","\x15","\x16","\x17","\x18","\x19","\x1a","\x1b","\x1c","\x1d","\x1e","\x1f"," ","!",'"',"#","$","%","&","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","\x7f","\x80","\x81","\x82","\x83","\x84","\x85","\x86","\x87","\x88","\x89","\x8a","\x8b","\x8c","\x8d","\x8e","\x8f","\x90","\x91","\x92","\x93","\x94","\x95","\x96","\x97","\x98","\x99","\x9a","\x9b","\x9c","\x9d","\x9e","\x9f","\xa0","\u02bd","\u02bc","\xa3","\uf7c2","\uf7c3","\xa6","\xa7","\xa8","\xa9","\uf7c4","\xab","\xac","\xad","\uf7c5","\u2015","\xb0","\xb1","\xb2","\xb3","\u0384","\u0385","\u0386","\xb7","\u0388","\u0389","\u038a","\xbb","\u038c","\xbd","\u038e","\u038f","\u0390","\u0391","\u0392","\u0393","\u0394","\u0395","\u0396","\u0397","\u0398","\u0399","\u039a","\u039b","\u039c","\u039d","\u039e","\u039f","\u03a0","\u03a1","\uf7c6","\u03a3","\u03a4","\u03a5","\u03a6","\u03a7","\u03a8","\u03a9","\u03aa","\u03ab","\u03ac","\u03ad","\u03ae","\u03af","\u03b0","\u03b1","\u03b2","\u03b3","\u03b4","\u03b5","\u03b6","\u03b7","\u03b8","\u03b9","\u03ba","\u03bb","\u03bc","\u03bd","\u03be","\u03bf","\u03c0","\u03c1","\u03c2","\u03c3","\u03c4","\u03c5","\u03c6","\u03c7","\u03c8","\u03c9","\u03ca","\u03cb","\u03cc","\u03cd","\u03ce","\uf7c7"];$$t.$b.init1.call(this,1,28597,"iso-8859-7")},$type:new $.ig.Type("Iso8859Dash7",$$t.$b.$type)},true)});
|
@ -0,0 +1,18 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.encoding_iso-8859-8.js 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
* Depends:
|
||||
* jquery-1.4.4.js
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
* infragistics.util.js
|
||||
* infragistics.ext_core.js
|
||||
* infragistics.ext_collections.js
|
||||
* infragistics.ext_text.js
|
||||
* infragistics.encoding.core.js
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["./infragistics.util","./infragistics.ext_core","./infragistics.ext_collections","./infragistics.ext_text","./infragistics.encoding.core"],factory)}else{factory(igRoot)}})(function($){$.ig=$.ig||{};var $$t={};$.ig.globalDefs=$.ig.globalDefs||{};$.ig.globalDefs.$$bb=$$t;$.ig.$currDefinitions=$$t;$.ig.util.bulkDefine(["Iso8859Dash8:a","SingleByteEncoding:b","Encoding:c","Object:d","Type:e","Boolean:f","ValueType:g","Void:h","IConvertible:i","IFormatProvider:j","Number:k","String:l","IComparable:m","Number:n","IComparable$1:o","IEquatable$1:p","Number:q","Number:r","Number:s","NumberStyles:t","Enum:u","Array:v","IList:w","ICollection:x","IEnumerable:y","IEnumerator:z","Error:aa","Error:ab","Number:ac","String:ad","StringComparison:ae","RegExp:af","CultureInfo:ag","DateTimeFormat:ah","Calendar:ai","Date:aj","Number:ak","DayOfWeek:al","DateTimeKind:am","CalendarWeekRule:an","NumberFormatInfo:ao","CompareInfo:ap","CompareOptions:aq","IEnumerable$1:ar","IEnumerator$1:as","IDisposable:at","StringSplitOptions:au","Number:av","Number:aw","Number:ax","Number:ay","Number:az","Number:a0","Assembly:a1","Stream:a2","SeekOrigin:a3","RuntimeTypeHandle:a4","MethodInfo:a5","MethodBase:a6","MemberInfo:a7","ParameterInfo:a8","TypeCode:a9","ConstructorInfo:ba","PropertyInfo:bb","UTF8Encoding:bc","InvalidOperationException:bd","NotImplementedException:be","Script:bf","Decoder:bg","UnicodeEncoding:bh","Math:bi","AsciiEncoding:bj","ArgumentNullException:bk","DefaultDecoder:bl","ArgumentException:bm","IEncoding:bn","Dictionary$2:bo","IDictionary$2:bp","ICollection$1:bq","KeyValuePair$2:br","IDictionary:bs","IEqualityComparer$1:bt","EqualityComparer$1:bu","IEqualityComparer:bv","DefaultEqualityComparer$1:bw","Thread:bx","ThreadStart:by","MulticastDelegate:bz","IntPtr:b0","StringBuilder:b1","Environment:b2","RuntimeHelpers:b3","RuntimeFieldHandle:b4","AbstractEnumerable:b5","Func$1:b6","AbstractEnumerator:b7","GenericEnumerable$1:b8","GenericEnumerator$1:b9"]);var $a=$.ig.intDivide,$b=$.ig.util.cast,$c=$.ig.util.defType,$d=$.ig.util.defEnum,$e=$.ig.util.getBoxIfEnum,$f=$.ig.util.getDefaultValue,$g=$.ig.util.getEnumValue,$h=$.ig.util.getValue,$i=$.ig.util.intSToU,$j=$.ig.util.nullableEquals,$k=$.ig.util.nullableIsNull,$l=$.ig.util.nullableNotEquals,$m=$.ig.util.toNullable,$n=$.ig.util.toString$1,$o=$.ig.util.u32BitwiseAnd,$p=$.ig.util.u32BitwiseOr,$q=$.ig.util.u32BitwiseXor,$r=$.ig.util.u32LS,$s=$.ig.util.unwrapNullable,$t=$.ig.util.wrapNullable,$u=String.fromCharCode,$v=$.ig.util.castObjTo$t;$c("Iso8859Dash8:a","SingleByteEncoding",{ai:null,ac:function(){return this.ai},init:function(){this.ai=["\0","\x01","\x02","\x03","\x04","\x05","\x06","\x07","\b","\t","\n","\x0B","\f","\r","\x0e","\x0f","\x10","\x11","\x12","\x13","\x14","\x15","\x16","\x17","\x18","\x19","\x1a","\x1b","\x1c","\x1d","\x1e","\x1f"," ","!",'"',"#","$","%","&","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","\x7f","\x80","\x81","\x82","\x83","\x84","\x85","\x86","\x87","\x88","\x89","\x8a","\x8b","\x8c","\x8d","\x8e","\x8f","\x90","\x91","\x92","\x93","\x94","\x95","\x96","\x97","\x98","\x99","\x9a","\x9b","\x9c","\x9d","\x9e","\x9f","\xa0","\uf79c","\xa2","\xa3","\xa4","\xa5","\xa6","\xa7","\xa8","\xa9","\xd7","\xab","\xac","\xad","\xae","\u203e","\xb0","\xb1","\xb2","\xb3","\xb4","\xb5","\xb6","\xb7","\xb8","\xb9","\xf7","\xbb","\xbc","\xbd","\xbe","\uf79d","\uf79e","\uf79f","\uf7a0","\uf7a1","\uf7a2","\uf7a3","\uf7a4","\uf7a5","\uf7a6","\uf7a7","\uf7a8","\uf7a9","\uf7aa","\uf7ab","\uf7ac","\uf7ad","\uf7ae","\uf7af","\uf7b0","\uf7b1","\uf7b2","\uf7b3","\uf7b4","\uf7b5","\uf7b6","\uf7b7","\uf7b8","\uf7b9","\uf7ba","\uf7bb","\uf7bc","\u2017","\u05d0","\u05d1","\u05d2","\u05d3","\u05d4","\u05d5","\u05d6","\u05d7","\u05d8","\u05d9","\u05da","\u05db","\u05dc","\u05dd","\u05de","\u05df","\u05e0","\u05e1","\u05e2","\u05e3","\u05e4","\u05e5","\u05e6","\u05e7","\u05e8","\u05e9","\u05ea","\uf7bd","\uf7be","\uf7bf","\uf7c0","\uf7c1"];$$t.$b.init1.call(this,1,28598,"iso-8859-8")},$type:new $.ig.Type("Iso8859Dash8",$$t.$b.$type)},true)});
|
@ -0,0 +1,18 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.encoding_iso-8859-9.js 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
* Depends:
|
||||
* jquery-1.4.4.js
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
* infragistics.util.js
|
||||
* infragistics.ext_core.js
|
||||
* infragistics.ext_collections.js
|
||||
* infragistics.ext_text.js
|
||||
* infragistics.encoding.core.js
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["./infragistics.util","./infragistics.ext_core","./infragistics.ext_collections","./infragistics.ext_text","./infragistics.encoding.core"],factory)}else{factory(igRoot)}})(function($){$.ig=$.ig||{};var $$t={};$.ig.globalDefs=$.ig.globalDefs||{};$.ig.globalDefs.$$bc=$$t;$.ig.$currDefinitions=$$t;$.ig.util.bulkDefine(["Iso8859Dash9:a","SingleByteEncoding:b","Encoding:c","Object:d","Type:e","Boolean:f","ValueType:g","Void:h","IConvertible:i","IFormatProvider:j","Number:k","String:l","IComparable:m","Number:n","IComparable$1:o","IEquatable$1:p","Number:q","Number:r","Number:s","NumberStyles:t","Enum:u","Array:v","IList:w","ICollection:x","IEnumerable:y","IEnumerator:z","Error:aa","Error:ab","Number:ac","String:ad","StringComparison:ae","RegExp:af","CultureInfo:ag","DateTimeFormat:ah","Calendar:ai","Date:aj","Number:ak","DayOfWeek:al","DateTimeKind:am","CalendarWeekRule:an","NumberFormatInfo:ao","CompareInfo:ap","CompareOptions:aq","IEnumerable$1:ar","IEnumerator$1:as","IDisposable:at","StringSplitOptions:au","Number:av","Number:aw","Number:ax","Number:ay","Number:az","Number:a0","Assembly:a1","Stream:a2","SeekOrigin:a3","RuntimeTypeHandle:a4","MethodInfo:a5","MethodBase:a6","MemberInfo:a7","ParameterInfo:a8","TypeCode:a9","ConstructorInfo:ba","PropertyInfo:bb","UTF8Encoding:bc","InvalidOperationException:bd","NotImplementedException:be","Script:bf","Decoder:bg","UnicodeEncoding:bh","Math:bi","AsciiEncoding:bj","ArgumentNullException:bk","DefaultDecoder:bl","ArgumentException:bm","IEncoding:bn","Dictionary$2:bo","IDictionary$2:bp","ICollection$1:bq","KeyValuePair$2:br","IDictionary:bs","IEqualityComparer$1:bt","EqualityComparer$1:bu","IEqualityComparer:bv","DefaultEqualityComparer$1:bw","Thread:bx","ThreadStart:by","MulticastDelegate:bz","IntPtr:b0","StringBuilder:b1","Environment:b2","RuntimeHelpers:b3","RuntimeFieldHandle:b4","AbstractEnumerable:b5","Func$1:b6","AbstractEnumerator:b7","GenericEnumerable$1:b8","GenericEnumerator$1:b9"]);var $a=$.ig.intDivide,$b=$.ig.util.cast,$c=$.ig.util.defType,$d=$.ig.util.defEnum,$e=$.ig.util.getBoxIfEnum,$f=$.ig.util.getDefaultValue,$g=$.ig.util.getEnumValue,$h=$.ig.util.getValue,$i=$.ig.util.intSToU,$j=$.ig.util.nullableEquals,$k=$.ig.util.nullableIsNull,$l=$.ig.util.nullableNotEquals,$m=$.ig.util.toNullable,$n=$.ig.util.toString$1,$o=$.ig.util.u32BitwiseAnd,$p=$.ig.util.u32BitwiseOr,$q=$.ig.util.u32BitwiseXor,$r=$.ig.util.u32LS,$s=$.ig.util.unwrapNullable,$t=$.ig.util.wrapNullable,$u=String.fromCharCode,$v=$.ig.util.castObjTo$t;$c("Iso8859Dash9:a","SingleByteEncoding",{ai:null,ac:function(){return this.ai},init:function(){this.ai=["\0","\x01","\x02","\x03","\x04","\x05","\x06","\x07","\b","\t","\n","\x0B","\f","\r","\x0e","\x0f","\x10","\x11","\x12","\x13","\x14","\x15","\x16","\x17","\x18","\x19","\x1a","\x1b","\x1c","\x1d","\x1e","\x1f"," ","!",'"',"#","$","%","&","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","\x7f","\x80","\x81","\x82","\x83","\x84","\x85","\x86","\x87","\x88","\x89","\x8a","\x8b","\x8c","\x8d","\x8e","\x8f","\x90","\x91","\x92","\x93","\x94","\x95","\x96","\x97","\x98","\x99","\x9a","\x9b","\x9c","\x9d","\x9e","\x9f","\xa0","\xa1","\xa2","\xa3","\xa4","\xa5","\xa6","\xa7","\xa8","\xa9","\xaa","\xab","\xac","\xad","\xae","\xaf","\xb0","\xb1","\xb2","\xb3","\xb4","\xb5","\xb6","\xb7","\xb8","\xb9","\xba","\xbb","\xbc","\xbd","\xbe","\xbf","\xc0","\xc1","\xc2","\xc3","\xc4","\xc5","\xc6","\xc7","\xc8","\xc9","\xca","\xcb","\xcc","\xcd","\xce","\xcf","\u011e","\xd1","\xd2","\xd3","\xd4","\xd5","\xd6","\xd7","\xd8","\xd9","\xda","\xdb","\xdc","\u0130","\u015e","\xdf","\xe0","\xe1","\xe2","\xe3","\xe4","\xe5","\xe6","\xe7","\xe8","\xe9","\xea","\xeb","\xec","\xed","\xee","\xef","\u011f","\xf1","\xf2","\xf3","\xf4","\xf5","\xf6","\xf7","\xf8","\xf9","\xfa","\xfb","\xfc","\u0131","\u015f","\xff"];$$t.$b.init1.call(this,1,28599,"iso-8859-9")},$type:new $.ig.Type("Iso8859Dash9",$$t.$b.$type)},true)});
|
@ -0,0 +1,18 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.encoding_iso646-us.js 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
* Depends:
|
||||
* jquery-1.4.4.js
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
* infragistics.util.js
|
||||
* infragistics.ext_core.js
|
||||
* infragistics.ext_collections.js
|
||||
* infragistics.ext_text.js
|
||||
* infragistics.encoding.core.js
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["./infragistics.util","./infragistics.ext_core","./infragistics.ext_collections","./infragistics.ext_text","./infragistics.encoding.core"],factory)}else{factory(igRoot)}})(function($){$.ig=$.ig||{};var $$t={};$.ig.globalDefs=$.ig.globalDefs||{};$.ig.globalDefs.$$bh=$$t;$.ig.$currDefinitions=$$t;$.ig.util.bulkDefine(["UsAsciiEncoding:a","SingleByteEncoding:b","Encoding:c","Object:d","Type:e","Boolean:f","ValueType:g","Void:h","IConvertible:i","IFormatProvider:j","Number:k","String:l","IComparable:m","Number:n","IComparable$1:o","IEquatable$1:p","Number:q","Number:r","Number:s","NumberStyles:t","Enum:u","Array:v","IList:w","ICollection:x","IEnumerable:y","IEnumerator:z","Error:aa","Error:ab","Number:ac","String:ad","StringComparison:ae","RegExp:af","CultureInfo:ag","DateTimeFormat:ah","Calendar:ai","Date:aj","Number:ak","DayOfWeek:al","DateTimeKind:am","CalendarWeekRule:an","NumberFormatInfo:ao","CompareInfo:ap","CompareOptions:aq","IEnumerable$1:ar","IEnumerator$1:as","IDisposable:at","StringSplitOptions:au","Number:av","Number:aw","Number:ax","Number:ay","Number:az","Number:a0","Assembly:a1","Stream:a2","SeekOrigin:a3","RuntimeTypeHandle:a4","MethodInfo:a5","MethodBase:a6","MemberInfo:a7","ParameterInfo:a8","TypeCode:a9","ConstructorInfo:ba","PropertyInfo:bb","UTF8Encoding:bc","InvalidOperationException:bd","NotImplementedException:be","Script:bf","Decoder:bg","UnicodeEncoding:bh","Math:bi","AsciiEncoding:bj","ArgumentNullException:bk","DefaultDecoder:bl","ArgumentException:bm","IEncoding:bn","Dictionary$2:bo","IDictionary$2:bp","ICollection$1:bq","KeyValuePair$2:br","IDictionary:bs","IEqualityComparer$1:bt","EqualityComparer$1:bu","IEqualityComparer:bv","DefaultEqualityComparer$1:bw","Thread:bx","ThreadStart:by","MulticastDelegate:bz","IntPtr:b0","StringBuilder:b1","Environment:b2","RuntimeHelpers:b3","RuntimeFieldHandle:b4","AbstractEnumerable:b5","Func$1:b6","AbstractEnumerator:b7","GenericEnumerable$1:b8","GenericEnumerator$1:b9"]);var $a=$.ig.intDivide,$b=$.ig.util.cast,$c=$.ig.util.defType,$d=$.ig.util.defEnum,$e=$.ig.util.getBoxIfEnum,$f=$.ig.util.getDefaultValue,$g=$.ig.util.getEnumValue,$h=$.ig.util.getValue,$i=$.ig.util.intSToU,$j=$.ig.util.nullableEquals,$k=$.ig.util.nullableIsNull,$l=$.ig.util.nullableNotEquals,$m=$.ig.util.toNullable,$n=$.ig.util.toString$1,$o=$.ig.util.u32BitwiseAnd,$p=$.ig.util.u32BitwiseOr,$q=$.ig.util.u32BitwiseXor,$r=$.ig.util.u32LS,$s=$.ig.util.unwrapNullable,$t=$.ig.util.wrapNullable,$u=String.fromCharCode,$v=$.ig.util.castObjTo$t;$c("UsAsciiEncoding:a","SingleByteEncoding",{ai:null,ac:function(){return this.ai},init:function(){this.ai=["\0","\x01","\x02","\x03","\x04","\x05","\x06","\x07","\b","\t","\n","\x0B","\f","\r","\x0e","\x0f","\x10","\x11","\x12","\x13","\x14","\x15","\x16","\x17","\x18","\x19","\x1a","\x1b","\x1c","\x1d","\x1e","\x1f"," ","!",'"',"#","$","%","&","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","\x7f","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff","\uffff"];$$t.$b.init1.call(this,1,20127,"ISO646-US")},$type:new $.ig.Type("UsAsciiEncoding",$$t.$b.$type)},true)});
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,18 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.encoding_windows-1250.js 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
* Depends:
|
||||
* jquery-1.4.4.js
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
* infragistics.util.js
|
||||
* infragistics.ext_core.js
|
||||
* infragistics.ext_collections.js
|
||||
* infragistics.ext_text.js
|
||||
* infragistics.encoding.core.js
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["./infragistics.util","./infragistics.ext_core","./infragistics.ext_collections","./infragistics.ext_text","./infragistics.encoding.core"],factory)}else{factory(igRoot)}})(function($){$.ig=$.ig||{};var $$t={};$.ig.globalDefs=$.ig.globalDefs||{};$.ig.globalDefs.$$bi=$$t;$.ig.$currDefinitions=$$t;$.ig.util.bulkDefine(["Windows1250Encoding:a","SingleByteEncoding:b","Encoding:c","Object:d","Type:e","Boolean:f","ValueType:g","Void:h","IConvertible:i","IFormatProvider:j","Number:k","String:l","IComparable:m","Number:n","IComparable$1:o","IEquatable$1:p","Number:q","Number:r","Number:s","NumberStyles:t","Enum:u","Array:v","IList:w","ICollection:x","IEnumerable:y","IEnumerator:z","Error:aa","Error:ab","Number:ac","String:ad","StringComparison:ae","RegExp:af","CultureInfo:ag","DateTimeFormat:ah","Calendar:ai","Date:aj","Number:ak","DayOfWeek:al","DateTimeKind:am","CalendarWeekRule:an","NumberFormatInfo:ao","CompareInfo:ap","CompareOptions:aq","IEnumerable$1:ar","IEnumerator$1:as","IDisposable:at","StringSplitOptions:au","Number:av","Number:aw","Number:ax","Number:ay","Number:az","Number:a0","Assembly:a1","Stream:a2","SeekOrigin:a3","RuntimeTypeHandle:a4","MethodInfo:a5","MethodBase:a6","MemberInfo:a7","ParameterInfo:a8","TypeCode:a9","ConstructorInfo:ba","PropertyInfo:bb","UTF8Encoding:bc","InvalidOperationException:bd","NotImplementedException:be","Script:bf","Decoder:bg","UnicodeEncoding:bh","Math:bi","AsciiEncoding:bj","ArgumentNullException:bk","DefaultDecoder:bl","ArgumentException:bm","IEncoding:bn","Dictionary$2:bo","IDictionary$2:bp","ICollection$1:bq","KeyValuePair$2:br","IDictionary:bs","IEqualityComparer$1:bt","EqualityComparer$1:bu","IEqualityComparer:bv","DefaultEqualityComparer$1:bw","Thread:bx","ThreadStart:by","MulticastDelegate:bz","IntPtr:b0","StringBuilder:b1","Environment:b2","RuntimeHelpers:b3","RuntimeFieldHandle:b4","AbstractEnumerable:b5","Func$1:b6","AbstractEnumerator:b7","GenericEnumerable$1:b8","GenericEnumerator$1:b9"]);var $a=$.ig.intDivide,$b=$.ig.util.cast,$c=$.ig.util.defType,$d=$.ig.util.defEnum,$e=$.ig.util.getBoxIfEnum,$f=$.ig.util.getDefaultValue,$g=$.ig.util.getEnumValue,$h=$.ig.util.getValue,$i=$.ig.util.intSToU,$j=$.ig.util.nullableEquals,$k=$.ig.util.nullableIsNull,$l=$.ig.util.nullableNotEquals,$m=$.ig.util.toNullable,$n=$.ig.util.toString$1,$o=$.ig.util.u32BitwiseAnd,$p=$.ig.util.u32BitwiseOr,$q=$.ig.util.u32BitwiseXor,$r=$.ig.util.u32LS,$s=$.ig.util.unwrapNullable,$t=$.ig.util.wrapNullable,$u=String.fromCharCode,$v=$.ig.util.castObjTo$t;$c("Windows1250Encoding:a","SingleByteEncoding",{ai:null,ac:function(){return this.ai},init:function(){this.ai=["\0","\x01","\x02","\x03","\x04","\x05","\x06","\x07","\b","\t","\n","\x0B","\f","\r","\x0e","\x0f","\x10","\x11","\x12","\x13","\x14","\x15","\x16","\x17","\x18","\x19","\x1a","\x1b","\x1c","\x1d","\x1e","\x1f"," ","!",'"',"#","$","%","&","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","\x7f","\u20ac","\x81","\u201a","\x83","\u201e","\u2026","\u2020","\u2021","\x88","\u2030","\u0160","\u2039","\u015a","\u0164","\u017d","\u0179","\x90","\u2018","\u2019","\u201c","\u201d","\u2022","\u2013","\u2014","\x98","\u2122","\u0161","\u203a","\u015b","\u0165","\u017e","\u017a","\xa0","\u02c7","\u02d8","\u0141","\xa4","\u0104","\xa6","\xa7","\xa8","\xa9","\u015e","\xab","\xac","\xad","\xae","\u017b","\xb0","\xb1","\u02db","\u0142","\xb4","\xb5","\xb6","\xb7","\xb8","\u0105","\u015f","\xbb","\u013d","\u02dd","\u013e","\u017c","\u0154","\xc1","\xc2","\u0102","\xc4","\u0139","\u0106","\xc7","\u010c","\xc9","\u0118","\xcb","\u011a","\xcd","\xce","\u010e","\u0110","\u0143","\u0147","\xd3","\xd4","\u0150","\xd6","\xd7","\u0158","\u016e","\xda","\u0170","\xdc","\xdd","\u0162","\xdf","\u0155","\xe1","\xe2","\u0103","\xe4","\u013a","\u0107","\xe7","\u010d","\xe9","\u0119","\xeb","\u011b","\xed","\xee","\u010f","\u0111","\u0144","\u0148","\xf3","\xf4","\u0151","\xf6","\xf7","\u0159","\u016f","\xfa","\u0171","\xfc","\xfd","\u0163","\u02d9"];$$t.$b.init1.call(this,1,1250,"windows-1250")},$type:new $.ig.Type("Windows1250Encoding",$$t.$b.$type)},true)});
|
@ -0,0 +1,18 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.encoding_windows-1251.js 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
* Depends:
|
||||
* jquery-1.4.4.js
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
* infragistics.util.js
|
||||
* infragistics.ext_core.js
|
||||
* infragistics.ext_collections.js
|
||||
* infragistics.ext_text.js
|
||||
* infragistics.encoding.core.js
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["./infragistics.util","./infragistics.ext_core","./infragistics.ext_collections","./infragistics.ext_text","./infragistics.encoding.core"],factory)}else{factory(igRoot)}})(function($){$.ig=$.ig||{};var $$t={};$.ig.globalDefs=$.ig.globalDefs||{};$.ig.globalDefs.$$bj=$$t;$.ig.$currDefinitions=$$t;$.ig.util.bulkDefine(["Windows1251Encoding:a","SingleByteEncoding:b","Encoding:c","Object:d","Type:e","Boolean:f","ValueType:g","Void:h","IConvertible:i","IFormatProvider:j","Number:k","String:l","IComparable:m","Number:n","IComparable$1:o","IEquatable$1:p","Number:q","Number:r","Number:s","NumberStyles:t","Enum:u","Array:v","IList:w","ICollection:x","IEnumerable:y","IEnumerator:z","Error:aa","Error:ab","Number:ac","String:ad","StringComparison:ae","RegExp:af","CultureInfo:ag","DateTimeFormat:ah","Calendar:ai","Date:aj","Number:ak","DayOfWeek:al","DateTimeKind:am","CalendarWeekRule:an","NumberFormatInfo:ao","CompareInfo:ap","CompareOptions:aq","IEnumerable$1:ar","IEnumerator$1:as","IDisposable:at","StringSplitOptions:au","Number:av","Number:aw","Number:ax","Number:ay","Number:az","Number:a0","Assembly:a1","Stream:a2","SeekOrigin:a3","RuntimeTypeHandle:a4","MethodInfo:a5","MethodBase:a6","MemberInfo:a7","ParameterInfo:a8","TypeCode:a9","ConstructorInfo:ba","PropertyInfo:bb","UTF8Encoding:bc","InvalidOperationException:bd","NotImplementedException:be","Script:bf","Decoder:bg","UnicodeEncoding:bh","Math:bi","AsciiEncoding:bj","ArgumentNullException:bk","DefaultDecoder:bl","ArgumentException:bm","IEncoding:bn","Dictionary$2:bo","IDictionary$2:bp","ICollection$1:bq","KeyValuePair$2:br","IDictionary:bs","IEqualityComparer$1:bt","EqualityComparer$1:bu","IEqualityComparer:bv","DefaultEqualityComparer$1:bw","Thread:bx","ThreadStart:by","MulticastDelegate:bz","IntPtr:b0","StringBuilder:b1","Environment:b2","RuntimeHelpers:b3","RuntimeFieldHandle:b4","AbstractEnumerable:b5","Func$1:b6","AbstractEnumerator:b7","GenericEnumerable$1:b8","GenericEnumerator$1:b9"]);var $a=$.ig.intDivide,$b=$.ig.util.cast,$c=$.ig.util.defType,$d=$.ig.util.defEnum,$e=$.ig.util.getBoxIfEnum,$f=$.ig.util.getDefaultValue,$g=$.ig.util.getEnumValue,$h=$.ig.util.getValue,$i=$.ig.util.intSToU,$j=$.ig.util.nullableEquals,$k=$.ig.util.nullableIsNull,$l=$.ig.util.nullableNotEquals,$m=$.ig.util.toNullable,$n=$.ig.util.toString$1,$o=$.ig.util.u32BitwiseAnd,$p=$.ig.util.u32BitwiseOr,$q=$.ig.util.u32BitwiseXor,$r=$.ig.util.u32LS,$s=$.ig.util.unwrapNullable,$t=$.ig.util.wrapNullable,$u=String.fromCharCode,$v=$.ig.util.castObjTo$t;$c("Windows1251Encoding:a","SingleByteEncoding",{ai:null,ac:function(){return this.ai},init:function(){this.ai=["\0","\x01","\x02","\x03","\x04","\x05","\x06","\x07","\b","\t","\n","\x0B","\f","\r","\x0e","\x0f","\x10","\x11","\x12","\x13","\x14","\x15","\x16","\x17","\x18","\x19","\x1a","\x1b","\x1c","\x1d","\x1e","\x1f"," ","!",'"',"#","$","%","&","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","\x7f","\u0402","\u0403","\u201a","\u0453","\u201e","\u2026","\u2020","\u2021","\u20ac","\u2030","\u0409","\u2039","\u040a","\u040c","\u040b","\u040f","\u0452","\u2018","\u2019","\u201c","\u201d","\u2022","\u2013","\u2014","\x98","\u2122","\u0459","\u203a","\u045a","\u045c","\u045b","\u045f","\xa0","\u040e","\u045e","\u0408","\xa4","\u0490","\xa6","\xa7","\u0401","\xa9","\u0404","\xab","\xac","\xad","\xae","\u0407","\xb0","\xb1","\u0406","\u0456","\u0491","\xb5","\xb6","\xb7","\u0451","\u2116","\u0454","\xbb","\u0458","\u0405","\u0455","\u0457","\u0410","\u0411","\u0412","\u0413","\u0414","\u0415","\u0416","\u0417","\u0418","\u0419","\u041a","\u041b","\u041c","\u041d","\u041e","\u041f","\u0420","\u0421","\u0422","\u0423","\u0424","\u0425","\u0426","\u0427","\u0428","\u0429","\u042a","\u042b","\u042c","\u042d","\u042e","\u042f","\u0430","\u0431","\u0432","\u0433","\u0434","\u0435","\u0436","\u0437","\u0438","\u0439","\u043a","\u043b","\u043c","\u043d","\u043e","\u043f","\u0440","\u0441","\u0442","\u0443","\u0444","\u0445","\u0446","\u0447","\u0448","\u0449","\u044a","\u044b","\u044c","\u044d","\u044e","\u044f"];$$t.$b.init1.call(this,1,1251,"windows-1251")},$type:new $.ig.Type("Windows1251Encoding",$$t.$b.$type)},true)});
|
@ -0,0 +1,18 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.encoding_windows-1252.js 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
* Depends:
|
||||
* jquery-1.4.4.js
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
* infragistics.util.js
|
||||
* infragistics.ext_core.js
|
||||
* infragistics.ext_collections.js
|
||||
* infragistics.ext_text.js
|
||||
* infragistics.encoding.core.js
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["./infragistics.util","./infragistics.ext_core","./infragistics.ext_collections","./infragistics.ext_text","./infragistics.encoding.core"],factory)}else{factory(igRoot)}})(function($){$.ig=$.ig||{};var $$t={};$.ig.globalDefs=$.ig.globalDefs||{};$.ig.globalDefs.$$bk=$$t;$.ig.$currDefinitions=$$t;$.ig.util.bulkDefine(["Windows1252Encoding:a","SingleByteEncoding:b","Encoding:c","Object:d","Type:e","Boolean:f","ValueType:g","Void:h","IConvertible:i","IFormatProvider:j","Number:k","String:l","IComparable:m","Number:n","IComparable$1:o","IEquatable$1:p","Number:q","Number:r","Number:s","NumberStyles:t","Enum:u","Array:v","IList:w","ICollection:x","IEnumerable:y","IEnumerator:z","Error:aa","Error:ab","Number:ac","String:ad","StringComparison:ae","RegExp:af","CultureInfo:ag","DateTimeFormat:ah","Calendar:ai","Date:aj","Number:ak","DayOfWeek:al","DateTimeKind:am","CalendarWeekRule:an","NumberFormatInfo:ao","CompareInfo:ap","CompareOptions:aq","IEnumerable$1:ar","IEnumerator$1:as","IDisposable:at","StringSplitOptions:au","Number:av","Number:aw","Number:ax","Number:ay","Number:az","Number:a0","Assembly:a1","Stream:a2","SeekOrigin:a3","RuntimeTypeHandle:a4","MethodInfo:a5","MethodBase:a6","MemberInfo:a7","ParameterInfo:a8","TypeCode:a9","ConstructorInfo:ba","PropertyInfo:bb","UTF8Encoding:bc","InvalidOperationException:bd","NotImplementedException:be","Script:bf","Decoder:bg","UnicodeEncoding:bh","Math:bi","AsciiEncoding:bj","ArgumentNullException:bk","DefaultDecoder:bl","ArgumentException:bm","IEncoding:bn","Dictionary$2:bo","IDictionary$2:bp","ICollection$1:bq","KeyValuePair$2:br","IDictionary:bs","IEqualityComparer$1:bt","EqualityComparer$1:bu","IEqualityComparer:bv","DefaultEqualityComparer$1:bw","Thread:bx","ThreadStart:by","MulticastDelegate:bz","IntPtr:b0","StringBuilder:b1","Environment:b2","RuntimeHelpers:b3","RuntimeFieldHandle:b4","AbstractEnumerable:b5","Func$1:b6","AbstractEnumerator:b7","GenericEnumerable$1:b8","GenericEnumerator$1:b9"]);var $a=$.ig.intDivide,$b=$.ig.util.cast,$c=$.ig.util.defType,$d=$.ig.util.defEnum,$e=$.ig.util.getBoxIfEnum,$f=$.ig.util.getDefaultValue,$g=$.ig.util.getEnumValue,$h=$.ig.util.getValue,$i=$.ig.util.intSToU,$j=$.ig.util.nullableEquals,$k=$.ig.util.nullableIsNull,$l=$.ig.util.nullableNotEquals,$m=$.ig.util.toNullable,$n=$.ig.util.toString$1,$o=$.ig.util.u32BitwiseAnd,$p=$.ig.util.u32BitwiseOr,$q=$.ig.util.u32BitwiseXor,$r=$.ig.util.u32LS,$s=$.ig.util.unwrapNullable,$t=$.ig.util.wrapNullable,$u=String.fromCharCode,$v=$.ig.util.castObjTo$t;$c("Windows1252Encoding:a","SingleByteEncoding",{ai:null,ac:function(){return this.ai},init:function(){this.ai=["\0","\x01","\x02","\x03","\x04","\x05","\x06","\x07","\b","\t","\n","\x0B","\f","\r","\x0e","\x0f","\x10","\x11","\x12","\x13","\x14","\x15","\x16","\x17","\x18","\x19","\x1a","\x1b","\x1c","\x1d","\x1e","\x1f"," ","!",'"',"#","$","%","&","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","\x7f","\u20ac","\x81","\u201a","\u0192","\u201e","\u2026","\u2020","\u2021","\u02c6","\u2030","\u0160","\u2039","\u0152","\x8d","\u017d","\x8f","\x90","\u2018","\u2019","\u201c","\u201d","\u2022","\u2013","\u2014","\u02dc","\u2122","\u0161","\u203a","\u0153","\x9d","\u017e","\u0178","\xa0","\xa1","\xa2","\xa3","\xa4","\xa5","\xa6","\xa7","\xa8","\xa9","\xaa","\xab","\xac","\xad","\xae","\xaf","\xb0","\xb1","\xb2","\xb3","\xb4","\xb5","\xb6","\xb7","\xb8","\xb9","\xba","\xbb","\xbc","\xbd","\xbe","\xbf","\xc0","\xc1","\xc2","\xc3","\xc4","\xc5","\xc6","\xc7","\xc8","\xc9","\xca","\xcb","\xcc","\xcd","\xce","\xcf","\xd0","\xd1","\xd2","\xd3","\xd4","\xd5","\xd6","\xd7","\xd8","\xd9","\xda","\xdb","\xdc","\xdd","\xde","\xdf","\xe0","\xe1","\xe2","\xe3","\xe4","\xe5","\xe6","\xe7","\xe8","\xe9","\xea","\xeb","\xec","\xed","\xee","\xef","\xf0","\xf1","\xf2","\xf3","\xf4","\xf5","\xf6","\xf7","\xf8","\xf9","\xfa","\xfb","\xfc","\xfd","\xfe","\xff"];$$t.$b.init1.call(this,1,1252,"windows-1252")},$type:new $.ig.Type("Windows1252Encoding",$$t.$b.$type)},true)});
|
@ -0,0 +1,18 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.encoding_windows-1256.js 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
* Depends:
|
||||
* jquery-1.4.4.js
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
* infragistics.util.js
|
||||
* infragistics.ext_core.js
|
||||
* infragistics.ext_collections.js
|
||||
* infragistics.ext_text.js
|
||||
* infragistics.encoding.core.js
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["./infragistics.util","./infragistics.ext_core","./infragistics.ext_collections","./infragistics.ext_text","./infragistics.encoding.core"],factory)}else{factory(igRoot)}})(function($){$.ig=$.ig||{};var $$t={};$.ig.globalDefs=$.ig.globalDefs||{};$.ig.globalDefs.$$bl=$$t;$.ig.$currDefinitions=$$t;$.ig.util.bulkDefine(["Windows1256Encoding:a","SingleByteEncoding:b","Encoding:c","Object:d","Type:e","Boolean:f","ValueType:g","Void:h","IConvertible:i","IFormatProvider:j","Number:k","String:l","IComparable:m","Number:n","IComparable$1:o","IEquatable$1:p","Number:q","Number:r","Number:s","NumberStyles:t","Enum:u","Array:v","IList:w","ICollection:x","IEnumerable:y","IEnumerator:z","Error:aa","Error:ab","Number:ac","String:ad","StringComparison:ae","RegExp:af","CultureInfo:ag","DateTimeFormat:ah","Calendar:ai","Date:aj","Number:ak","DayOfWeek:al","DateTimeKind:am","CalendarWeekRule:an","NumberFormatInfo:ao","CompareInfo:ap","CompareOptions:aq","IEnumerable$1:ar","IEnumerator$1:as","IDisposable:at","StringSplitOptions:au","Number:av","Number:aw","Number:ax","Number:ay","Number:az","Number:a0","Assembly:a1","Stream:a2","SeekOrigin:a3","RuntimeTypeHandle:a4","MethodInfo:a5","MethodBase:a6","MemberInfo:a7","ParameterInfo:a8","TypeCode:a9","ConstructorInfo:ba","PropertyInfo:bb","UTF8Encoding:bc","InvalidOperationException:bd","NotImplementedException:be","Script:bf","Decoder:bg","UnicodeEncoding:bh","Math:bi","AsciiEncoding:bj","ArgumentNullException:bk","DefaultDecoder:bl","ArgumentException:bm","IEncoding:bn","Dictionary$2:bo","IDictionary$2:bp","ICollection$1:bq","KeyValuePair$2:br","IDictionary:bs","IEqualityComparer$1:bt","EqualityComparer$1:bu","IEqualityComparer:bv","DefaultEqualityComparer$1:bw","Thread:bx","ThreadStart:by","MulticastDelegate:bz","IntPtr:b0","StringBuilder:b1","Environment:b2","RuntimeHelpers:b3","RuntimeFieldHandle:b4","AbstractEnumerable:b5","Func$1:b6","AbstractEnumerator:b7","GenericEnumerable$1:b8","GenericEnumerator$1:b9"]);var $a=$.ig.intDivide,$b=$.ig.util.cast,$c=$.ig.util.defType,$d=$.ig.util.defEnum,$e=$.ig.util.getBoxIfEnum,$f=$.ig.util.getDefaultValue,$g=$.ig.util.getEnumValue,$h=$.ig.util.getValue,$i=$.ig.util.intSToU,$j=$.ig.util.nullableEquals,$k=$.ig.util.nullableIsNull,$l=$.ig.util.nullableNotEquals,$m=$.ig.util.toNullable,$n=$.ig.util.toString$1,$o=$.ig.util.u32BitwiseAnd,$p=$.ig.util.u32BitwiseOr,$q=$.ig.util.u32BitwiseXor,$r=$.ig.util.u32LS,$s=$.ig.util.unwrapNullable,$t=$.ig.util.wrapNullable,$u=String.fromCharCode,$v=$.ig.util.castObjTo$t;$c("Windows1256Encoding:a","SingleByteEncoding",{ai:null,ac:function(){return this.ai},init:function(){this.ai=["\0","\x01","\x02","\x03","\x04","\x05","\x06","\x07","\b","\t","\n","\x0B","\f","\r","\x0e","\x0f","\x10","\x11","\x12","\x13","\x14","\x15","\x16","\x17","\x18","\x19","\x1a","\x1b","\x1c","\x1d","\x1e","\x1f"," ","!",'"',"#","$","%","&","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","\x7f","\u20ac","\u067e","\u201a","\u0192","\u201e","\u2026","\u2020","\u2021","\u02c6","\u2030","\u0679","\u2039","\u0152","\u0686","\u0698","\u0688","\u06af","\u2018","\u2019","\u201c","\u201d","\u2022","\u2013","\u2014","\u06a9","\u2122","\u0691","\u203a","\u0153","\u200c","\u200d","\u06ba","\xa0","\u060c","\xa2","\xa3","\xa4","\xa5","\xa6","\xa7","\xa8","\xa9","\u06be","\xab","\xac","\xad","\xae","\xaf","\xb0","\xb1","\xb2","\xb3","\xb4","\xb5","\xb6","\xb7","\xb8","\xb9","\u061b","\xbb","\xbc","\xbd","\xbe","\u061f","\u06c1","\u0621","\u0622","\u0623","\u0624","\u0625","\u0626","\u0627","\u0628","\u0629","\u062a","\u062b","\u062c","\u062d","\u062e","\u062f","\u0630","\u0631","\u0632","\u0633","\u0634","\u0635","\u0636","\xd7","\u0637","\u0638","\u0639","\u063a","\u0640","\u0641","\u0642","\u0643","\xe0","\u0644","\xe2","\u0645","\u0646","\u0647","\u0648","\xe7","\xe8","\xe9","\xea","\xeb","\u0649","\u064a","\xee","\xef","\u064b","\u064c","\u064d","\u064e","\xf4","\u064f","\u0650","\xf7","\u0651","\xf9","\u0652","\xfb","\xfc","\u200e","\u200f","\u06d2"];$$t.$b.init1.call(this,1,1256,"windows-1256")},$type:new $.ig.Type("Windows1256Encoding",$$t.$b.$type)},true)});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI data source localization resources 19.1.20
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else{return factory(jQuery)}})(function($){$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.bg=$.ig.locale.bg||{};$.ig.DataSourceLocale=$.ig.DataSourceLocale||{};$.ig.locale.bg.DataSourceLocale={invalidDataSource:"Подаденият източник на данни е невалиден.",unknownDataSource:"Типът на източника на данни не може да бъде определен. Моля дефинирайте дали данните са в JSON или XML формат.",errorParsingArrays:"Грешка при парсирането на масива от данни и при прилагането на дефинираната schema: ",errorParsingJson:"Грешка при парсирането на JSON обекта от данни и при прилагането на дефинираната schema: ",errorParsingXml:"Грешка при парсирането на XML обекта от данни и при прилагането на дефинираната schema: ",errorParsingHtmlTable:"Грешка при извличането на данни от HTML таблицата и при прилагането на дефинираната schema: ",errorExpectedTbodyParameter:"Очакваният параметър трябва да е от тип table или tbody.",errorTableWithIdNotFound:"Не е намерена HTML таблица с ID: ",errorParsingHtmlTableNoSchema:"Грешка при парсиране на табличния DOM: ",errorParsingJsonNoSchema:"Грешка при парсиране на JSON string: ",errorParsingXmlNoSchema:"Грешка при парсиране на XML string: ",errorXmlSourceWithoutSchema:"Подаденият източник на данни е XML документ, но няма дефинирана schema за данните ($.IgDataSchema).",errorUnrecognizedFilterCondition:"Неразпознато условие за филтриране: ",errorRemoteRequest:"Неуспешно завършено външно поискване на данни: ",errorSchemaMismatch:"Входните данни не отговарят на подадената schema; съответното поле не може да бъде попълнено успешно: ",errorSchemaFieldCountMismatch:"Входните данни не отговарят на подадената схема като брой полета. ",errorUnrecognizedResponseType:"Типът на доставените данни не е деклариран правилно или не е било възможно типът да бъде определен автоматично. Моля попълнете settings.responseDataType и/или settings.responseContentType.",hierarchicalTablesNotSupported:"Таблици не се поддържат от HierarchicalSchema",cannotBuildTemplate:"Шаблонът не може да бъде построен. Източника на данни няма записи и не са дефинирани колони.",unrecognizedCondition:"Неразпознато условие за филтриране: ",fieldMismatch:"Изразът съдържа невалидно поле или условие за филтриране: ",noSortingFields:"Моля задайте поне едно поле при извикване на sort().",filteringNoSchema:"Нямате зададени schema / fields. Нужно е да зададете schema с field дефиниция и типове, за да можете да филтрирате източника на данни.",noSaveChanges:"Запазването на промените беше неуспешно. Сървърът не върна обект Success или върна Success:false.",errorUnexpectedCustomFilterFunction:"Беше подадена неочаквана стойност за създадената от потребителя функция за филтриране Очаква се функция или низ."};$.ig.DataSourceLocale.locale=$.ig.DataSourceLocale.locale||$.ig.locale.bg.DataSourceLocale;return $.ig.locale.bg.DataSourceLocale});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI data source localization resources 19.1.20
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else{return factory(jQuery)}})(function($){$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.de=$.ig.locale.de||{};$.ig.DataSourceLocale=$.ig.DataSourceLocale||{};$.ig.locale.de.DataSourceLocale={invalidDataSource:"Die angegebene Datenquelle ist ungültig. Es kann ein Skalar sein.",unknownDataSource:"Der Datenquellentyp kann nicht bestimmt werden. Bitte angeben, ob es sich um JSON- oder XML-Daten handelt.",errorParsingArrays:"Bei der Analyse der Arraydaten und der Anwendung des definierten Datenschemas ist ein Fehler aufgetreten: ",errorParsingJson:"Bei der Analyse der JSON-Daten und der Anwendung des definierten Datenschemas ist ein Fehler aufgetreten: ",errorParsingXml:"Bei der Analyse der XML-Daten und der Anwendung des definierten Datenschemas ist ein Fehler aufgetreten: ",errorParsingHtmlTable:"Beim Extrahieren der Daten aus der HTML-Tabelle und der Anwendung des Schemas ist ein Fehler aufgetreten: ",errorExpectedTbodyParameter:"tbody oder table wurde als Parameter erwartet.",errorTableWithIdNotFound:"Die HTML-Tabelle mit der folgenden ID wurde nicht gefunden: ",errorParsingHtmlTableNoSchema:"Bei der Analyse der Tabelle DOM ist ein Fehler aufgetreten: ",errorParsingJsonNoSchema:"Bei der Analyse/Auswertung der JSON-Zeichenfolge ist ein Fehler aufgetreten: ",errorParsingXmlNoSchema:"Bei der Analyse der XML-Zeichenfolge ist ein Fehler aufgetreten: ",errorXmlSourceWithoutSchema:"Die angegebene Datenquelle ist ein XML-Dokument, aber es gibt kein definiertes Datenschema ($.IgDataSchema). ",errorUnrecognizedFilterCondition:" Die angegebene Filterbedingung wurde nicht erkannt: ",errorRemoteRequest:"Die Remoteanforderung zum Abrufen von Daten ist fehlgeschlagen: ",errorSchemaMismatch:"Die Eingabedaten stimmen nicht mit dem Schema überein, das folgende Feld konnte nicht zugeordnet werden: ",errorSchemaFieldCountMismatch:"Die Eingabedaten stimmen in Bezug auf die Anzahl Felder nicht mit dem Schema überein. ",errorUnrecognizedResponseType:"Der Antworttyp wurde entweder nicht korrekt eingestellt oder konnte nicht automatisch erkannt werden. Bitte settings.responseDataType und/oder settings.responseContentType einstellen.",hierarchicalTablesNotSupported:"Tabellen werden nicht für HierarchicalSchema unterstützt.",cannotBuildTemplate:"Die jQuery-Vorlage konnte nicht erstellt werden. Es gibt keine Datensätze in der Datenquelle und keine definierten Spalten.",unrecognizedCondition:"Nicht erkannte Filterbedingung im folgenden Ausdruck: ",fieldMismatch:"Der folgende Ausdruck enthält ein ungültiges Feld oder eine ungültige Filterbedingung: ",noSortingFields:"Es wurden keine Felder angegeben. Beim Aufrufen von sort() muss mindestens ein Feld zum Sortieren angegeben werden.",filteringNoSchema:"Es wurden kein Schema / Felder angegeben. Es muss ein Schema mit Felddefinitionen und Feldtypen angegeben werden, um die Datenquelle filtern zu können.",noSaveChanges:"Speichern der Änderungen war nicht erfolgreich. Server hat Success-Objekt nicht zurückgegeben oder Success:false zurückgegeben.",errorUnexpectedCustomFilterFunction:"Für eine kundenspezifische Filterfunktion wurde ein unerwarteter Wert angegeben. Eine Funktion oder Zeichenfolge wird erwartet."};$.ig.DataSourceLocale.locale=$.ig.DataSourceLocale.locale||$.ig.locale.de.DataSourceLocale;return $.ig.locale.de.DataSourceLocale});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI data source localization resources 19.1.20
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else{return factory(jQuery)}})(function($){$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.en=$.ig.locale.en||{};$.ig.DataSourceLocale=$.ig.DataSourceLocale||{};$.ig.locale.en.DataSourceLocale={invalidDataSource:"The supplied data source is invalid. It happens to be a scalar.",unknownDataSource:"Cannot determine the data source type. Please specify if it is JSON or XML data.",errorParsingArrays:"There was an error parsing the array data and applying the defined data schema: ",errorParsingJson:"There was an error parsing the JSON data and applying the defined data schema: ",errorParsingXml:"There was an error parsing the XML data and applying the defined data schema: ",errorParsingHtmlTable:"There was an error extracting the data from the HTML Table and applying the schema : ",errorExpectedTbodyParameter:"Expected a tbody or a table as a parameter.",errorTableWithIdNotFound:"The HTML Table with the following ID was not found: ",errorParsingHtmlTableNoSchema:"There was an error parsing the Table DOM: ",errorParsingJsonNoSchema:"There was an error parsing/evaluating the JSON string: ",errorParsingXmlNoSchema:"There was an error parsing the XML string: ",errorXmlSourceWithoutSchema:"The supplied data source is an xml document, but there is no defined data schema ($.IgDataSchema) ",errorUnrecognizedFilterCondition:" The filter condition that was passed was not recognized: ",errorRemoteRequest:"The remote request to fetch data has failed: ",errorSchemaMismatch:"The input data doesn't match the schema, the following field couldn't be mapped: ",errorSchemaFieldCountMismatch:"The input data doesn't match the schema in terms of number of fields. ",errorUnrecognizedResponseType:"The response type was either not set correctly, or it was not possible to detect it automatically. Please set settings.responseDataType and/or settings.responseContentType.",hierarchicalTablesNotSupported:"Tables are not supported for HierarchicalSchema",cannotBuildTemplate:"The jQuery template could not be built. There are no records present in the data source, and no columns defined.",unrecognizedCondition:"Unrecognized filtering condition in the following expression: ",fieldMismatch:"The following expression contains an invalid field or filtering condition: ",noSortingFields:"There are no fields specified. You need to specify at least one field to sort by, when calling sort().",filteringNoSchema:"There is no schema / fields specified. You need to specify a schema with field definitions and types to be able to filter the data source.",noSaveChanges:"Saving changes was not successful. Server did not return Success object or returned Success:false.",errorUnexpectedCustomFilterFunction:"An unexpected value was provided for a custom filtering function. A function or string is expected."};$.ig.DataSourceLocale.locale=$.ig.DataSourceLocale.locale||$.ig.locale.en.DataSourceLocale;return $.ig.locale.en.DataSourceLocale});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI data source localization resources 19.1.20
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else{return factory(jQuery)}})(function($){$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.es=$.ig.locale.es||{};$.ig.DataSourceLocale=$.ig.DataSourceLocale||{};$.ig.locale.es.DataSourceLocale={invalidDataSource:"El origen de datos proporcionado no es válido. Es de tipo escalar.",unknownDataSource:"No se puede determinar el tipo de origen de datos. Especifique si son datos JSON o XML.",errorParsingArrays:"Se ha producido un error al analizar los datos de matriz y aplicar el esquema de datos definido: ",errorParsingJson:"Se ha producido un error al analizar los datos JSON y aplicar el esquema de datos definido: ",errorParsingXml:"Se ha producido un error al analizar los datos XML y aplicar el esquema de datos definido: ",errorParsingHtmlTable:"Se ha producido un error al extraer datos de la tabla HTML y aplicar el esquema: ",errorExpectedTbodyParameter:"Se esperaba un tbody o una tabla como parámetro.",errorTableWithIdNotFound:"No se ha encontrado la tabla HTML con el siguiente Id.: ",errorParsingHtmlTableNoSchema:"Se ha producido un error al analizar el DOM de la tabla: ",errorParsingJsonNoSchema:"Se ha producido un error al analizar/evaluar la cadena JSON: ",errorParsingXmlNoSchema:"Se ha producido un error al analizar la cadena XML: ",errorXmlSourceWithoutSchema:"El origen de datos proporcionado es un documento xml, pero no hay un esquema de datos definido ($.IgDataSchema) ",errorUnrecognizedFilterCondition:" La condición de filtro especificada no ha sido reconocida: ",errorRemoteRequest:"Error en la solicitud remota de recuperación de datos: ",errorSchemaMismatch:"Los datos de entrada no coinciden con el esquema, no se ha podido asignar el siguiente campo: ",errorSchemaFieldCountMismatch:"Los datos de entrada no coinciden con el esquema en términos de número de campos. ",errorUnrecognizedResponseType:"El tipo de respuesta no se ha establecido correctamente o no ha sido posible detectarlo automáticamente. Establezca settings.responseDataType y/o settings.responseContentType.",hierarchicalTablesNotSupported:"Tablas no admitidas para HierarchicalSchema",cannotBuildTemplate:"No se ha podido generar la plantilla jQuery. No hay registros presentes en el origen de datos y no hay columnas definidas.",unrecognizedCondition:"Condición de filtro no reconocida en la siguiente expresión: ",fieldMismatch:"La siguiente expresión contiene un campo o una condición de filtro no válidos: ",noSortingFields:"No se ha especificado ningún campo. Debe especificar al menos un campo de ordenación al llamar a sort().",filteringNoSchema:"No se ha especificado ningún esquema / campo. Debe especificar un esquema con definiciones y tipos de campo para poder filtrar el origen de datos.",noSaveChanges:"No se han guardado los cambios correctamente. El servidor no ha devuelto el objeto Success, o ha devuelto Success:false.",errorUnexpectedCustomFilterFunction:"Se ha proporcionado un valor inesperado para una función de filtrado personalizado. Se esperaba una función o cadena."};$.ig.DataSourceLocale.locale=$.ig.DataSourceLocale.locale||$.ig.locale.es.DataSourceLocale;return $.ig.locale.es.DataSourceLocale});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI data source localization resources 19.1.20
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else{return factory(jQuery)}})(function($){$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.fr=$.ig.locale.fr||{};$.ig.DataSourceLocale=$.ig.DataSourceLocale||{};$.ig.locale.fr.DataSourceLocale={invalidDataSource:"La source de données fournie est invalide. Il s'agit d'un scalaire.",unknownDataSource:"Impossible de déterminer le type de source de données. Veuillez préciser s'il s'agit de données JSON ou XML.",errorParsingArrays:"Une erreur s'est produite lors de l'analyse syntaxique des données de tableaux et de l'application du schéma de données défini : ",errorParsingJson:"Une erreur s'est produite lors de l'analyse syntaxique des données JSON et de l'application du schéma de données défini : ",errorParsingXml:"Une erreur s'est produite lors de l'analyse syntaxique des données XML et de l'application du schéma de données défini : ",errorParsingHtmlTable:"Une erreur s'est produite lors de l'extraction des données du tableau HTML et lors de l'application du schéma : ",errorExpectedTbodyParameter:"Un corps ou un tableau était attendu comme paramètre.",errorTableWithIdNotFound:"Le tableau HTML avec l'ID suivant n'a pas été trouvé : ",errorParsingHtmlTableNoSchema:"Une erreur s'est produite lors de l'analyse syntaxique du tableau DOM : ",errorParsingJsonNoSchema:"Une erreur s'est produite lors de l'analyse syntaxique/l'évaluation de la chaîne JSON : ",errorParsingXmlNoSchema:"Une erreur s'est produite lors de l'analyse syntaxique de la chaîne XML : ",errorXmlSourceWithoutSchema:"La source de données fournie est un document xml, mais il n'existe pas de schéma de données défini ($.IgDataSchema) ",errorUnrecognizedFilterCondition:" La condition de filtre spécifiée n'a pas été reconnue : ",errorRemoteRequest:"La requête à distance pour récupérer les données a échoué : ",errorSchemaMismatch:"Les données entrées ne coïncident pas avec le schéma, le champ suivant n'a pas pu être cartographié : ",errorSchemaFieldCountMismatch:"Les données entrées ne coïncident pas avec le schéma en termes de nombre de champs. ",errorUnrecognizedResponseType:"Le type de réponse n'a pas été défini correctement ou il était impossible de le détecter automatiquement. Veuillez définir settings.responseDataType et/ou settings.responseContentType.",hierarchicalTablesNotSupported:"Les tableaux ne sont pas pris en charge pour HierarchicalSchema",cannotBuildTemplate:"Le modèle jQuery n'a pas pu être créé. Aucune archive présente dans la source de données et aucune colonne définie.",unrecognizedCondition:"Condition de filtrage non reconnue dans l'expression suivante : ",fieldMismatch:"L'expression suivante contient un champ ou une condition de filtrage invalide : ",noSortingFields:"Aucun champ spécifié. Spécifiez au moins un champ de tri pour utiliser l'option de tri ().",filteringNoSchema:"Aucun schéma/champ spécifié. Spécifiez un schéma avec des définitions et types de champs pour pouvoir filtrer la source de données.",noSaveChanges:"Échec de l’enregistrement des modifications. Le serveur n’a pas renvoyé l’objet Success ou a renvoyé Success:false.",errorUnexpectedCustomFilterFunction:"Une valeur inattendue a été fournie pour une fonction de filtre personnalisé. Une fonction ou une chaîne est attendue."};$.ig.DataSourceLocale.locale=$.ig.DataSourceLocale.locale||$.ig.locale.fr.DataSourceLocale;return $.ig.locale.fr.DataSourceLocale});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI data source localization resources 19.1.20
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else{return factory(jQuery)}})(function($){$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.ja=$.ig.locale.ja||{};$.ig.DataSourceLocale=$.ig.DataSourceLocale||{};$.ig.locale.ja.DataSourceLocale={invalidDataSource:"指定したデータ ソースは無効です。スカラーです。",unknownDataSource:"データ ソース型を決定できません。JSON または XML データであるかどうかを指定してください。",errorParsingArrays:"配列データを解析して定義したデータ スキーマを適用したときにエラーが発生しました。 ",errorParsingJson:"JSON データを解析して定義したデータ スキーマを適用したときにエラーが発生しました。 ",errorParsingXml:"XML データを解析して定義したデータ スキーマを適用したときにエラーが発生しました。 ",errorParsingHtmlTable:"HTML テーブルからデータを展開してスキーマを適用したときにエラーが発生しました。 ",errorExpectedTbodyParameter:"パラメーターは tbody または table である必要があります。",errorTableWithIdNotFound:"この ID を持つ HTML テーブルが見つかりませんでした: ",errorParsingHtmlTableNoSchema:"テーブルの DOM の分析でエラーが発生しました: ",errorParsingJsonNoSchema:"JSON 文字列の分析または評価でエラーが発生しました: ",errorParsingXmlNoSchema:"XML 文字列の分析でエラーが発生しました: ",errorXmlSourceWithoutSchema:"指定したデータ ソースは XML ドキュメントですが、データ スキーマ ($.IgDataSchema) が定義されていません。 ",errorUnrecognizedFilterCondition:"渡されたフィルター条件は無効です。 ",errorRemoteRequest:"データを取得するリモート要求に失敗しました。 ",errorSchemaMismatch:"入力データがスキーマと一致しません。このフィールドをマップできませんでした: ",errorSchemaFieldCountMismatch:"入力のデータがスキーマと一致しません。フィールド数が無効です。 ",errorUnrecognizedResponseType:"応答型が正しく設定されなかったか、自動的に検出できませんでした。settings.responseDataType または settings.responseContentType を設定してください。",hierarchicalTablesNotSupported:"HierarchicalSchema でテーブルをサポートしません。",cannotBuildTemplate:"jQuery テンプレートをビルドできませんでした。データ ソースでレコードがないし、列が定義されていません。",unrecognizedCondition:"この式で無効なフィルター条件があります: ",fieldMismatch:"この式で無効なフィールドまたはフィルター条件があります: ",noSortingFields:"フィールドが指定されていません。sort() を呼び出すときに、並べ替えるフィールドを 1 つ以上を指定する必要があります。",filteringNoSchema:"スキーマまたはフィールドが指定されていません。データ ソースをフィルターするには、フィールド定義および型を含むスキーマを指定する必要があります。",noSaveChanges:"変更の保存に失敗しました。サーバーが Success オブジェクトを返さなかったか Success:false を返しました。",errorUnexpectedCustomFilterFunction:"カスタム フィルター関数で予期しない値が提供されました。関数または文字列が必要です。"};$.ig.DataSourceLocale.locale=$.ig.DataSourceLocale.locale||$.ig.locale.ja.DataSourceLocale;return $.ig.locale.ja.DataSourceLocale});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI data source localization resources 19.1.20
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else{return factory(jQuery)}})(function($){$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.ru=$.ig.locale.ru||{};$.ig.DataSourceLocale=$.ig.DataSourceLocale||{};$.ig.locale.ru.DataSourceLocale={invalidDataSource:"Источник данных неизвестен. Скалярные данные не поддерживаются.",unknownDataSource:"Невозможно определить тип источника данных. Установите тип данных: JSON или XML.",errorParsingArrays:"Произошла ошибка при обработке массива данных. Схема не соответствует: ",errorParsingJson:"Произошла ошибка при обработке данных формата JSON. Схема не соответствует: ",errorParsingXml:"Произошла ошибка при обработке данных формата XML. Схема не соответствует: ",errorParsingHtmlTable:"Произошла ошибка при извлечении данных из HTML таблицы. Схема не соответствует: ",errorExpectedTbodyParameter:"Ожидаемый параметр: tbody или table элемент.",errorTableWithIdNotFound:"Не найдена HTML таблица соответствующая идентификатору: ",errorParsingHtmlTableNoSchema:"Произошла ошибка при извлечении данных из DOM таблицы: ",errorParsingJsonNoSchema:"Произошла ошибка при извлечении данных из JSON текста: ",errorParsingXmlNoSchema:"Произошла ошибка при извлечении данных из XML текста: ",errorXmlSourceWithoutSchema:"Источник данных является XML документом, но схема для документа не определена ($.IgDataSchema) ",errorUnrecognizedFilterCondition:" Предоставленное условие фильтра нераспознаваемо: ",errorRemoteRequest:"Удаленный запрос на извлечение данных не удался: ",errorSchemaMismatch:"Входные данные не соответствуют схеме, это поле не может быть сопоставлено: ",errorSchemaFieldCountMismatch:"Входные данные не соответствуют схеме по числу полей. ",errorUnrecognizedResponseType:"Тип ответа указан некорректно или невозможно определить автоматически. Пожалуйста установите settings.responseDataType и/или settings.responseContentType.",hierarchicalTablesNotSupported:"Таблицы в HierarchicalSchema не поддерживаются.",cannotBuildTemplate:"Шаблон jQuery не может быть сконструирован. В источнике данных отсутствуют записи и колонки неопределены.",unrecognizedCondition:"Нераспозноваемое условие фильтровки в следующем выражении: ",fieldMismatch:"Следующее выражение содержит ошибочное поле или условие фильтровки: ",noSortingFields:"Поля не установлены. Необходимо установить хотя бы одно поле для сортировки перед использованием функции sort().",filteringNoSchema:"Схема/поля не установлены. Необходимо установить схему с определением полей и типов перед фильтровкой источника данных.",noSaveChanges:"Сохранение изменений не выполнено. Сервер не вернул объект успешного завершения или вернул для успешного завершения значение 'ложь'.",errorUnexpectedCustomFilterFunction:"Для пользовательской функции фильтрации введено неожиданное значение. Ожидается функция или строка."};$.ig.DataSourceLocale.locale=$.ig.DataSourceLocale.locale||$.ig.locale.ru.DataSourceLocale;return $.ig.locale.ru.DataSourceLocale});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.documents.core_core.js resources 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define([],factory)}else{factory()}})(function(){$=$||{};$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.bg=$.ig.locale.bg||{};$.ig.locale.bg.documentsCore=$.ig.locale.bg.documentsCore||{};var l=$.ig.locale.bg.documentsCore;l["LE_ArgumentOutOfRangeException_ValueError"]="Невалидна {0} стойност. Трябва да бъде между {1} и {2}.";l["LE_DocumentEncryptedException_DefaultMessage"]="Документът е шифрован и трябва да бъде отворен с парола.";l["LE_EncryptionAlgorithmNotSupportedException_DefaultMessage"]="Документа е шифрован с неподдържан алгоритъм за шифроване и не може да бъде дешифриран.";l["LE_FormatException_TypeError"]="Невалиден {0} формат: {0}.";l["LE_InvalidPasswordException_DefaultMessage"]="Паролата, използвана за отваряне на шифрования документ, е неправилна.";$.ig.documentsCore=$.ig.documentsCore||{};$.ig.documentsCore.locale=$.ig.documentsCore.locale||l;return l});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.documents.core_core.js resources 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define([],factory)}else{factory()}})(function(){$=$||{};$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.de=$.ig.locale.de||{};$.ig.locale.de.documentsCore=$.ig.locale.de.documentsCore||{};var l=$.ig.locale.de.documentsCore;l["LE_ArgumentOutOfRangeException_ValueError"]="Invalid {0} value. It must be between {1} and {2}.";l["LE_DocumentEncryptedException_DefaultMessage"]="The document is encrypted and must be opened with a password.";l["LE_EncryptionAlgorithmNotSupportedException_DefaultMessage"]="The document is encrypted with an unsupported encryption algorithm and cannot be decrypted.";l["LE_FormatException_TypeError"]="Incorrect {0} format: {0}.";l["LE_InvalidPasswordException_DefaultMessage"]="The password used to open the encrypted document is incorrect.";$.ig.documentsCore=$.ig.documentsCore||{};$.ig.documentsCore.locale=$.ig.documentsCore.locale||l;return l});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.documents.core_core.js resources 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define([],factory)}else{factory()}})(function(){$=$||{};$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.en=$.ig.locale.en||{};$.ig.locale.en.documentsCore=$.ig.locale.en.documentsCore||{};var l=$.ig.locale.en.documentsCore;l["LE_ArgumentOutOfRangeException_ValueError"]="Invalid {0} value. It must be between {1} and {2}.";l["LE_DocumentEncryptedException_DefaultMessage"]="The document is encrypted and must be opened with a password.";l["LE_EncryptionAlgorithmNotSupportedException_DefaultMessage"]="The document is encrypted with an unsupported encryption algorithm and cannot be decrypted.";l["LE_FormatException_TypeError"]="Incorrect {0} format: {0}.";l["LE_InvalidPasswordException_DefaultMessage"]="The password used to open the encrypted document is incorrect.";$.ig.documentsCore=$.ig.documentsCore||{};$.ig.documentsCore.locale=$.ig.documentsCore.locale||l;return l});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.documents.core_core.js resources 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define([],factory)}else{factory()}})(function(){$=$||{};$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.es=$.ig.locale.es||{};$.ig.locale.es.documentsCore=$.ig.locale.es.documentsCore||{};var l=$.ig.locale.es.documentsCore;l["LE_ArgumentOutOfRangeException_ValueError"]="Invalid {0} value. It must be between {1} and {2}.";l["LE_DocumentEncryptedException_DefaultMessage"]="The document is encrypted and must be opened with a password.";l["LE_EncryptionAlgorithmNotSupportedException_DefaultMessage"]="The document is encrypted with an unsupported encryption algorithm and cannot be decrypted.";l["LE_FormatException_TypeError"]="Incorrect {0} format: {0}.";l["LE_InvalidPasswordException_DefaultMessage"]="The password used to open the encrypted document is incorrect.";$.ig.documentsCore=$.ig.documentsCore||{};$.ig.documentsCore.locale=$.ig.documentsCore.locale||l;return l});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.documents.core_core.js resources 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define([],factory)}else{factory()}})(function(){$=$||{};$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.fr=$.ig.locale.fr||{};$.ig.locale.fr.documentsCore=$.ig.locale.fr.documentsCore||{};var l=$.ig.locale.fr.documentsCore;l["LE_ArgumentOutOfRangeException_ValueError"]="Invalid {0} value. It must be between {1} and {2}.";l["LE_DocumentEncryptedException_DefaultMessage"]="The document is encrypted and must be opened with a password.";l["LE_EncryptionAlgorithmNotSupportedException_DefaultMessage"]="The document is encrypted with an unsupported encryption algorithm and cannot be decrypted.";l["LE_FormatException_TypeError"]="Incorrect {0} format: {0}.";l["LE_InvalidPasswordException_DefaultMessage"]="The password used to open the encrypted document is incorrect.";$.ig.documentsCore=$.ig.documentsCore||{};$.ig.documentsCore.locale=$.ig.documentsCore.locale||l;return l});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.documents.core_core.js resources 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define([],factory)}else{factory()}})(function(){$=$||{};$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.ja=$.ig.locale.ja||{};$.ig.locale.ja.documentsCore=$.ig.locale.ja.documentsCore||{};var l=$.ig.locale.ja.documentsCore;l["LE_ArgumentOutOfRangeException_ValueError"]="無効な {0} 値です。値は {1} と {2} の間である必要があります。";l["LE_DocumentEncryptedException_DefaultMessage"]="文書は暗号化されているため、パスワードで開く必要があります。";l["LE_EncryptionAlgorithmNotSupportedException_DefaultMessage"]="文書はサポートされていない暗号化アルゴリズムで暗号化されているため、暗号化の解除を実行できません。";l["LE_FormatException_TypeError"]="無効な {0} 形式: {0}。";l["LE_InvalidPasswordException_DefaultMessage"]="暗号化された文書を開くためのパスワードが無効です。";$.ig.documentsCore=$.ig.documentsCore||{};$.ig.documentsCore.locale=$.ig.documentsCore.locale||l;return l});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI infragistics.documents.core_core.js resources 19.1.20191.172
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define([],factory)}else{factory()}})(function(){$=$||{};$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.ru=$.ig.locale.ru||{};$.ig.locale.ru.documentsCore=$.ig.locale.ru.documentsCore||{};var l=$.ig.locale.ru.documentsCore;l["LE_ArgumentOutOfRangeException_ValueError"]="Invalid {0} value. It must be between {1} and {2}.";l["LE_DocumentEncryptedException_DefaultMessage"]="The document is encrypted and must be opened with a password.";l["LE_EncryptionAlgorithmNotSupportedException_DefaultMessage"]="The document is encrypted with an unsupported encryption algorithm and cannot be decrypted.";l["LE_FormatException_TypeError"]="Incorrect {0} format: {0}.";l["LE_InvalidPasswordException_DefaultMessage"]="The password used to open the encrypted document is incorrect.";$.ig.documentsCore=$.ig.documentsCore||{};$.ig.documentsCore.locale=$.ig.documentsCore.locale||l;return l});
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI shared localization resources 19.1.20
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else{return factory(jQuery)}})(function($){$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.bg=$.ig.locale.bg||{};$.ig.SharedLocale=$.ig.SharedLocale||{};$.ig.locale.bg.SharedLocale={};$.ig.SharedLocale.locale=$.ig.SharedLocale.locale||$.ig.locale.bg.SharedLocale;return $.ig.locale.bg.SharedLocale});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI shared localization resources 19.1.20
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else{return factory(jQuery)}})(function($){$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.de=$.ig.locale.de||{};$.ig.SharedLocale=$.ig.SharedLocale||{};$.ig.locale.de.SharedLocale={};$.ig.SharedLocale.locale=$.ig.SharedLocale.locale||$.ig.locale.de.SharedLocale;return $.ig.locale.de.SharedLocale});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI shared localization resources 19.1.20
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else{return factory(jQuery)}})(function($){$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.en=$.ig.locale.en||{};$.ig.SharedLocale=$.ig.SharedLocale||{};$.ig.locale.en.SharedLocale={};$.ig.SharedLocale.locale=$.ig.SharedLocale.locale||$.ig.locale.en.SharedLocale;return $.ig.locale.en.SharedLocale});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI shared localization resources 19.1.20
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else{return factory(jQuery)}})(function($){$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.es=$.ig.locale.es||{};$.ig.SharedLocale=$.ig.SharedLocale||{};$.ig.locale.es.SharedLocale={};$.ig.SharedLocale.locale=$.ig.SharedLocale.locale||$.ig.locale.es.SharedLocale;return $.ig.locale.es.SharedLocale});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI shared localization resources 19.1.20
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else{return factory(jQuery)}})(function($){$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.fr=$.ig.locale.fr||{};$.ig.SharedLocale=$.ig.SharedLocale||{};$.ig.locale.fr.SharedLocale={};$.ig.SharedLocale.locale=$.ig.SharedLocale.locale||$.ig.locale.fr.SharedLocale;return $.ig.locale.fr.SharedLocale});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI shared localization resources 19.1.20
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else{return factory(jQuery)}})(function($){$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.ja=$.ig.locale.ja||{};$.ig.SharedLocale=$.ig.SharedLocale||{};$.ig.locale.ja.SharedLocale={};$.ig.SharedLocale.locale=$.ig.SharedLocale.locale||$.ig.locale.ja.SharedLocale;return $.ig.locale.ja.SharedLocale});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI shared localization resources 19.1.20
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else{return factory(jQuery)}})(function($){$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.ru=$.ig.locale.ru||{};$.ig.SharedLocale=$.ig.SharedLocale||{};$.ig.locale.ru.SharedLocale={};$.ig.SharedLocale.locale=$.ig.SharedLocale.locale||$.ig.locale.ru.SharedLocale;return $.ig.locale.ru.SharedLocale});
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI templating localization resources 19.1.20
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else{return factory(jQuery)}})(function($){$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.bg=$.ig.locale.bg||{};$.ig.Templating=$.ig.Templating||{};$.ig.locale.bg.Templating={undefinedArgument:"Грешка при опит да се вземе стойността на следното свойство от източника на данни: "};$.ig.Templating.locale=$.ig.Templating.locale||$.ig.locale.bg.Templating;return $.ig.locale.bg.Templating});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI templating localization resources 19.1.20
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else{return factory(jQuery)}})(function($){$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.de=$.ig.locale.de||{};$.ig.Templating=$.ig.Templating||{};$.ig.locale.de.Templating={undefinedArgument:"Beim Abrufen der Datenquellen-Eigenschaft ist ein Fehler aufgetreten: "};$.ig.Templating.locale=$.ig.Templating.locale||$.ig.locale.de.Templating;return $.ig.locale.de.Templating});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI templating localization resources 19.1.20
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else{return factory(jQuery)}})(function($){$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.en=$.ig.locale.en||{};$.ig.Templating=$.ig.Templating||{};$.ig.locale.en.Templating={undefinedArgument:"An error has occurred while trying to retrieve data source property: "};$.ig.Templating.locale=$.ig.Templating.locale||$.ig.locale.en.Templating;return $.ig.locale.en.Templating});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI templating localization resources 19.1.20
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else{return factory(jQuery)}})(function($){$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.es=$.ig.locale.es||{};$.ig.Templating=$.ig.Templating||{};$.ig.locale.es.Templating={undefinedArgument:"Se ha producido un error al intentar recuperar las propiedades del origen de datos: "};$.ig.Templating.locale=$.ig.Templating.locale||$.ig.locale.es.Templating;return $.ig.locale.es.Templating});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI templating localization resources 19.1.20
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else{return factory(jQuery)}})(function($){$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.fr=$.ig.locale.fr||{};$.ig.Templating=$.ig.Templating||{};$.ig.locale.fr.Templating={undefinedArgument:"Une erreur s'est produite pendant la récupération de la propriété de la source de données : "};$.ig.Templating.locale=$.ig.Templating.locale||$.ig.locale.fr.Templating;return $.ig.locale.fr.Templating});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI templating localization resources 19.1.20
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else{return factory(jQuery)}})(function($){$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.ja=$.ig.locale.ja||{};$.ig.Templating=$.ig.Templating||{};$.ig.locale.ja.Templating={undefinedArgument:"データ ソース プロパティを取得する際にエラーが発生しました: "};$.ig.Templating.locale=$.ig.Templating.locale||$.ig.locale.ja.Templating;return $.ig.locale.ja.Templating});
|
@ -0,0 +1,9 @@
|
||||
/*!@license
|
||||
* Infragistics.Web.ClientUI templating localization resources 19.1.20
|
||||
*
|
||||
* Copyright (c) 2011-2019 Infragistics Inc.
|
||||
*
|
||||
* http://www.infragistics.com/
|
||||
*
|
||||
*/
|
||||
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else{return factory(jQuery)}})(function($){$.ig=$.ig||{};$.ig.locale=$.ig.locale||{};$.ig.locale.ru=$.ig.locale.ru||{};$.ig.Templating=$.ig.Templating||{};$.ig.locale.ru.Templating={undefinedArgument:"Произошла ошибка при извлечении значения поля из источника данных: "};$.ig.Templating.locale=$.ig.Templating.locale||$.ig.locale.ru.Templating;return $.ig.locale.ru.Templating});
|
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user