Layer grid code (#5029)

* layer grid

* errors; edit data still not showing up

* fix edit data

* fix tab spaces
This commit is contained in:
Anthony Dresser
2019-04-16 13:30:15 -07:00
committed by GitHub
parent b376f36733
commit 5c10127758
63 changed files with 128 additions and 415 deletions

View File

@@ -3,10 +3,8 @@
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
'use strict';
import * as azdata from 'azdata';
import * as assert from 'assert';
import * as SharedServices from 'sql/parts/grid/services/sharedServices';
import * as SharedServices from 'sql/base/browser/ui/table/formatters';
const testText = '<div>test text</div>';
@@ -41,4 +39,4 @@ function verifyFormattedHtml(formattedHtml: string, expectedText: string): void
// Verify that the span element's text, not its innerHTML, matches the expected text
assert.equal(spanElement.textContent, testText);
assert.notEqual(spanElement.innerHTML, testText);
}
}