我想知道XPages开发人员使用哪些方法来允许非Domino系统使用REST服务进行身份验证并使用REST服务.我的REST服务是使用扩展库的REST控件构建的.
你所做的工作的例子很棒,非常感激.
问候,
担
如何从 Bootstrap 弹出窗口打开模式?我遇到了麻烦。我的示例代码如下。单击弹出窗口中的按钮不会打开模式。从页面上的任何其他位置调用模式都会启动模式。
我正在为弹出窗口使用以下函数:
$( function() {
$("[data-toggle=popover]").popover( {
html : true,
content : function() {
return $('#popover-content').html();
}
});
});
Run Code Online (Sandbox Code Playgroud)
这是我的页面的相关 HTML:
<li>
<a data-toggle="popover" data-container="body" data-placement="left"
type="button" data-html="true" href="#" id="login">
<i class="zmdi zmdi-account-circle zmdi-hc-lg zmdi-hc-fw"
style="color:white; padding-top:10px;padding-right:32px">
</i>
</a>
</li>
<div id="popover-content" class="hide">
<div class="form-group" style="padding-left:0px">
<div class="row">
<div class="col-xs-6 col-md-6 col-lg-6">
<button type="button" id="button2" class="btn pull-right" style="background-color:#00c853;color:#fff; margin-top:0px" onclick="$('#changeProfileModal').modal()"> </button>
</div>
</div>
</div>
</div>
Run Code Online (Sandbox Code Playgroud)
预先感谢您在这方面为我提供的帮助。