Deep dive demo webinar: Get an in-depth look at the enhanced Nintex CE Platform
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
Child page content is hidden under large master page sticky header. This is a problem on real pages for us, but I created this exaggerated test scenario for illustration purposes. Here’s a video:https://drive.google.com/file/d/1KN-V8w5orP_or6-c_eBNt1RFuSemhXnl/view Sample Master Page: <image source=“url” uniqueid=“sk-2gDk-315” datasource=“salesforce” behavior=“none” resource=“OptimizeGraphics” path=“optimize_4_admin_icon.png” resourceContentType=“application/zip” url=“https://www.skuid.com/wp-content/uploads/2017/01/skuid-card.png”>; Sample Child Page: &lt;p&gt;This is a Test&lt;/p&gt;
I have a java script custom button in Salesforce Classic called “Send with Salesforce”. The code is: {!REQUIRESCRIPT(“/apex/dsfs__DocuSign_JavaScript”)} DocuSign_CreateEnvelope();The button is on the media campaign object.How can I edit this button to use URLFOR so that it will work in Lightning?
Hi,I have a reference field that is implemented as a picklist with a filter (in v1). All works fine. Now we’d like to highlight the field if it is blank.We are doing this in other fields in the table with a custom snippet. However, if we use a custom snippet, I lose the conversion to a picklist with filtered field values.Is there an easy way to have both? Or do I have to build in js the filter query if I want to highlight the field (if so, an suggestions on how to best do that)?Thanks!
I’m currently working to prep our org for using Files rather than Attachments, including in SKUID models and components but am running into some roadblocks. We have a table that the end user needs to essentially “Clear Out” the file from the table (ideally delete, but simply being left off the UI via condition would be fine too as a workaround) once they have moved the file to a different record. Files don’t allow someone who doesn’t own the file to delete it without Manage All Data (https://success.salesforce.com/ideaView?id=0873A0000003XWGQA2), so I figured a workaround would be to create a custom boolean field on the ContentVersion object that denotes they have reviewed and moved the file. The SKUID table would then have a condition that drops it off the list if the file is checked “True” for this.However, I’ve tried it two ways and have two different issues preventing this solution.1. ContentDocLink Attempt: When I try to use the ContentDocLink model/table, I can’t edit the custom
I want to run an action sequence or some javascript each time a template component is rendered. Anyone have ideas on how to do that?
After upgrading from version 10 to 12 I’m finding that the search component goes in and out depending on how long a page has been open. On our Master Page we have a search component that is used throughout the org. If a page is open for a while, the search stops working. Once the page is refreshed, the search starts working again. I can see that refreshing is a simple enough solution, but if there’s a way to fix it so that it works all the time, please do.
I am using a vertical tab set and if I put a responsive grid container in the tab region, it bumps everything in the RG down to the bottom of the tab menu. It doesn’t happen if it’s a panel set or without a container.
Is there a way to see the old value of a field in snippet so that i can compere old and new value. Example Suppose user has selected ‘ABC’ value from PicklistA, then user select ‘XYZ’ value from the same PicklistA then through model’s action, i want to compare old and new value.
I’ve added a skuid page component to a lightning community builder page. Checked all permissions and the skuid page is still not visible to the community users.
As per subject. How? 😉
We are experiencing an issue with the sliding panel component. Basically, when I open a sliding panel on our customer support page the correct info pulls up. However, when I navigate to our campaigns page and open its sliding panel, it contains the content from the Customer Support page panel. The sliding panel on the support page has a page include in it. The one on the Campaigns page has a queue in it. That is the only difference between the panels. Has anyone else experienced this?
Is it possible to retrieve the selected value of a table filter to use to populate a row field? I want to have an action that creates a new row and populates one of the row fields with the value selected in the table filter. See this screenshot—I am looking for something to put in the “Value” field that references the filter. Is that possible? Thanks!
Is it possible to utilize Javascript (or some other method) to update the context conditions for an element within a deck?
I am using Skuid in Salesforce and I created Table component which includes the RecordTypeId field. I have that field’s Field Renderer set to Custom and have it running a custom snippet. When the page loads, RecordTypeId appears as blank for the first record. It renders correctly for all the other list items. When I go into Edit mode for that first record, the field is rendered correctly.I added some logging lines to show when the function executes and I noticed that it only runs n-1 times where n is the number of list items. What am I missing? This is my first time using custom code in Skuid. Thanks in advance!Here is the beginning of the snippet for reference: console.log( 'Entering code' ); var params = arguments[0],<br>$ = skuid.$; ( function( skuid, $ ){<br>&nbsp; &nbsp; var snippet = skuid.snippet,<br>&nbsp; &nbsp; &nbsp; &nbsp; ui = skuid.ui; &nbsp; &nbsp; snippet.registerSnippet( 'GetAvailableRecordTypes', function(){<br&
I’m trying to use Javascript to filter down a list of selected records. The idea is that the user selects a bunch of records, and we make different updates depending on the Status of the selected record. The console shows me ‘records’ when I’ve selected them, but nothing in ‘filtered list.’ “Status” in the proper API name of the Status field on the Case object. Any ideas what might be wrong with this Javascript? $ = skuid.$; var params = arguments[0]; var models = skuid.model.map(); var Cases = models.CasesToCover; var records = skuid.$.map(arguments[0].list.getSelectedItems(),function(item){ return item.row.Id; }); console.log(records); var filteredList = records.filter(function(record) { return record.Status == “Started”; }); console.log(filteredList);
We have a requirement to create multiple records on saving a Skuid page . There are 3 models used in the page Opportunity ( Store Opportunity details) Contact (List Contacts) OpportunityContactRole (Store Opportunity Contacts) On entering and saving details Opportunity details entered should be saved to the Opportuntiy Model Based on the # of contacts selected (multipickist field) that many records should get created in the OpportunityContactRole model and should get linked to the newly created Opportunity). JS Snippet is being used for this var params = arguments[0], $ = skuid.$; //to retrieve a list of page models skuid.model.map(); // obtain a reference to a specific model var OpptyModel = skuid.$M(‘Opportunity’); var OpptyContactModel = skuid.$M(‘OpportunityContactRole’); //create a new Opportunity in our Oppty model skuid.model.save([OpptyModel],{callback:function(result){ if(result.totalsuccess){ alert(‘Oppty creation Success’); var firstOppty = OpptyModel.getFirstRow()
We have a parent object ENROLLMENT with child object LESSONS. The lessons object has a lookup to a financial object to pay a teacher PAYABLE LINE. Payable line has a parent object that rolls up all of the financial totals into one payout record PAYABLE.We have a skuid page for the enrollment and we can easily see the associated lessons there. We can also easily see the payable lines in a list on the enrollment. What we have not figured out is how to see a list of the Payables in the enrollment. We would like to see that list and also create new payables from our enrollment skuid view. How may we set this up?FYI a payable is the master to a payable line so the payable must be made first before per lesson payable lines can be added. Thanks!
I’m running into an issue where doing a create row / update row in Javascript happens almost instantaneously if the table for the model I’m creating/updating rows for hasn’t been rendered in the UI yet; but the moment you render the model’s table, even if you hide the table from display on the page, a createRow / updateRow javascript operation (in a loop) becomes painfully slow because it’s updating the UI for the table with each create/update.Is there a way to unload from the UI rendering (de-render) a table / UI element so that I can run these sorts of create/update operations, and then re-render the table after it is done?Alternatively, is there a way I can run these create/update operations without invoking an update to the UI rendering so that it happens more quickly, and only perform that UI rendering update at the end of my loop?
I have a custom object “Referral” that is a child of Contact (lookup relationship through “Referred Individual”). A contact can have many referrals. For one referral, I want to see a list of all other referrals for this contact. I have a list of referrals. I want to have a popup that works for each referral so I have set up an action on the table: Clicking this icon returns only one row even though there are many referrals for this individual: There are two models - the model for the referral list with no conditions and the model for the popup - called AllReferrals with a condition default off: The actions for the icon are: I can’t figure out why I only get one referral returned.
I am testing out the lightning experience with Skuid and I am having a hard time getting my redirect URL actions go to a VF page instead of a direct Skuid page.In SF classsic we would create an override for an object set a VF Page and then redirect to that VF Page because you can customize the tab name. This is not working in lightning. Can anyone help me out on how the URL should look to redirect to a VF page from a Skuid API V1 (V2 would be great too) with My Domain enabled?
I have two models i.e case Model and Case Comment Model. From Case Comment, I am not able to edit the caseId. How should I achieve that ( I am trying to make that as reference field, so that user can select the Case id from the reference list )Reference Example is shown below ( This is what I am trying to do for case and Case Comment)The table on the Case Comment model is shown below( Here I am not able to edit caseID)Do we have any other approaches?Can we edit the caseId field from the case Comment model table?Can someone please help me with this issue.
Not long ago, we added DATE_ADD and DATE_DIFF to formula functions in UI-only fields. What other formula functions not currently supported would you like to see available? Thanks!
I have a mass action that updates rows on a table. The table might have 20 rows, or many more - 70 or 80. If I try to update a larger number (say, 70), I get an error: “Unable to gain exclusive access to rows.” Is there a way to batch up this action so that the update happens in smaller chunks?
I have an Account Model I am trying to apply a filter to based on its ParentID, and to show all related Opportunities with the distinct Account IDs remaining in the filtered Model. I am applying the filter through a UI-only picklist field with predesignated values for the ParentID. I have a Condition on my Opportunity Model to be filterable default on for all Accounts in the set of all values containing the ID field from any row returned by the Account Model. Why is my Opportunity Model not updating?
I am unable to edit the case comment and render CreatedBy ( on case comment Object) . Can anyone please help me? Though I went with an approach of rendering a table ( on Case Comment Object) on button click. But in this approach again now I am not able to render the case comments of a particular caseID ( ParentId).
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.