Upcoming Event - Nintex Automation K2: Back to basics
Access resources, discussions, and troubleshooting tips to build custom applications and streamline workflows with Skuid NLX, SFX, & EXP.
Recently active
Can i create a parent record and child record on a row action?I am displaying data from one object in a table. The table has a row action which should create a record in another object (Master) and then take the id of the newly created master record and create a record in the child object
We’re getting a strange error. Looks like this: Here’s the console: This occurs after adding a row or rows to a model in a page include, and then attempting a save (or perhaps just trying to run anything in javascript?). The save works, but the error is thrown. If I refresh the page, the error is gone and doesn’t return. Any idea what might be happening here?
We currently have a domain setup in Salesforce (ex: abc.my.salesforce.com) and have just recently begun to move our visualforce pages over to skuid pages. I am running into an issue with button url redirects from the new skuid pages to some of our existing visual force pages with different namespaces. Here is what is happening:I have a new page for viewing Accounts that resides at the /id url which correctly redirects to https://abc–skuid.na12.visual.force.com/apex/ui?page=Account&id=001U000000ikYoGIAU. The problem then becomes a button on the page the redirects to /apex/hierarchy?id=001U000000ikYoGIAU which causes the page to redirect to https://abc–skuid.na12.visual.force.com/apex/hierarchy?id=001U000000ikYoGIAU. Because abc–skuid is in the base url the page cannot be found by Salesforce because the namespace which is embedded into the url is not able to switch back to to my namespace abc–custom.One other thing to complicate this is that I currently build and test the pages in ou
I have created a ui-only field that want to turn 6/16/2015 12:00 am into 6/16//2015. I selected a date type of “Date”. But it is not clear what goes in the default value or where I tell the field its Date / Time Format and Manipulation value as shown on:http://help.skuidify.com/m/models-conditions-filters/l/378313
According to this link: https://developer.salesforce.com/trailhead/lex_dev/lex_dev_overview/lex_dev_overview_visualforce It seems like only record view and tab can be overridden, but NOT record list view. Will this affect skuid pages that override list views?
As of Monday when I log into my sandbox I am greeted with the below message. It seems that a few redirect buttons on my pages are not working as they did on Friday of last week. Has anyone else experienced this?
I am having a hard time showing an aggregate table in a drawer properly. The filters work properly in terms of showing the correct related information. However, when I open two drawers at the same time, the information is merged in both drawers. I have tried adding the context id’s for the table but that gives me blank drawers. I am thinking that something special has to be done since the drawer table is an aggregate model but I have been unable to figure out what that is. 1 Draw open. All the data shows properly. 2 Drawers open. The information for both records show in both drawers. **The Before load actions seem to be set up properly. When the model is queried it is set to “get more”. **
Can I access url parameters in javascript snippet
Scenario: I have 200 users who have contibuted to force.com for 5 years. When 1 user leaves the company I will migrate the “to-do’s” to a new user. However, I want to still see the notes were associated with the separated user. 10 years from now when someone is looking at the note they can see who made the note 10 years ago? Is there a method to keep the user in force.com, and deactive their license.
I have a header than randomly covers up parts of the page:. It’s missing a whole block of info (from the page builder) : The page: (yes it’s scrolled all the way to the top)
I want to change the background color of the cells in a table dynamically based on the value in cell. I found this example which I tried to modify according to my requirement but I was not successful in add or overriding CSS var $ = skuid.$;var field = arguments[0]; var value = arguments[1]; switch( field.mode ){ case ‘edit’: skuid.ui.fieldRenderers[field.metadata.displaytype].edit( field, value ); break; case 'read': case 'readonly': var cellElem = field.element; var iconElem = $( '<div>' ) .addClass('ui-silk') .appendTo( cellElem ); switch( value ) { case 'Value 1': iconElem.addClass('ui-silk-flag-red'); break; case 'Value 2': iconElem.addClass('ui-silk-flag-orange'); break; case 'Value 3': iconElem.addClass('ui-silk-flag-green'); break; default: iconElem.addClass('ui-silk-sport-8ball'); break;
By default the basicfieldeditor as a label width of 40% and field of 60%div.nx-basicfieldeditor-item>.nx-field, div.nx-basicfieldeditor-section-body>div.nx-basicfieldeditor-item>.nx-field {width: 60%;margin: 4px 0 3px;}During the inspection of the element this is what I see, and need this to be 40% not 60. Simply cutting and pasting the above into custom CSS does not work. Having a brain freeze so if someone can assist, that would be great.Thanks in advance.
For some reason anywhere I am displaying the history of an object, the values are now displaying the changes in a date/time format. This had been working fine, I believe it occurred upon installing the banzai release, although not sure why that would cause this, so maybe just a coincidence. Any ideas?? It looks really bad!
Thanks for your help Zach!!It is working now after upgrading to v7.12. I am experiencing a different issue though. I am trying to add lightning components under namespace aura, ui and force in skuid lightning page builder. However the component lookup is providing a limited set of available components under those namespaces and not listing the all components listed by salesforce. Is there any limitation on choosing the out of the box lightning component list.----------------------------------------------------------------------------------------------One clarification: This is happening only on sandbox with custom domain name. The skuid pages created on my personal dev org is showing all available lightning components. Note: This conversation was created from a reply on: Internal Server Error Attempting to Build Page in Lightning.
Is there an easy way to check in the JS API that a multi-picklist field value includes a value? Something like the below preferably? var caseModel = skuid.model.getModel(‘Case’); var caseRow = caseModel.getFirstRow(); if(caseRow.FieldName.includes(‘My Value’)){ // Do stuff }
I have a table of junction objects (ConsultationMedRec__c). Each is related to a different MedRec (MedRec__c). When I update the Order_Hidden__c field on the Consultation MedRec, I want the Order_Temp__c field on the related MedRec to be updated. I’ve tried a couple of different Javascript snippets, but none seem to be working. I feel like I’m missing something - this seems like it should be pretty easy to do. Here’s what I’m working with now: var params = arguments[0]; var $ = skuid.$;var models = skuid.model.map(); var consultationmedrecs = models.ConsultationMedRecs;var rowsToUpdate = {};$.each(consultationmedrecs.data, function(){ rowsToUpdate[this.MedRec__c] = { Order_Temp__c: this.Order_Hidden__c };});consultationmedrecs.updateRows( rowsToUpdate );
HelloI have since my last upgrade (Bonzai version) the following warning message at the top of each Skuid page. I’m starting with a new org.Message :1. An error occurred while attempting to perform the following SOQL query: SELECT Name,SmallPhotoUrl,Id FROM User WHERE (Id = ‘00524000000QqJ1XXX’) LIMIT 21 Error:Field ‘SmallPhotoUrl’ on object ‘User’ is not supported. One or more features must be enabled to access this field. How I can give access to the field to avoid the message ? Thanks for your helpFred
Has anyone come up with a way to show recent items in the search in a similar approach to the standard SFDC search? When I’ve added it to the Search component as a return object, I just get a spinning circle…
I have a table of Accounts, with a drawer row action, and the drawer contains a tab set. I’d like one tab to only render if any contacts on the account have an email address. Any ideas?
Has anyone had the issue with uninstalling Skuid from their Salesforce Instance? I am receiving the error “This permission set is assigned to one or more users. You can only delete permission sets that aren’t assigned to users.”,but all assigned permissions have been removed.
Just saw that on your website footer. Who get’s to work out there?
We’re currently using a bunch of javascript to make percentage calculations on an aggregate model. I’d love to replace that with a ui-only formula field. Here’s my attempt at a formula: {{TotalRecords}} / MODEL_LOOKUP(‘numberOfSchedulingLeads’, ‘TotalRecords’, ‘Id’, ‘4’) The formula isn’t returning anything. Is my syntax ok? The fourth row of my model (Id=4) is the roll-up summary row. TotalRecords and Percentage are both COUNT(Id), and we’re using javascript to change the values of Percentage to a percent of the column sum. The ui-only field is called PercentUI, but isn’t showing up in the model at all.
I have a Sales Order object with a redirect to a Skuid Sales Order page. I have now built a POS Skuid page over the Sales Order object. So I have two different Skuid pages for the same object. Skuid Sales Order Page: Page assignments - Organizational DefaultSkuid POS Page: Page assignment - POS record types I am running into redirect issues when the page loads for approving orders from the POS page. The approval process redirects to another page and then redirects you back to the originating page. Since the page assignment is based on record type, the record type must stay POS. The approval process changes the record type from “POS” to “Approval” . I have a workflow that changes the record type back to POS however the record type update seems to happen after the full page load. So I don’t get redirected to the POS Skuid page but to the Sales Order Skuid page since that is the default. Is there a way to do a redirect URL to a visual force page thus negate the need for the page assignme
Hello community. I have created a Case Comment table with the intent of making case comments and notifying the case owner and case contact. When I create a comment both IsPublised and Send Email Notification are set to TRUE. When I save the comment and refresh the page, Send Email Notification returns to FALSE and the email is not set. Am I missing something? Here are my model conditions.
When attempting to select a field for conditional rendering of a table’s global action, the search function does not appear to find ui-only fields.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.