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’m working on jazzing up a page layout a bit, instead of section headers I’m trying to build editable templates that serve as section headers, but contain information that is editable. It’s going pretty well, but I’ve noticed that if I edit one template field, save it, then try and edit another, I can’t get the editing pop-up box to go away. Clicking X or Done just doesn’t do anything, and I have to manually refresh the page.I added a model action to requery the model when it is saved hoping that would help, but it didn’t. I added Save/Cancel to my field editor instead of page title, but the same thing happens.I suppose I could build a custom pop-up for the template editing that contains all five of my template section headings, but then I’ve also got two editable template fields that I’m using to replace my page title, in a different field editor instance. Is this a known issue with too many editable template fields?
Hi, I have my Oppy tab override working well for my reps. I tried to add another assignment for our Finance team and it’s still pointing to the standard Oppy tab. VF: <apex:page standardController="Opportunity" recordsetvar="a" extensions="skuid.Redirects" action="{!redirect}?objectType=Opportunity&amp;actionType=Tab"> </apex:page> Showing the page is overriding the tab: Here’s a screenshot of all assignments and highlighting the one not working. Would love to know why it works for my reps but not finance. Thanks
Here is the condition definition: Here is the result of model.soql (which I believe reflects the query that is actually executing?): SELECT HasCompleteAppointment\_\_c, HasScheduledAppointments\_\_c, Patient\_\_c, Patient\_\_r.Name, (SELECT Signature\_Name\_\_c,Signature\_Date\_\_c,Signature\_Text\_\_c,SignatureData\_\_c,Id FROM Signatures\_\_r WHERE ((Signature\_Type\_\_c = 'MD Medical Chart')) LIMIT 10), Id FROM Patient\_Case\_\_c WHERE (HasCompleteAppointment\_\_c \> 0.0) AND(HasScheduledAppointments\_\_c = 0.0) AND(Id not in ( SELECT Patient\_Case\_\_c FROM Signature\_\_c **WHERE (((Signature\_Type\_\_c = 'MD Medical Chart')))** ) ) LIMIT 21 Notice that only the first subquery condition is executing. Any idea how to make all four conditions execute?
This is closely related to this posting from awhile back. I am able to successfully get a table row to be highlighted based on a specific cell value. However, I am unable to get a table row to highlight when a cell value is blank. Here is my snippet: var field = arguments[0], value = skuid.utils.decodeHTML(arguments[1]); skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field,value); if (field.mode == 'read' &amp;&amp; value === "" ) { field.item.element.addClass("LeadTab_highlighted-row"); }<br> Again, this works just fine if I put a value in the " value === “” " segment, so I know my css is correct. I’m sure I’m making a very basic mistake but I know very little about javascript. Thanks!Gary
Hey, I’m new to using skuid and I’m trying to complete tutorial. However i encountered problems with snippets. During this tutorial http://help.skuidify.com/m/11720/l/204496?data-resolve-url=true&data-manual-id=11720. I think I’m doing everything exactly like them but when i hit “preview” button there is noting like Rating. Should I add something to this code ? var field = arguments[0]; var cellElem = field.element; var value = arguments[1]; cellElem.text( value );
I am relatively new to highchart API and need some assistance with re-size the chart image based on certain condition. Following is the code snippet I am using. But it is not having any impact on the size of the chart:var chartObj = arguments[0],$ = skuid.$;if(some condition…) {$.extend(true, chartObj.chart[0],{ width:100, height:100});}
I have one user (only one) that gets a Skuid view that looks something like this: She says that when she resets her cookies, it fixes the problem. However, she said it happens approximately 3 times per week. Any ideas on why this might happen and how we can prevent it? She should be on Chrome (double checking that now - I’ll update if not). Thanks, Dylan
Apparently models are limited to two active ‘result of a subquery’ conditions.I thought I’d get around this by creating a couple aggregate models, and then using ‘field from another model’ conditions to point to the agg models. But it doesn’t seem to work.Let me explain the full situation:I have the objects Patient_Case__c, Interaction__c, and Signature__c. Interaction__c is a child of Patient_Case__c, and Signature__c has a lookup to Patient_Case__c.I want a table which shows the rows from Patient_Case__c where:At least one of the Interactions is a complete appointment. i.e. Id IN (SELECT Patient_Case_c FROM Interactions__c WHERE Interaction_Category__c = Appointment AND Status__c = Complete). None of the Interactions is a Scheduled appointment. i.e. Id NOT IN (SELECT Patient_Case_c FROM Interactions__c WHERE Interaction_Category__c = Appointment AND Status__c = Scheduled). And there is no medical chart signature. i.e. Id NOT IN (SELECT Patient_Case__c FROM Signature__c WHERE Signatur
I’m missing something obvious, or something strange is happening… In addition to the problem I just reported I have another which is probably related: I have this CSS in a statis resource being pulled into my page: And I have a field renderer that is adding the class ‘highlight-row’ to a couple rows on a table: But my rows are not highlighted! Help?
I added the following inline css to my page: .ui-tabs .ui-tabs-nav li .ui-state-default .ui-corner-top .sig-required { background: tomato; } .ui-tabs .ui-tabs-nav li .ui-state-default .ui-corner-top .sig-required a { color: black; font-weight: bold; } .ui-tabs .ui-tabs-nav li .ui-state-default .ui-corner-top .sig-required .ui-state-hover { background: #FF927E; } .ui-tabs .ui-tabs-nav li .ui-state-default .ui-corner-top .sig-required .ui-tabs-active .ui-state-active a { color: tomato; font-weight: bold; } In the console, I’m using this jquery to add the ‘sig-required’ class to my tab: $("[data-tab=std-panel]").addClass('sig-required') Where ‘std-panel’ is the unique id of my tab. The class is being added, but the styling doesn’t change: What am I doing wrong here? Thanks!
We are working on a conga button for a client who uses Skuid, for all their Salesforce UI but also leverages Conga for template building. We are trying to create a button on a table to be able to generate conga templates for each record in the table using a Row Action.We found this article which says you can do this and we tried to do the same thing (Conga has changed their server url to “https://composer.congamerge.com” since the article was posted.But we get this error: “OAuth Error:Failed to get the authorization response.”This is the way the button is written based on the syntax that Skuid requires: https://composer.congamerge.com?sessionId={{$API.Session_ID}}&serverUrl={{$API.Partner_Server_URL}}&id={{Id}}&ReportID=00Oj0000004CC5z?pv0={{Id}}This is the button if it were in standard salesforce (which does work).https://composer.congamerge.com?sessionId={!API.Session_ID}&serverUrl={!API.Partner_Server_URL_290}&id={!Matter_Contact__c.Id}&reportid=[Letterhead]0
I have a toggle filter on a table. When the filter is off so that all rows are shown, I’d like the rows that meet the criteria for the condition behind the filter to be highlighted or bold.Any thoughts on the best way to accomplish this?Thanks!
Any good tutorials on using the Wizard to create steps to Add a Contact, then the next step to Add an Account. I’m a bit confused and need help.
Hi,We have a client who uses Skuid framework. They currently have an object structure where they have opportunities which has a child modal object called capital using skuid. So an opportunity can have multiple capital rows. Currently they have a standard report which displays multiple rows for each opportunity due to the data model. They would need to transpose each row as a column in the report. How can this be done using skuid?E.gopp name, capital name, capital type, capital amount101, c1, ct1, 200101, c2, ct2, 300 should be displayed as101, c1, ct1, 200, c2, ct2, 300 as one row… Any thoughts on how this can be done?ThanksBuyan
I have a page that has 5 question sets. Each question set has certain questions that are asked based on answers to previous sections. So, in section 1, if you answer one of the questions “yes” the questions rendered in section 2 will be different than if you had answered “No”. This works great! However, I have a page title button that saves a few models, then recreates a new row. When the actions are done running, the fields are blank as expected, but when I begin entering info into the fields, only the first conditional render works. The rest of the fields don’t display when the render criteria is met. I can set the page up differently and circumvent this issue, but I would really like it to work as designed. Any ideas as to why this is happening?
For some reason, the thing that excited me the most about Bonzai (there are a lot of things to be excited about), was the last item in the release notes :http://www.skuidify.com/releasenotesRun Skuid in Lightning, and use Lightning Components with Skuid.Consume Lightning Components and use them inside Skuid. Salesforce Lightning components can now be added to a Skuid app. Skuid can now be run as a Lightning Component or a Visualforce Component (traditional route). I was wondering what needs to be done to get this to work. I may know a guy who has a beta version of Bonzai installed, and was wondering how to get my components to show up in skuid and vice versa. Do I have to implement the “skuid:isPrettyAwesome” interface?
I have two objects Bundles(parent) and Bundles Line Items (children). The Bundle Line Items are showing in a drawer component attached to Bundles. I want to be able to select all of the children and create new rows in a new model (Quote). I have the action set up on the drawer to do this. The problem is using the Merge Syntax only brings in one row of data (the first row selected). Not all the selected rows. I am using a Merge Syntax because I believe due to this table being in a drawer the context is not that of Bundle Line Items but of Bundles. With that said I have tried connecting through the Bundles with no success. If the table is not in a drawer it works fine. Has anyone else run into this problem?
Hello,I have a very unique process that I am trying to build with SKUID and I was wondering if I can get some help as usual please.I have a parent object (Enrolment) and child object (Units) in Salesforce. Units have lookup to Enrolments and one Enrolment can have multiple units.I would like to build a model off Units and filter units based on a specific name, however this specific unit can only be displayed on my list only if its preceding unit is completed.Is there any way I can achieve this with models and queries?THANK YOU AGAIN!
We are using the opportunity contact role object to join Opportunities with contacts. We want to display the contact name, with the ‘primary’ designation, on the table that shows other opportunity information. How do I pull contact name over to the opportunity view via the opportunity contact role using the skuid interface?
Hello there, I am trying to high a field based on values from another picklist field. The highlight is only working when the user changes the field. It does not work when if there are no changes to the field. Below is my In-Line snippet does anyone knows what I need to change to make this work. Thanksvar params = arguments[0], $ = skuid.$; var model = params.model;var row = params.row; console.log(params); var field = arguments[0], value = skuid.utils.decodeHTML(arguments[1]); skuid.ui.fieldRenderers[field.metadata.displaytype]field.mode; var cstatus = params.row.Charter_Status__c; var statusColors = { ‘Order Entry’ : ‘Yellow’, ‘Base Camp’ : ‘Yellow’, ‘PO Pending’:‘Yellow’, ‘Scheduling’:‘Yellow’, ‘Scheduling CCC’:‘Yellow’, ‘Current’:‘Green’, ‘Review’:‘Green’, ‘Cancelled’:‘Red’, ‘Customer Hold’:‘Red’ }; var defaultColor = ‘White’; $(‘.nx-basicfieldeditor-item.ShareWithCutomer’).css(‘bac
How to change background color of skuid table row If a column value say (Required Quantity) is greater than the other column value (Available Quantity) when required quantity value is changed, (Required Quantity column is editable)
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.