Feature Request – Can you add a field that allows us to set the color of the slider or css for it?
One design we like is to make the boxes a solid color and the slider different colors to reflect the category the information falls under. We can do it by adding CSS but it is a pain. It would be nice to be able to just set the color in a field.
Feature Request – Master List. We would love to have all our tile configs in a list off the root (one place to manage them). this also helps since we re use some tile bars over and over and having to copy the data from site to site is a pain.
Issue – If you try to put 2 boxes under a long box you end up with a space (second small box aligns to column 2 instead of under the wide box).
box 1 – 300 wide – 01-01
box 2 – 150 wide – 01-02
box 3 – 150 wide – 02-01
box 4 – 150 wide – 02-02
Hi,
I did a quick test in a list by entering EditForm and changing the “ContentTypeId” to a blank string like this:
.../Lists/Tasks/EditForm.aspx?ID=14&ContentTypeId=
This gives me the “Sorry, something went wrong” message with “An unexpected error has occurred”.
I don’t think this error has anything to do with DFFS, but it is a general error from SharePoint.
I hope you can sort it out.
Alexander
This seems to be related to using tabs in the display form. I have just made a basic tab and left it to show all fields.
This particular list is a sp2013 contacts list with some extra columns , event handlers etc. So content types are active.
Does the following indicate DFFS is having trouble determining the content type ?
Microsoft.SharePoint.SPContext.GetContentTypeThroughQueryString(String strIdx) +384
If I select the item and use the ribbon to edit it works.
If I select the item and use the ribbon to view and then use either the ribbon or the DFFS button to edit it works.
If I click to view the item and then try to use either the ribbon or DFFS button to edit it fails with that error.
This is the link to the display form (I am using modal forms).
http://example.com/kgcontacts/_layouts/15/listform.aspx?PageType=4&ListId=%7BDA04CBD8%2D220D%2D44DB%2D9151%2DBE54BF1DB0C9%7D&ID=5818&ContentTypeID=
Here is the url of the modal with the error –>
http://example.com/kgcontacts/Lists/Contacts/EditForm.aspx?ID=5818&Source=http%3A%2F%2Fgcmdevportal2013%2Ekrys%2Dglobal%2Ecom%2Fkgcontacts%2FSitePages%2FHome%2Easpx&ContentTypeId=&IsDlg=1
`[FormatException: Input string was not in a correct format.]
System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) +14281985
System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) +305
Microsoft.SharePoint.SPContext.GetContentTypeThroughQueryString(String strIdx) +384
Microsoft.SharePoint.SPContext.ContentTypeInternal(String contentTypeId) +284
Microsoft.SharePoint.WebPartPages.ListFormWebPart.get_TemplateName() +71
Microsoft.SharePoint.WebPartPages.ListFormWebPart.ShowRibbon() +453
Microsoft.SharePoint.WebPartPages.ListFormWebPart.OnInit(EventArgs e) +349
System.Web.UI.Control.InitRecursive(Control namingContainer) +186
System.Web.UI.Control.AddedControl(Control control, Int32 index) +189
System.Web.UI.WebControls.WebParts.WebPartManagerControlCollection.AddWebPartHelper(WebPart webPart) +402
System.Web.UI.WebControls.WebParts.WebPartManagerControlCollection.AddWebPart(WebPart webPart) +2736250
Microsoft.SharePoint.WebPartPages.SPWebPartManager.AddWebPartWithRetry(WebPart webPart) +939
Microsoft.SharePoint.WebPartPages.SPWebPartManager.CreateWebPartsFromRowSetData(Boolean onlyInitializeClosedWebParts) +8612
Microsoft.SharePoint.WebPartPages.SPWebPartManager.LoadWebParts() +156
Microsoft.SharePoint.WebPartPages.SPWebPartManager.OnPageInitComplete(Object sender, EventArgs e) +328
System.EventHandler.Invoke(Object sender, EventArgs e) +0
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2324
Hi,
I’m afraid this is a bit tricky as the ID is not assigned until the item is “completely” saved. This means that the user is redirected back to the default redirect destination – most likely the default view of the list.
One option is to add a script here to query for the latest addition to the list created by the current user. The problem is that you are not 100% sure where the user is redirected as he/she could have a “Source” attribute in the URL.
Look at this comment for a possible method to specify the redirect location.
When you know where the user “lands” you can add a script here to find the ID and present it to the user.
Alexander