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
I want to send an email from a Skuid table to multiple selected people at the same time. Tried hacking the url to include multiple email addresses using a mass action button but the email addresses are not being passed. I have the semi colon in there because that is how multiple bcc’s are separated within SF. Has anyone successfully configured the URL to send multiple emails?URL: /_ui/core/email/author/EmailAuthor?rtype=003&p2_lkid=noreply@abc.com&p5={{{Email}}};
Hello All! I’m currently working with a client that would like to view related list at the account and contact level. As of now i have created a button and when clicked a pop up panel will appear showing the data. The problem is the customer would like to have to do less clicks in order to accomplish the request Ideally the client would like to have visibility as you would have with a normal related list. I mentioned that there is a lack of room to replicate a list view. Overall goal is less clicks, they don’t like the fact you have to click the button and then have a panel pop up. The client would like to have related list detail at the account detail page withOUT additional clicks.
I have a user that is trying to change the case owner on the case detail page. They get the following error when they save. The user is able to do this action on the default SF page so I’m not sure why the Skuid page is not allowing the save. They never had any issues doing this in the past. We also updated to the latest release Banzai - Update 8 this weekend.
How to render Few Custom Fields Based on the value selected in the picklist? Suppose if I select a value “X” from the picklist, then i should see fields ‘a’, ‘b’, ‘c’. In the same way if i select a value 'Y " from the picklist, then i should see fields ‘d’, ‘e’, ‘f’
Hi, I have a use case as below: I have an account Model Address__c (custom Object) Model (Has condition where address__c = accountModel_ID) The scenario is , if we have multiple addresses for the account , how do we display all these addresses as a picklist (using the addressLine-1 field values of all address records as picklist entries) and based on this picklist entry selected, need to display the address details in the address field editor. How can we achieve this ?
Salesforce has the gauge chart capability, which allows us to set revenue goals and see where our org’s progress is compared to the goals we set. I can’t seem to find a gauge chart option in Skuid (potential idea?). If other people have an idea for a work-around to incorporate some sort of goal-setting capability in the chart components, I would love to hear your ideas! Thanks!
I’ve got a few checkbox fields in a field editor. Two of them are conditionally enabled. Because they are conditionally enabled, they have an extra bit of CSS applied to them element.style { rgb(0, 0, 0);} I assume this is because when they are disabled, this changes to element.style {rgba(0, 0, 0, 0.298039);} to allow for it to look disabled. However, I am using the Lightning Design theme, and my basic .nx.basicfieldeditor-item-label css has a color: #54698d, so these conditionally enabled options look different even before they are disabled. What could I do to make sure that my item label when enabled has the color #54698d? In the screenshot below, Tax & Judgement Liens and Federal Tax Liens are the two conditionally-enabled fields.
Hello, I have a use case from a client where they would like to have a way to put their cursor in a skuid field that already has a value in it and when they click to put their cursor in it or open it up for editing that the field value would go blank. In their use case they have a lot of number fields where they are changing multiple values and having one be 0 for instance, they have to delete the zero to be able to change it to 1 instead of 10. We’ve explained they can tab through each field which would highlight the values, but they are looking to have a bit of a different experience if possible. If anybody has any ideas on how to solve this via a snippet that would be super helpful! Thanks!
I’d like to create a chart that shows a cumulative growth line, and I’m really struggling to do this. There were early posts with potential solutions to this problem, but nothing worked. Has anyone been able to achieve this? If so, how? Open to all ideas.The dream is to have each column (or point) highlight the value of the current Day/Week/Month, as well all the values that came before it. (e.g. Jan shows Jan, Feb shows Jan + Feb, March shows Jan + Feb + March, etc…)
When saving a record that contains a model override of a DATETIME field to DATE, an “List index out of bounds” error is encountered. Steps to reproduce: Create page using XML below Preview page Set the Reminder date field Click save Expected Behavior Record saves successfully Actual Behavior “List index out of bounds: 1” error is encountered Sample Page XML <skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" showheader="true" tabtooverride="Task"> <models> <model id="Task" limit="1" query="false" createrowifnonefound="true" sobject="Task" adapter="" type=""> <fields> <field id="Subject"/> <field id="CreatedDate"/> <field id="ReminderDateTime" overridemetadata="true" ogdisplaytype="DATETIME" displaytype="DATE"/> </fields> <conditions/> <actions/> </model> </models> <components> &
I have a page include that is called from 3 pages. When the included page is executed on of 3 models wins. Each models has UI field to determine if this model was used. or or I am trying to create a template that is conditioned on the 3 fields in the parent model Something like this where Engage_CR is parent model {{#{{$Model.Engage_CR.From_Object}}}}{{CR_Member_DNA__r.Member_DNA__r.View_Member_Stacked__c}} {{/{{$Model.Engage_CR.From_Object}}}}
HiIn SFDC Debug, the calculations are looking good.price = 79.00discount = 12.20but when I add these fields on Table in Skuid, this shows like below:price = 79 discount = 12.2Any idea why this is happening ?
I’m creating a landing page for account managers and need to display the parent account if the record the user is viewing is a child but I want to also display the children if the record being viewed is the parent. How would I go about accomplishing that in a table view so the user can easily see all accounts within the hierarchy when viewing the parent but easily get to the Parent account when needed.
We have two models. We are trying to take the id from the first model and pass it into the second model to find the matching record. When we find the matching record, we are trying to find it’s id and pass it into a field in the field of the current row of the first model. The code seems to work, but inside the callback for update, it always uses the same row id. We tried passing the row id into the callback function, but that doesn’t work either. How do we ensure that the callback function gets access to the id of the current record in the outer for loop? var params = arguments[0], $ = skuid.$; var skuid_model = skuid.model.getModel(‘MMA_Transfirst_Batch_Transaction’); var skuid_model_number_of_records = skuid_model.data.length; console.log (’ skuid_model_number_of_records ’ + skuid_model_number_of_records); for (i=0;i<skuid_model_number_of_records;i++){ console.log ( " ==>i " + i ); var TransBatchRow = skuid_model.data[i]; var TransBatchRowId = TransBatchRow.Id; console.log (
I have a global action button ‘credit pull’ in a table. i am calling my apex class from, global action button–> action type=run multiple actions–>Run Custom apex action–> my class name.when i click on credit pull global action, i am getting an error like Uncaught TypeError: Cannot read property ‘outputValues’ of undefinedcan any one help me, come out from this issue.
Greetings, I’m having a problem with one of my pages where if I navigate away from the page, or reload the page, then I get an alert message asking for confirmation of the navigation or reload. we have another page that is similar to this where we don’t have that problem, nor do we have this problem in our staging or production environments. I compared the pages side by side and there’s while there are some differences (JavaScript), there’s nothing configuration wise that I can see that would cause problems.That said, we did move some JavaScript into a static resource, could this be a cause?Any insight would be helpful. Thanks!
Im am very new to both Skuid and Salesforce and have probably not understood how to set it up correctly so any advice welcome.Bit of background firstI have a custom object with a few hundred entries which are site detail recordsmy users are only authorised to create documents based on certain sites which are assigned to them, this is stored on a custom field in the user object. actual access to the documents is via the role hierarchy so that is covered, what I needed to do is only allow the users to add documents for sites they are authorised for and did not want to use validation to stop them afterwards as the picklist would still show hundreds of entries which are not relevant to them. so getting to my problem I looked at using lookup filter which I was able to do on the document object to create within salesforce by creating a lookup reference field as setting the formula to Current User: WHS Current Site Name CONTAINS Site Name: Site Name, which works as the user contains a list
I’m creating a guided process of saving of a record that uses tabs for each step. Is it possible to redirect to the next tab upon the saving of one? I have created a custom save button with a redirect of #TABID. When I click the button it saves the record and my browser URL does add the #TABID. However, it doesn’t actually change the tab.If I hit enter in my browser URL window, it does then go to the correct tab.Any ideas how to make this work from the button?
I’ve created a button on the Opportunity object called “Convert Opportunity” that opens a Skuid Wizard to create a custom object called “Sales_Orders__c”. Using here post, I was able to pre-populate some of the fields from the Opportunity using URL Parameters. However, do I have to use URL Parameters to pass all the data from the Opportunity to the Sales Order? Or can I just send over the Opportunity ID and then have conditions that set the rest of the fields? I’ve successfully gotten the Opportunity, and Customer(Account Lookup) to pre-populate, but would like to get all of my Billing Information to pre-populate from the Account that is on the Opportunity. Do I have to pass all of this data through the URL? Or, is there a way to set-up a condition to pull all of that information another way? What I’ve done so far On the Sales Order Wizard page, I’ve created another model called “Account” and set a condition to use the URL parameter “AcctID”. I then set a condition on the page model “
I’m new to Skuid and can’t seem to figure out what I’m doing wrong here. I’d like to conditionally render the text color of a field based on the field’s value. This is what I have so far: var field = arguments[0], value = arguments[1]; skuid.ui.fieldRenderers[field.metadata.displaytype]field.mode; if (value < 0) { field.element.css({ ‘color’: ‘rgb(0,128,0)’, }); } else if (value > 0) { field.element.css({ ‘color’: ‘rgb(255,0,0)’ }); } If I change ‘color’ to ‘background-color’ the background changes just fine, but I’m trying to change the text color. Any help would be greatly appreciated.
I am having trouble mapping out data using the UK Counties geomap.Currently I have a post code value that is split, then looked up to a few variations of the recommend highcharts pointers. I have stumbled upon the issue though that skuid is only pointing the field at “postal-code” with has a null return for about 15-20% of the counties. There is also a problem with overlapping within some of the "postal-code"s. Is there any way to change the point to either “hc-key” or “hc-a2” as they are unique by county? BestRaw js for reference http://code.highcharts.com/mapdata/countries/gb/gb-all.js
Hi All, We have a skuid detail page, in that page we have parent records displayed, for every parent record we are displaying child records in a Drawer. in Child records we have a field X(Currency), this currency field value should be equal to the field value of parent field Y(Currency). We are using inline record creation for the child records. so when user creates more then one child record he should match the value of X to Y . For this case we have written trigger, in case of insert and update trigger is working perfectly and displaying error if the values of (Sum of X) for child records is not matching with Y. But in case we try to update on e record and insert another record to match the value, this use case is not working. Could some one please assist on the same. Also when we open the drawer its just getting collapsed when user is trying to enter the value. Is there a way where we can make drawer in some way where opening and closing the drawer is in user control ?
I have a master page that I’ve used in several places. Just tonight I’ve noticed it doesn’t have “available as master page” checked and it’s not checkable. The existing pages still have it as a master page, but I can’t add any new child pages to it, and when I clone an existing child page it doesn’t clone the master page connection. Any ideas? Still running Banzai 7.27.1 - should I upgrade to try and fix this?
I am trying to pull in all tasks that are related to an account, however, a good number of tasks are associated to a contact related to the account and don’t have an account listed with the task. I saw some other posts about this but I was wondering if there is anyway to drill into the WhoId field on the task and pull the account that the contact is associated with? Or if you have any other work-arounds, I would love to know more! I tried using the child relationships object, but our reps would like the ability to create a new record inline and have these tasks in a table view
Is it possible to pull a custom URL field from the Running User’s ‘User Detail’ to dynamically load the background for the Skuid Page they are looking at?I would like to be able to create a field on the User Record to store the URL to an image of their choosing. Then when they load a specific Skuid Page that skuid page would have the variable to pull the URL from their user record rather than the url in the background section of the page.I tested updating the xml and loading the the field from the user record, but it seems like it’s not one of the available fields to use from the running user. Just wanted to check to see if anyone had any work arounds for this!
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.