Upcoming Event - Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
I am using a drawer to display tasks related to a custom object. My drawer contains a table, and I’m using Context conditions on the table to display the appropriate tasks. (WhatId of Records = Id of row in context.) When I create a new row in the Tasks table, the WhatId is automatically populated with the Id of the row in context - which is exactly what I want to happen. I also want to populate the WhoId of my new tasks using a custom field (Contact__c) on the row in context. The difficulty is that I want this field to be editable. What’s the best way to set a default value in a new row in a drawer, and allow it to be editable? If it’s a snippet, how do I get the Id of the row in context?
We are getting weird behaviour with autocomplete popup sitting behind skuid popup (normal dialog popup). We tried setting z-index property for autocomplete popup and it works first time and if you search again problem reappears. While inspecting element for z-index property of skuid popup and autocomplete popup we found that z-index property of skuid popup is increasing dynamically so as to make it more than z-index of autocomplete popup (i.e. if I set z-index of autocomplete popup to 105, skuid popup’s z-index will be automatically set to 106). The problem occurs rarely on normal reference field. However, it happens almost all the times when we use custom field renderer (which is polymorphic in nature i.e. it can search different records such as account, Contact, Service__c etc). Any clues?
Hi, On Account detail page i want to show all “Notes” that are related to Current account as well as notes that are releated Account—>Contacts. So Baically is used Join with Sub query to add filter on ParentId in Account.Contact Id OR ParentId =Account.id But when i’m running that page then getting following error: An error occurred while attempting to perform the following SOQL query: SELECT Body,Title,ParentId,Parent.Name,Id FROM Note WHERE ((ParentId in (SELECT Id FROM Contact WHERE (((AccountId = ‘001d000001ar9NEAAY’)))))OR(ParentId = ‘001d000001ar9NEAAY’)) ORDER BY LastModifiedDate DESC LIMIT 101 Error: Semi join sub-selects are not allowed with the ‘OR’ operator Can one one please let me know how i use OR Condition with Sub Query. Thanks,
Is skuid.time.getLocalDateTime() a legit skuid function?If so, is it different than skuid.time.getSFDateTime()?I’m getting some javascript errors on a page where I am trying to subtract 1 day from a specified date, and I may have the issue narrowed down to a function in one of our static resources which uses skuid.time.getLocalDateTime(). I don’t see that function in the skuid.time documentation.
I’m having a bit of an issue with the EmailToSf functionality. The main model is title pbaListing and the email address that I’d like to link to is under PropertyOwner model. Here’s the code: {{$PropertyOwner.Email.data}}{{#Email}} [<a href="https://mail.google.com/mail/?view=cm&fs=1&tf=1&to={{{Email}}}&bcc=emailtosalesforce…; target=“ComposeGmail”> Gmail]{{/Email}
We have an important requirement for extending SKUID to achieve an important role for our clients. Would like to build a custom component that can dynamically create salesforce custom object and fields. In APEX this is normally done using (http://www.salesforce.com/us/developer/docs/api_meta/) I would like to request any solutions, example or direction on how we can achieve this.
Let’s say I have a page include that’s been loaded. What happens if I conditionally unrender and then render it again. Would it load the page again or would it be in “memory”.
I’ve had reported issues with Skuid pages not behaving properly since users have upgraded their mobile devices to iOS 8 - accessing SF using the Safari browser (devices on iOS 7 are still working fine.) Using Chrome on these devices presents no problems. We’re seeing that “Save” actions just spin and get hung, and defaulting rules and such aren’t processing. Fields I expected to auto-fill are left blank. It doesn’t matter, though, because when they try to save the record it just sits and spins and they have to kill the session. I read on other threads that Chrome seems to be more forgiving but the dev console can show a clue to the issues. I do see issues in the console, but I’m no developer and they are meaningless to me. Anyone have an idea what I can do next to solve this? Attached are the errors I am seeing.
Hello, When I add multiple categories it breaks my report and the categories are on top of each other instead of side by side. I have attached a screen shot of what it looks like. Please let me know if there is something else to show that would be more helpful. Thank you!
I am trying to do a field update in the action frame work with a Date field. I would like to set a date field to be 2 months in the future. I created an action - Update a field on row, select the date field to update, for Value select ‘Next n Days’ and enter 56 for the day value. When the frame work runs it does not appear the date field gets set. It does appear to work if I set the date field to a specific date. Any suggestions?
Does anyone knows if there is an easy way to redirect just one user to standard page on one object?I would like this user to Skuid pages in all object but Accounts. Is there an easy way to do this?
We’ve followed the instructions about creating a page pack, but its not defined how to get the created page pack to appear in another org.http://help.skuidify.com/m/page-assignments-and-overrides/l/245955-import-export-page-packs-and-modu…We downloaded the static resource that was created and uploaded it into the target org via the UI but its not available to unpack.Can we get some clarification on this part of the process?
Hi,A want to change Skuid page css based on the selection app in the salesforce app menu. Based on the selection of app, i want to change the css of the page. Am getting selected app name in my snippet but when i assigned CSS in the snipt, its not reflecting in the page.How i can implement this?Thanks in advanceShashi
Hey all, I’m wondering if someone can point me in the right direction as to how to re-initialize event handlers after clobbering the DOM with jQuery.The reason I ask is because we’ve run into a use case where we want to sort the rows of a table, but in kind of a weird way. We have a drawer action on each row in an Accounts table, and in each drawer is another table of child objects with dates. We want to sort the Accounts table based on the dates in the drawer tables. So a row which has a drawer with an item that has the date “02-25-2014” would appear before a row which has a drawer with an item that has the date “05-01-2014”. Strange, I know.I know that we could create a custom field on the Account object and push the earliest date on the child object up to that field, but we’re trying to solve this with just Skuid/Javascript. In any case, I’ve run into these problems before so I figured it would be good to try to find an answer. So in lieu of the additional field, I was wondering if
After a user logs in I’d like to redirect to a skuid page without any salesforce header and sidebar. Is this possible?
I have a table with check box field, if i check that field that record should not be visible to a profile users. Only administrators can see that record, end user profile users cant see that record. How can we do that?
I’d like to have a nested drawer in a list that when clicked on displays and allows for editing of both that list objects data as well as the associated contact data. Moreover, I’d like to include a task button that would log a call with the contact. Here’s a deeper overview. The main object that’s displaying is a Registration object that shows registration information and the contact associated with it. I’ve created a list that displays the registrations. From that list, I’ve created a drawer that displays more registration information as well as contact specific data. To do this I created a “Contact” model with a condition that the Registration Id is equal tot he Contact Id. However, it only displays the top most contact of the list in every drawer. Second, I created a NewPhoneCall model. This task model is used to log a call with the contact in the drawer. I created a condition tht says the WhoId is equal to the Contact Id. Again, this still only logs a call for the top most contact
I’m getting this error on the before render javascript for a chart: Apparently chartObj.series[1] is undefined. "cannot read property ‘data’ of undefined. However, you’ll notice I’m logging chartObj in the console. Here’s what I get: Looks to me like chartObj.series[1].data should be there. What am I missing?
I’m having an issue with overriding a custom object tab. When clicked, it looks like an override URL is launched but then it quickly redirects to the original tab page. Here are the steps that I’ve taken. Created the skuid list page. (photo included) Created a new VF page with this markup <apex:page showHeader=“true” sidebar=“true” readonly=“true” docType=“html-5.0” title=“RentalListingPage”> <skuid:page objectType=“pba__Listing__c” actionType=“Tab” /> </apex:page> Gone into the custom object and connected the tab page to the Tab button. I’ve added a few photo
I know this question has been asked before, but I wanted to reach out and see if anyone had any creative ideas.Is there any way to display table data in columns, versus rows (and have the rows be the field labels)? Workarounds?
I have found out that my users with force.com license are not able to see Chatter feed in accounts.Does anyone knows how to fix this?
Odd question. Can a standard link to records be “intercepted” in Skuid?
Is there a way to determine which object an Id belongs to?
Hi,I have the following page that I am trying to get working.A panel with a queue on the left that holds a set of Competencies in a Competency Model2 field editors (no page includes) that I want to update on the right of the panel when the queue item is clicked. The first, a read-only model is the ActiveCompetency, which is based on the same Object as the Competencies model, but is a single record, with a description of the competency I need to evaluate as part of an employee appraisal. This is based on the idea from this post. I have this bit working.The second field editor is either a new or loaded editable component based on a CompetencyAssessment object, which is keyed off 2 other objects, ActiveCompetency and Appraisal, to enable me to make a specific assessment of a specific competency on a specific appraisal (which is in turn linked to a specific user). This second field editor does not render at all (I have the 2 field editors in the right panel, one of top of the other).I have
Can we filter the all drawer child records dynamically?For ExampleI have a list view with Account and Contact records.State Filter: ALLAccountNameAccount1 ContactName State Contact1 NY Contact2 CA Contact3 NYAccount2 ContactName State Contact4 NY Contact5 CA Contact6 NYAccount3 ContactName State Contact7 MO Contact8 MO In state filter, I have the options NY, CA and MO. If I choose the state filter as NY, I need the below records in list view.Note: If a Account don’t have the Contact in specific state, I need to remove that Account.Account1 ContactName State Contact1 NY Contact3 NYAccount2 ContactName State Contact4 NY Contact6 NYThanks in advance
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.