Page include not working with Brooklyn upgrade
The page doesn't load since updating when using id={{$Model.Leads.data.0.Id}} as a query string.
Any ideas of how to correct this?
Any ideas of how to correct this?
Tagged:
3
Categories
- 7.9K Questions
- 926 Ideas
- 220 Discussion Categories
- 178 General
- 9 Community Feedback
- 3 Community Info
- 18 Knowledge Base
Comments
I am facing this issue after upgrading my skuid package to Iteration 3.
Thanks,
Avinash
Is there any update on when can this be fixed please?
This may have been fixed in Brooklyn Iteration 4 by [SKUID-2866] which is now available from the Skuid Releases page. Can you try upgrading and see if it fixes the issue or not? As a reminder, Salesforce does NOT allow reverting back to prior versions of managed packages. Skuid always recommends installing new versions in a non-business critical sandbox environment to test all mission critical functionality before installing into a production environment. We also recommend that you update out of date themes when you upgrade.
Please let us know if upgrading does not fix the problem and we will investigate further ...
Thanks!
Karen
I don't think the issue is still addressed. I have upgraded to 9.3.4 and the issue still exists for me. Need quick resolution to this.
Best Regards,
Amit !
<jsitem location="inline" name="renderAsReadOnly" cachelocation="false" url="">var $ = skuid.$;
$(function() {
var opportunity = skuid.model.getModel('Opportunity').getFirstRow(),
isClosed = opportunity.IsClosed;
var renderFieldEditor = function() {
var pageTitle = $('#pageTitle');
var editor = pageTitle.data('object').editor;
var fieldEditor = $('.nx-basicfieldeditor').data('object');
if(isClosed === true) {
renderAsReadOnly(fieldEditor);
displayMessage(editor, 'This opportunity has been closed', '');
}
};
var renderAsReadOnly = function(fieldEditor) {
fieldEditor.mode = 'readonly';
fieldEditor.list.render({doNotCache:true});
}
var displayMessage = function(editor, message, severity) {
editor.handleMessages(
[
{
message: message
,severity: severity.toUpperCase()
}
]
);
$(".nx-messages *").off("click");
$(".nx-messages *").css("cursor", "default");
}
renderFieldEditor();
});</jsitem>
$(function() {
with this:
$(".nx-page").one("pageload", function() {
skuid.snippet.registerSnippet('showVIPAlerts',function(field,value) { var $ = skuid.$;
var noteModel = skuid.model.getModel('Notes');
var renderFieldEditor = function() {
var pageTitle = $('#notesTitle');
var editor = pageTitle.data('object').editor;
if(noteModel.data.length > 0) {
editor.clearMessages();
for(var i = 0; i < noteModel.data.length; i++) {
var row = noteModel.data[i],
parentType = '',
createdDateFormatted = skuid.time.makeFormattedDate(row.CreatedDate);
switch(row.Parent.Type) {
case 'CustomObject__c':
parentType = 'Custom Object';
break;
case 'OtherCustomObject__c':
parentType = 'Other Custom Object';
break;
default:
parentType = row.Parent.Type;
}
parentTypeInfo = ' (' + parentType + ': ' + row.Parent.Name + ')';
displayMessage(editor, createdDateFormatted + ' ' + row.Body + parentTypeInfo + ' - ' + row.CreatedBy.Name, 'warning');
}
}
};
function displayMessage(editor, message, severity) {
editor.handleMessages([{
message: message,
severity: severity.toUpperCase()
}]);
$(".nx-warning").off("click");
$(".nx-warning").css("cursor", "default");
}
renderFieldEditor();
});
Are you still on 9.3.3? Have you tried updating to 9.3.4?
Sorry this is still an issue for you!
Amy
Yes, we have updated two of our sandboxes to 9.3.4 and are still having this issue. I will continue to look at options on our end since we cannot upgrade our production instance until we have a workaround.