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
Hi GuysMy scenario is that I want to be able to create a New Child Case Record from SF and be redirected to a Skuid page with the ParentID field pre-populated. I need to be able to link the parent and child cases to one another for reporting purposes. Is this possible and if so, how do i go about this? Thanks to Rob in advance for his help to date. JG
I spent this weekend refreshing one of our sandboxes (full sandbox, in case that matters) and I’m now seeing an issue with the icons on our skuid pages. We normally use the paper theme but after the sandbox refresh, all of the icons show up as just the outline of a rectangle (see screenshot below). I did also upgrade to the latest skuid release, but I did the same upgrade in 2 other sandboxes and those environments do not have this issue. Any ideas? For now, I’ve switched to the modern theme (both modern & classic themes show icons correctly), but we’d love to get the paper theme working again so our environments are all consistent.
I have make some filed read only for some profile in salesforce profile.But when I am adding same filed in skuid page it is editable. I think so this is the bug of skuid.Because of this bug I cannot use field level security of salesfoce.You need to provide some solution for this so when I make any field readonly from salesforce profile. It would be readonly on skuid page.Give me workground for this.Because my current system will not accept by client if this security is not there?My Goal is to show hide some tables field and Detail page filed based on Sales Force Profile.
Is there any way to limit the number of categories in a visualization? Or would I have to create a specific model just for the visualization? For example, let’s say I have a model and a table showing all open opportunities. I would want to display a pie chart that breaks down only the top 10 accounts by opportunity potential, instead of the chart displaying every single account. OR it could group all the smaller ones together.
I have a Client model where I need to update every record. Salesforce doesn’t make this easy 😦Skuid helps.I built a temp skuid page and loaded my client model.then I wrote a snippet to take the currently in the “Client Full Name” field and update the “Client Relationship Name” field myModel = skuid.model.getModel(‘Client’);rowsToUpdate = {};full_name = “”;skuid.$.each( myModel.data, function(){ full_name = this.Client_Full_Name__c; console.log(full_name); rowsToUpdate[this.Id] = { Client_Relationship_Name: full_name };}); updated_rows = myModel.updateRows( rowsToUpdate );console.log(updated_rows.length + ’ rows updated’);myModel.save({callback: function(result){ if (result.totalsuccess) { // Get the 15-digit Id of our newly-saved George Bailey Contact, // which will have had its Id and other fields updated after save console.log(‘success’); } else { console.log(result.insertResults); console.log(result.updateResults); co
Hi, I am new to Skuid. What is the preferred way to change the label of the ‘Day Scheduling View’ on the Calendar component to ‘Day View’?
I’m new to Skuid and have no idea how to get started. I’m mainly interested in creating dashboards, therefore, do I need to create a Skuid page to create a dashboard? Is a Skuid page similar to a Salesforce report that a dashboard can be attached to?Thanks,James
This is a bit complex, so bear with me.Ben (awesomely) helped correct some issues with this combination of custom field renderer and dynamically created model.This field renderer is running five times on the same page, hence the switch/case statement. The problem is that apparently only the first instance is waiting for the Nurse model to be created. The subsequent models seem to think that the Nurse model exists, and run the rendering logic immediately. However, there is nothing in the Nurse model, so their picklists have nothing in them.What’s the best way to approach a solution? Do I have to separate these into individual field renderers? It seems like they would run into the same problem of the latter ones assuming that the Nurse model exists when it doesn’t. Perhaps my problem is that a new deferred promise is being created for each instance of the field renderer? I’m still fuzzy on the jquery deferred.Enough speculation. Here’s the code:custom field renderer: <br>'renderIni
Trying to call a apex remote method in Skuid,but getting this error :Uncaught {faultcode:‘soapenv:Client’, faultstring:'No service available for class ‘TestClass’ ', }Here is my Apex code : global class TestClass { webservice static string testMe(String str){ return ‘Success’; }}I have added AJAX Toolkit in resource as External type,as per the below linkhttps://community.skuid.com/t/calling-apex-functionInline-Script :var params = arguments[0], $ = skuid.$;var result = sforce.apex.execute(“TestClass”,“testMe”,{str:‘test’}); console.log(result);getting this error " Uncaught {faultcode:‘soapenv:Client’, faultstring:'No service available for class ‘TestClass’ ', } "
Lookup dialog title seems to default to the API name which is undesirable. Is there a way to use the standard name or better set my own title?
I have a tab that has three tables with all of the same object (Cases), but different models to separate them. How do I get a total of all cases to show in the tab to let the user know there are records present? I know how to get the count for one model, but I can’t figure out how to get the sum.Thanks!
I am having an issue with some of my users not being able to attach files to account on Chatter.when they click to select a file from their computer nothing happens.
I’m getting the ‘silent error’ with the file upload component. It just gets stuck with the Uploading… notification/button, but does nothing.I’m trying to put the file upload component in a drawer on a table whose model is an aggregate model. I believe I’m passing the right values to the Attachment model with before load actions. Is the file upload component getting the right context? There are no context conditions available for it, so does it know that when I point it to the parent model, it should try to attach to the row in that model that is in context?I’ve had a look at this thread, and I have the local versions of the four required VF pages, if that matters in this case.
I built a home page widget to give our Sales Reps a list of Opportunities that need their attention. The criteria is value based (Opps > $50k) and Close Date < TODAY and IsClosed = FALSE. Clicking on this widget link takes them to the Opportunity tab, where I have created a table that contains their list of Opportunities that meet this criteria. Well… the whole point of this table is to get them to update their Opportunities. When they do, like changing a close date to sometime in the future, they get an error when trying to save that is “Value Does Not Exist or Meet Criteria” and they can’t save. Because they have “fixed” their opportunity to get it off their bad list, they get the error because it no longer matches the OppsToUpdate model conditions. This is probably something simple, but I am stumped. Help…
Any idea why a reference field that I have in a model’s fields list would not show up in its .data object? The Primary_Staff__c field is here: But not here: What’s going on here?
Hello!Apologies in advance, Salesforce Communities are a little new for me.I’d like a community user to login to a Community and be greeted with a detail page, created in Skuid, that is based on their corresponding Contact record (i.e. the Contact that is related to that community User).I think I’ve got this working by creating a Skuid page which serves up a detail view of a Contact record, with a subquery condition on the Contact which shows the Contact from the Contact lookup on the User record where the User Id is the Id of the running community User logged in - y’dig?I can then set the Community to have only one tab (e.g. Contacts) and have that tab redirect to my Skuid detail page. If headers and sidebars are removed from the Skuid page the Community user logs in and sees only Skuid, and they’re viewing only their Contact detail page and anything else I allow access to. This is awesome…First question - is this the right approach for what I’m trying to achieve?We’d want the users t
I can’t for the life of me get a standard salesforce page to show up in a template via iframe. ie. a task standard page in a template. Even if copy paste the url of the task into the src like so. <iframe src="https:&#47;&#47;mblazonry&#46;my&#46;salesforce&#46;com/00Tj0000004wkMB" /> What am I missing?
I’d like to use a custom field renderer to set the value for a reference field if a value doesn’t exists. Here’s my code: <br>'renderUserId': function (field, value) {<br>if (!value) {<br>value = skuid.utils.userInfo.userId;<br>var fieldId = field.id;<br>var fieldName = fieldId.slice(0,-1) + 'r.Name';<br>field.model.updateRow(<br>field.row,<br>{<br>fieldId: value,<br>fieldName: skuid.utils.userInfo.userName<br>},<br>{initiatorId: field._GUID}<br>);<br>}<br>skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field, value);<br>} It’s kind of working, but I’m getting the 18 digit record Id displaying in the field, instead of the Name. I tried changing ‘value’ to ‘skuid.utils.userInfo.userName’ in the renderer, but got the same result.Help?Thanks!
How do we add a Lightning Component to Skuid?
Hi All,I am getting data from external sever in snippet.After getting data from exteral server i loaded data in skuid table using a model.I used following code :f(result.results !== undefined && result.results.length>0){ $.each( result.results, function( index,objvalue ) { var georgeBailey = ResultModel.createRow({ additionalConditions: [ { field: ‘StaffUserId__c’, value:objvalue.name}, { field: ‘EventName__c’, value: objvalue.accountName} ], doAppend:true }); }); } Its only appending row in skuid table but don’t shovalue in “StaffUserId__c” field and “Event Id” Field.Can any one help after adding row is model using snippet how i can show in skuid table with out saving that model data?Thanks
Hi, I’m sorry but I’m new in Salesforce.com world.With Skuid It’s possible call external WebService to retrive data and rendering the result (recordset) in a Table/list page? (only in visualisation)Thanks!Sergio
Javascript doesn’t like this: model&#46;updateRow(row, {Patient_Case__r&#46;Estimated_Due_Date_by_U_S__c: null}); It’s expecting ‘:’ and getting ‘.’ after Patient_Case__r. What’s the best way around this? I’d rather not have to create a model on the Patient Case object.Thanks!
It seems that when Search Option Source is set to Automatic that the default Order By is Name ASC. Is there a way to override this behavior? I can select Search Option Source = Model to get the desired result.
Is it possible to include an aggregate model in a calendar? I want to have a calendar that shows on a per day basis, how many of an item are currently reserved. Preferably with a template field showing (Reserved/Owned) I have an aggregate model that is grouping records on DAY_ONLY and aggregating a quantity reserved. This gives me a table of exactly what I want, I just would like it in a calendar view. Is this the right approach here? Below is the table I want into a calendar view.
Is it possible to embed a YouTube video into a SKUID page? I tried using a Template with an iframe, no luck there. How would this best be accomplished? I am just getting started with SKUID.
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.