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
We have run into this issue a few times in our production org when typing in text fields. Once the space bar is hit, about a second later the cursor disappears and the next key press utilizes browser quick keys like backspace to reload the previous page or space to scroll. If the user continues typing, the text does not go into the field (which is no longer selected)…One of your guys had fixed this for us previously but I’m not quite sure how. Please let us know how to correct, this can be cumbersome for users. Awesome work btw, y’all have a killer product!!
Hi Folks - does anyone have any examples of CSS changes that I would need to incorporate on the skuid Resources section to alter or inherit the basic look and feel of SFDC? Ie no gray background - plain black field labels, page section headers etc? I found a post about setting this as a static resource to use over again… but I need an example to start with.
I created a wizard for users to create a new quote and there is a custom object to add line items within a table. When users are finished and redirected to the skuid detail page, the ordering of the line items in the detail page table is different than what was added in the wizard table.I attempted to sort on Created Date and the Name (auto number), but Salesforce doesn’t seem to save based on the order of creation. Any ideas on a workaround so that the ordering from the wizard will be reflected on the detail page?Thanks!
I have enabled Social Accounts and Contact Settings for LinkedIn and FB but the icons do not appear in the Chatter component?I have searched the net for an answer but no joy.I have spun up a new Org and Wammo it’s there ok - is this a SF issue related to Org versions and should I log a case with SFP?
Hi Folks - I have a lovely skuid page where I have Detail page (master) and a table (child) adding records etc. The master object has several rollup fields that show summary information (counts and currency) is there a way when a record is added to the table and “saved” that the detail page above would auto refresh to display the rollup values?Thanks for any help you can provide - much appreciated!
Hi,I am using Queue in Contact Skuid Page there i am showing Contact record detail page, but when i am doing this from queue Social Media Links are not working where as when i am opening record without queue then they are working correctly.Please find below screen shot for Contact record when i am opening that from QueuePlease find below the screen shot for the Contact Record where Social Media Links are working when i open record in separate windowPlease confirm me about this issue.Looking ahead for quick response.Thanks.
Is there a way to configure skuid to use a different icon for inline help? I can use CSS to manipulate the existing class (ui-silk-help) to point to a different icon but possibly there is a global config value that can be modified somewhere so that skuid uses it instead of the ui-silk-help class when generating the HTML?Thanks!
In standard Salesforce on an opportunity record you click “add” in the opportunity team related list section. You then assign: user, role, and access. I want to be able to do the same thing using Skuid. Can it be done? Thanks.
I have a calendar with 2 different kinds of events. So use the include page control in the popup forms for the 2 event sources. This works great… but it implies that the popup form as the event id to pass as a parameter to the included form… which doesn’t work when its a new event.I thought I could use the “run snippet then open popup” option… but I can’t figure out how to get the date and time that have been clicked on when the user clicks on the calendar. I dumped the arguments that get passed in the click and I can see quite a bit of data there, but not the date and time that were clicked on. Am I missing them… or is there no way to get them ?Once I can figure out how to get them I figure I can create the new event record and then open the popup and pass it the id so it will be able to populate the included form.Thanks
Just had a read of this great tutorial on building AppExchange apps with Skuid: http://help.skuidify.com/m/112173 questions spring to mind.1. The section on end-user customisability is compelling. But the Skuid page composer is so much more powerful than the standard Salesforce page layout editor that end users could easily get themselves into a bit of a mess. I’d love to see the ability to allow end users access to only a cut-down Skuid page composer - one that, for example, removes access to Javascript and CSS resources. Zach mentioned to me once that this can be done with a bit of creativity, just wondered if it was on the near-term roadmap to make officially available.(An important related point is that with a bit of training, an end-power-user could manage the standard Skuid page composer, particularly given the ease of restoring previous versions. Doesn’t stop me wanting the cut-down composer, though. :) )2. The section on shipping our app’s core Skuid pages using a static resour
Hello - When a lookup filter is applied on a field of a “new” record, if the filter uses the “Id” of the new record, the lookup results are coming back empty. The same logic applied to an existing record works as expected so the issue is specific to ‘new’ records in a model. Since, under the covers, skuid is assigning an “Id” to new rows (e.g. “1”, “2”, etc.), I would expect that rows should be retrieved that don’t match the “Id” value (which is basically every record in that object on the server). An example of this is on Account which contains a Parent account field. The lookup filter on Parent Account is written to not include the current account id so that the user can not mistakenly self-reference an account as its parent. Below is a sample page that demonstrates the issue. The field “Parent Account (Without Filter)” has no filter applied while “Parent Account (With Filter)” has a filter “Id” not equal to field from current row “Id” <skuidpage showsidebar="true" showheader=
I have a question about a problem I am running into with a page I am trying to make. It appears I can not include the “Probability” field in a conditions query. My goal is to exclude any records who’s probability is marked as either 0% or 100%.Here is how I am setting the condition:and this is the error message I am getting:1. An error occurred while attempting to perform the following SOQL query: SELECT Id,RecordType.Name,RecordTypeId,Event_Date__c,Point_of_Contact__c,CloseDate,Proposal_Submitted_Date__c,Contract_Amount__c,StageName,Project_Name__c,Account.Name,Name FROM Opportunity WHERE ((RecordType.Id = ‘012700000005pp8’)AND(StageName not in (‘Contract Accepted’,‘Completed/Paid in Full’,‘Proposal Denied’,‘Proposal Submitted’))AND(Probability in (‘0%’,‘100%’)))OR((StageName not in (‘Contract Accepted’,‘Completed/Paid in Full’,‘Proposal Denied’,‘Proposal Submitted’))AND(RecordType.Id = ‘01270000000E1wr’)AND(Probability in (‘0’,‘100’))) LIMIT 21 Error:value of filter criterion for fie
I asked this the other day and Zack wrote a snippet for closing 1 popup. Now I need to close 2.I tried modifying the snippet, but can’t get it to work close_popup = function(){ var popup_array = skuid.$(‘.ui-dialog-content’); for (i = 0; i < popup_array.length; i++){ popup_array[i].dialog(‘destroy’); popup_array[i].remove();} };i do get the array, which appears to have dom elements in it, but i get “undefined is not a function” when i try and call destroydo i have to somehow transform the array item into something jquery can call ‘dialog’ on ?
I have 2 popups on a calendar. they are basically copies of each other. The code for deleting the record being shown in the pop is failing in one popup, but not in the otherthe “delete this record only” when I do console.log(arguments[0]); shows “undefined” for the row,the same code works on the other popup. I have checked and the models are there, and the data is therehere is the code that is trying to run, identical on both formsvar params = arguments[0]; console.log(arguments[0]);// data structure of arguments is different since we’re not on a table row = params.row; $ = skuid.$;
As an example I have a skuid Page with two Page Titles in it. Each has a Button of Save / Cancel Action Type. Top to bottom on the page the first Button pair has an After Save Redirect URL of /{{Model.KeyPrefix}}/o. The second button pair has an After Save Redirect URL of /{{Id}}. The behavior of either Save button in this case results in the use of /{{Id}}. If I reverse the Page Title order on the Page, the result of either Save button results in the use of /{{Model.KeyPrefix}}/o.My particular requirement is to have both pairs of buttons have the same Redirect URLs so that the Button pairs behave in unison. This works fine in skuid but I discovered the above behavior while configuring my requirement. They really ought to work independently.
sorry to seem stuck on the same topic but I more “page include Uncaught TypeErrors” - in this case the included page loads fine when previewing, but once I start using it with a visual force page deployment, I get uncaught Type Errors. I’ve pasted screenshots below. I’ve triple-checked that pages are in the same module, swapped them out & back in again, but it doesn’t seem to make a difference. The most frequent error I get is: Uncaught TypeError: Cannot read property ‘length’ of undefined ActivityReminder._checkScheduleUpdates Screenshot for Preview page working ok: Deployed page fails and renders standard salesforce header instead: Any help is greatly appreciated. Thanks, Greg
Hi Team,We have been long encountering strange issues with client side events that spontaneously unwire. Until recently we have been metaphorically jiggling the antenna until these issues went away, however recently we had one instance that was significantly blocking our progress and I have been able to identify the cause of the issues in some detail.In Brief:The problem is occurring when the following circumstances exist:There is a field editor on the page, the editor is changing the model ‘Client’ There is a template on the page, this is bound to the model ‘Client’ There is an element inside the template, this element has an event wired up on click. Any time the model ‘Client’ changes, events within the template spontaneously unwire. Canceling model changes does not resolve the issue. More detail:When the page first loads, the a#settingsanchor selector is bound:If you change the model, either by changing a field in the editor or in the console with this: skuid.model.getModel('Client
Hello -I have a model that is marked as “Create Default Row if Model Has None” and has a condition applied to a reference/lookup field. When the condition fails, a new row is created in the model and it contains the object id for the field where the condition is set. So far so good…The problem that I am having is that I need properties of the reference field in order to conditionally render certain portions of the screen. When the record already exists, the appropriate fields get pulled down for the reference field and conditional rendering works as expected.Unfortunately, when a new row is created in the model, the additional properties of the reference field are not retrieved on page load so my conditional rendering does not work properly.Here is sample:System Model has property ColorOrder Model has property System (reference to System Object)When Order already exists, Color is available via OrderModel.System__r.ColorWhen Order is a new record, OrderModel.System__c gets the right
For a given model, skuid makes available the KeyPrefix property that provides the org specific object prefix. This comes in very handy.We have a scenario were we would like to build a hyperlink to the “tab/list” view for fields on a skuid page. The fields we would like this for are reference/lookup fields on the object being displayed. For example, on our Order page, we display the Account for the order. We would like to put a hyperlink to “/001/o” in the label area. Getting the hyperlink in the label is easy. Doing this dynamically to support deployments to other orgs is the challenge.Is there a way to access the Key Prefix for a lookup field on an object?My solution thus far is to create a remote method that gets invoked when the hyperlink is clicked that would call getDescribe() on the SObject (the name would be provided in the parameter to the remote method), return the key prefix and then redirect appropriately. Another option might be to create VF page that does something s
I’ve tried asking this before. I have a table with 3 rows… one row is changed. When “Save” is clicked I can get a notification if I’ve registered a field editor… but I only want to reprocess the 1 saved row… not all three of them.I’ve spent a lot of time looking in the console. I see there is a “changes” collection once I make changes… but it seems to be keyed to fields not rows.I guess I could try and track the changes on each field in each row and then I’d know the row that had changed… but that seems excessive.
I have a a need to render some different layouts depending on the number of child records on the parent object. e.g. if the parent has only 1 child, the page is shown as ‘one’, where we mash up the two records into a single view. Between 2 and 4 we nest the children below, and more than 4, we provide a list.How do I create the render condition that queries the number of records in a model?
I have a detail page using a queue component, which is trying to load a page include. The page I’m including contains an inline resource which is resulting in an error in the console. (see attached screenshot) as well as preventing the page include from loading. The included page and snippet works fine on its own as a detail page, but as a page include its not working. Does a page include in a queue component not have the full functionality of a normal detail page? ie should it be read only? Is there another way to make this snippet work inside the page include component?
If a certain field in the event source is blank render a different color. i.e. In event display and background color settings in calendar source properties:if {{AccountId}} isBlankValue then #FFFF00 else #00000?Thanks.
Hello!I’m looking to display HTML email tracking data in a Skuid table component looking at a contact model. Has anyone had any success with this? I’ve been trying to use the EmailStatus object for the model but am getting an error: EmailStatus LIMIT 21 Error:entity type EmailStatus does not support query I’m not sure if anyone else has tried to do this? Am I doing it the wrong way?Any help’d be much appreciated.Cheers!Louis
I have a model (ESCO Product) with a condition where records are in another model (PTI). I want to update the source model (PTI) using Javascript, which will then affect the ‘in’ condition. I am assuming that if I call update data on the PTI model and then call update data on the ESCO Product, the in portion will have been updated and therefore be properly updated. Here is my code (which runs on a third model : ) ) var params = arguments[0], $ = skuid.$; var model = params.model; var PTI = skuid.$M(‘PTI’); var ESCO = skuid.$M(‘ESCOProduct’); console.log(ESCO); var adder = skuid.$M(‘Adder’); var item = params.item; var row = item.row; var Id = model.getFieldValue(row,‘Id’); var indexCondition = PTI.getConditionByName(‘Index’); console.log(PTI); PTI.setCondition(indexCondition,Id); PTI.updateData({callback:function(){ adder.updateData(); ESCO.updateData(); }}); console.log(PTI); console.log(adder); console.log(ESCO); $.each(PTI.data, function(coolRow){ console.log(PTI.getFieldValue(co
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.