You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now the CSS file assumes you have only SocialCalc (or at least majorly SocialCalc) in your app. We need to add SocialCalc-specific class the container:
For example, start with:
<div id="mySheet"></div>
And then call
var socialCalcControl = new SocialCalc.SpreadsheetControl()
socialCalcControl.InitializeSpreadsheetControl(document.getElementById('mySheet'));
SocialCalc.SetTab("edit");
Which would add class sheet to that div
<div id="mySheet" class="sheet"></div>
So the CSS file needs to have all selectors preceded with .sheet (or something constant)
The text was updated successfully, but these errors were encountered:
Right now the CSS file assumes you have only SocialCalc (or at least majorly SocialCalc) in your app. We need to add SocialCalc-specific class the container:
For example, start with:
<div id="mySheet"></div>
And then call
Which would add class
sheet
to that div<div id="mySheet" class="sheet"></div>
So the CSS file needs to have all selectors preceded with
.sheet
(or something constant)The text was updated successfully, but these errors were encountered: