Commit ca02a8d4 authored by Alexander.Trofimov's avatar Alexander.Trofimov

fix bug #31009

Разделитель сейчас всегда ","

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@66551 954022d7-b5bf-4e40-9824-e11837661b57
parent ae109c07
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
} }
return arr; return arr;
}(); }();
this.recommendedSettings = new asc_CCSVAdvancedOptions (opt["codepage"], opt["delimiter"]); this.recommendedSettings = new asc_CCSVAdvancedOptions (opt["codepage"], /*opt["delimiter"]*/c_oAscCsvDelimiter.Comma); // ToDo разделитель пока только "," http://bugzserver/show_bug.cgi?id=31009
} }
asc_CCSVOptions.prototype.asc_getCodePages = function(){ return this.codePages;}; asc_CCSVOptions.prototype.asc_getCodePages = function(){ return this.codePages;};
asc_CCSVOptions.prototype.asc_getRecommendedSettings = function () { return this.recommendedSettings; }; asc_CCSVOptions.prototype.asc_getRecommendedSettings = function () { return this.recommendedSettings; };
......
...@@ -596,7 +596,6 @@ var editor; ...@@ -596,7 +596,6 @@ var editor;
exp: asc_setAdvancedOptions(c_oAscAdvancedOptionsID.CSV, new Asc.asc_CCSVAdvancedOptions(1200, c_oAscCsvDelimiter.Comma) ); exp: asc_setAdvancedOptions(c_oAscAdvancedOptionsID.CSV, new Asc.asc_CCSVAdvancedOptions(1200, c_oAscCsvDelimiter.Comma) );
*/ */
spreadsheet_api.prototype.asc_setAdvancedOptions = function(idOption, option) { spreadsheet_api.prototype.asc_setAdvancedOptions = function(idOption, option) {
var t = this;
switch (idOption) { switch (idOption) {
case c_oAscAdvancedOptionsID.CSV: case c_oAscAdvancedOptionsID.CSV:
// Проверяем тип состояния в данный момент // Проверяем тип состояния в данный момент
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment