-3
ユーザーがhtmlボタンのドキュメントライブラリをクリックすると作成する必要があります。app.jsファイルを変更してアプリケーション開発メソッドを使用した場所を見てきましたが、 .txtファイルを作成します。ボタンをクリックしてクリックするとSharepointでドキュメントライブラリを作成する方法
ユーザーがhtmlボタンのドキュメントライブラリをクリックすると作成する必要があります。app.jsファイルを変更してアプリケーション開発メソッドを使用した場所を見てきましたが、 .txtファイルを作成します。ボタンをクリックしてクリックするとSharepointでドキュメントライブラリを作成する方法
PlaceHolderMainラインすなわち
<script language="javascript" type="text/javascript">
function onQuerySucceeded(sender, args) {
alert('List created');
}
function onQueryFailed(sender, args) {
alert('request failed to create a list');
}
function createNewList() {
var clientContext = new SP.ClientContext.get_current();
this.oWebsite = clientContext.get_web();
//Logic to create a new list and library
clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed));
}
</script>
<input id="Button1" type="button" value="Create a new list/ Library" OnClick="createNewList()" />
・ホープ、このヘルプあなたの下に切り取ら以下のコードをコピーしてください。