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
Can we do something like this?{{$Model.MyModel.data.{{$Model.MyModel.data.length}}.MyField}}Perhaps I should just use javascript…
Hello!When starting a snippet using code such as that shown below, is it possible to pull in selected items from a table by clicking on a title button that launches a snippet or does the snippet always have to be run from a mass action or row action on the table?Cheers guys! var params = arguments[0], $ = skuid.$, items = params.item ? [params.item] : params.list.getSelectedItems()<br>
I have a tabset, and on one of my tabs I want to change the title based on whether there is data in two of the models.{{#$Model.Model1.data.length}}Name1{{/$Model.Model1.data.length}} {{#$Model.Model2.data.length}}Name2{{/$Model.Model2.data.length}} HistoryWhat I’m trying to say here, is "If Model1 has data rows, display the word “Name1.” If Model2 has data rows, display the word “Name2.”If they both have data, I would see Name1 Name2 History.It’s not working. Is there a way to accomplish this?
How to close Drawer in “Cancel” button click(button placed in Drawer table)? When I click cancel current drawer closed automatically with cancel action? My Page code: var params = arguments[0], $ = skuid.$; var field = arguments[0]; var value = arguments[1]; console.log(field.mode); if (field.mode === ‘edit’) { var disabilityOptions = ; skuid.$.each(skuid.model.getModel(‘Status’).getRows(), function(i,row) { console.log(‘—row----’+row); disabilityOptions.push({ value : row.Status_Value__c, label : row.Status_Value__c }); }); console.log(‘—disabilityOptions----’+disabilityOptions); var disabilitySelect = skuid.ui.renderers.PICKLIST.edit({ entries : disabilityOptions, required : false, value : value }).change(function() { //alert(skuid.$(this).val()); field.model.updateRow(field.row,‘AccountNumber’,skuid.$(this).val()); }); field.element.append(disabilitySelect); } else { console.log(‘-----nonedit------’+field.mode); skuid.ui.fieldRenderers.TEXT[field.mode](field,value); }
I currently have a button on my page that points towards a custom: SF Button/Link. This is working perfectly fine.However, I am trying to integrate service cloud but the new button doesn’t work at all now e.g. nothing happens when I click it.The button relates to drawloop (looplus) - the URL in the action button is /apex/loop__looplus?sessionId={!$Api.Session_ID}&eid={!Account.Id}&ddpIds=a0UD000000PT6ur,a0UD000000PT77T,a0UD000000QemPX&attach=true&contactId={!Account.contactid_id__c}Like I say, it currently works on a standard skuid page, just not in the service cloud console?Any ideas? I have lots of buttons utilising this for specific documents.Chris
Hi I’m trying to add some custom logic while searching on a lookup record, basically I will have an address with the following fields Location: 1) Number : 123 2) Street: myStreet 3) City: theCity I have field lookup on Location and I may type in two searches for instance: 123 myStreet theCity Now I want this to match initially if the following condition are met, the numbers representing the search terms: (1 AND 2 AND 3) OR (2 AND 3), with the most accurate displaying first Is this possible out of the box?, I messed around with Search and Rendering tabs? ** Failing this is there any resource available for implementing a Custom field render for a lookup? Thanks.
Trying to add some more polishing touches to a mobile app. Finding it difficult to do so without documentation. I can find the methods and number of arguments using the console, but not what arguments are required.I found that setPopupPanel just requires the name of the panel as the first argument of two to work. Not sure what the second argument is though.
Our developers use Eclipse and we’re in the process of getting set up to use Github. Once configured we’ll have our SFDC metadata under Github version control, but how do we add the SKUID pages to the process e.g. get the SKUID page XML into Github at the page level rather than the page pack level?Thoughts and pointers on version control would be greatly appreciated.
The current chart component allows a user to quickly print the chart or save the chart as a pdf or image. Is it possible to do the same thing with a calendar view? It would be very helpful to be able to share a calendar view “print out” or saved image with contacts outside of salesforce.
I know I"m missing something here because this should be doable and magical.I’m trying to allow users to click on a row action for “Initiatives” and update another “ActionsChosen” model. They’re linked together with a custom junction object “InitiativeActions”Here are my steps:Activate and set model condition (initActionChosen> Initiative__r.Id = {{Id}} Query model (initActionChosen - completely rewrite data Activate model condition on ActionsChosen: Id in the set of values containing Action__c from initActionChosen model Query ActionsChosen model - completely rewrite data I tried to build a wizard to display the information step by step and it looks like I don’t make it very far. I can get the Id to show up in a template but when I try to set the value on Step 1 above with that Id, I get a blank table returned.What am I missing? Whoever can help me get this working will be a rockstar.ThanksInitiatives with linked actions:Linking Initiatives with ActionsSchema:
I set up the auto assign permission sets for one type of profile “General Portal User”. That is the only profile we want to auto assign. When I went to create a new user with a “System Administrator” profile I get the following error. Wondering why this profile was affected. Thank you!Error: Invalid Data. Review all error messages below to correct your data.Apex trigger skuid.User caused an unexpected exception, contact your administrator: skuid.User: execution of AfterInsert caused by: System.DmlException: Insert failed. First exception on row 0; first error: FIELD_INTEGRITY_EXCEPTION, Can’t assign permission set to this user, user license doesn’t match: : (skuid)
I have a simple template field that displays an image. There is an HTML link on the template that opens the image in a new tab. My users would prefer to open this image in a popup box. Is this possible? Here is how I have it setup currently:<a href=“https://c.na10.content.force.com/servlet/servlet.FileDownload?file={{{xxxx}}}; target=”_blank"><img src="https://c.na10.content.force.com/servlet/servlet.FileDownload?file={{{xxxx}}};>
We have been evaluating Skuid for about one week. It is amazing how much we were able to accomplish in this short time and we think the tool is very cool. One big concern our development team shares with our executive team is related to bug resolution times and SLA’s. Specifically, what happens if one of our customer opens a bug against our managed package and our developers believe the issue lies with Skuid. I would be very interested to hear thoughts on this situation from Skuid Support and Skuid Users. Thanks Jason.
Is there any way to restrict the number of decimal points the Average aggregate function uses?I am getting a huge number of decimal places in my chart. Not causing any functional problems, but doesn’t look the best!Thanks in advance.
I’ve been trying to reimplement our user created list views as table filters on the Skuid pages (since there is no exact Skuid equivalent of that and filters is the closest thing). Some of the views contain grouping logic (AND/OR between conditions). It seems there is no way to specify a single table filter selection (one click) with grouping logic for its multiple conditions. All the conditions are ANDed, as far as I can see.If someone got a better solution, I’d like to hear it, otherwise this would be a nice addition. 🙂
Is it possible to showing or hiding the buttons based on User sharing rule in Skuid page?
I found this below link for Reports.http://help.skuidify.com/s/tutorials/m/models-conditions-filters/l/102652-aggregate-models-make-dyna…Is any possible to include Standard reports UI in Skuid?
Skuid page is not loading on iOS Simulator. However when tried on the actual iPhone device, it works pretty well. I am trying to access the page using Salesforce 1 app and it works well on device. Same page does’t render in simulator.
How to apply the Sharing setting for SKUID pages?I have a object called “Project”. I have set the OWD as “Public Read only” for this object. So I can view all the users record. When I edit the other users record from list view it opensthe SKUID edit page, here I want to show the “Insufficient privilege” error message instead of showing the edit page (like standard Salesforce behavior).Now, When I save the edited record it shows the error.Thanks in advance.
Can we implement the Salesforce report in Skuid page with sorting and grouping?
Anyone know what the sObject is for Salesforce CRM Content? I need a model on it in Skuid, and I can’t find the documentation in the salesforce.com help.
I am trying to code a button to send to a static email address by opening the users default mail client on click. I tried using Javascript as an inline snippet but that didn’t work. The button is coded now to open a sales force email but that will not suit my purposes. I need the button to act just as an email link field. I am sure this is easy but I am spinning my wheels right now. Thanks!
we created wizard save button with some account required input fields in wizard.when ever we are click save button,its not showing required field error message.How we need to display error message in this case
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.