Questions tagged [dialog-framework]
The Dialog Framework is a component that allows SharePoint to open pop-up dialogs inside the browser window for viewing forms.
27 questions
0
votes
1
answer
139
views
Customizing SP Attach File Modal
I was wondering if it is possible to have BOTH an html and url included in the options you pass to SP.UI.Dialog for the Attach File dialog. I can embed the link into a div but it shows the entire ...
0
votes
2
answers
3k
views
How to upload attachment with new items using dialog in custom html form
I found the link below kind of useful, and it works with my sample code below, but the problem is, this is for an existing item... I want to know how to do it if the item has not been created yet in a ...
0
votes
1
answer
1k
views
SharePoint Online - How to make custom forms launch in a dialog?
I've created a new custom edit form for a document library in SharePoint designer. "Launch forms in a dialog?" option in advanced settings is set to "yes", however, it does not affect anything. The ...
1
vote
0
answers
147
views
Page viewer Webpart Full page
Is it possible to Config Weppart page viewer to view web page not as a frame but as normal page?
Unfortunately,. this page has some scripts that changes its layout to mobile version if the detect ...
0
votes
1
answer
2k
views
How to close Dialog box?
I have Ribbon button that when it's clicked you get a dialog window open. On that window I have a button that I want to use to close the dialog window when clicked.
This is the code for the dialog
...
1
vote
1
answer
4k
views
SharePoint modal dialog not showing up
I'm working with SharePoint modal dialogs but I have some problem making the call work.
When I call the OpenPopUpPage (or OpenPopUpPageWithTitle) methods I'm getting the following errors
Chrome:
...
4
votes
2
answers
2k
views
Object #<Object> has no method 'showModalDialog'
Consider the following code:
var options = {
title: 'Create a new Post'
autoSize: true,
url: url
}
SP.UI.ModalDialog.showModalDialog(options);
The code is executed from a ECB custom ...
0
votes
1
answer
221
views
SP2010: possible to override styling of the upload aspx dialog from calling parent page
This may be a silly question, but I am wondering if it's possible to override styles for the upload.aspx dialog to customize the look...not from the upload pages content but form the calling 'parent' ...
0
votes
1
answer
430
views
Multiple modal dialogs - can not cancel or submit the second modal dialog
I have problems with multiple modal dialogs using IE 9 browser.
When I click on the Ok or Cancel button on the second modal form, I get following exception from my js code.
https://i.sstatic.net/...
3
votes
1
answer
4k
views
SharePoint Modal for Document Upload: changing the Dialog options for Edit Form
So I am using the Upload.aspx for doc lib with GUID in order to have Upload at a custom spot on a page. I think its the edit form that pops up right after you upload a document to add the metadata. ...
2
votes
2
answers
7k
views
SP2010 Using Modal Dialog for Forms : Beginner Questions
So I am trying to figure out how to use some java script in order to use a modal dialog to display new item form. The below is what I have thus far, but its not working and I am not sure what portion ...
3
votes
1
answer
1k
views
Hide upload Button on Asset Selector Dialog (AssetPortalBrowser.aspx)
I am looking to hide the "Upload" button in Asset Selector Dialog and I know Asset Selector Dialog uses Dialog.master in SharePoint. Is there a possibility to attach some custom jQuery/Javascript ...
1
vote
1
answer
4k
views
Show Ribbon in modal dialogs
In the current project, they applied some branding, and for some reason the ribbon is hidden in modal dialogs like when creating a discussion board, task or any list item.
I cant find how they hide ...
2
votes
2
answers
1k
views
How to bring a value to SharePoint dialog
How can I bring a value to SharePoint Dialog to bind data.
I call the dialog like this
<input type="button" value="<%#((DataRowView)Container.DataItem)["Id"] %>" onclick="javascript:Open()...
1
vote
3
answers
301
views
Is this the best way to open a dialog for a custom page?
I did some looking around and I was planning on creating the following js function to open a custom page in a dialog:
//Handle the DialogCallback callback
function DialogCallback(...