-1

カスタム ドキュメント ライブラリを使用する SharePoint ソリューションがあります。ユーザーがドキュメントを追加できるようにする方法が必要ですが、厳密な命名規則に基づいてファイル名を指定する必要があります。現在、Sharepoint ワークフローを使用しようとしていますが、ドキュメント コントロールに関していくつかの競合があります。ドキュメントを追加するリボン ボタンを作成し、すぐに名前を付けることができると考えていました。リボン ボタンが JavaScript を呼び出しているように見えますが、Javascript 関数を使用して新しいドキュメントを作成する方法がわかりません。提案や代替案はありますか?

4

1 に答える 1

0

You don't need to create a document using javascript, you just need to write a custom action [RibbonButton] that calls a method in some assembly that adds a new document to the desired document library following your rules. And if you can only add documents using a specific set of rules, make sure you disable the out of the box "Add Item" button on that custom document library.

You should check this link out: http://www.sharepointnutsandbolts.com/2010/01/customizing-ribbon-part-1-creating-tabs.html

Hope it helps.

于 2013-01-03T21:17:02.243 に答える