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
Something went wrong while editing a tab page. I was introducing a new model by cloning the primary object/model. It initially did not like the name I gave it “Expense1thisFY” ( I may have hit space after the “i”) and got the typical error message, renamed it to (cant remember what) and added a condition. On preview, I got an error (likely what you see in the images below). Figured perhaps cloning was a bad idea and proceeded to delete the clone model (at the end of my model list). This rendered both the tab page and it’s builder/edit skuid page unusable. What’s strange is there are some components and models (hiding under other tabs on the tab component) that are still functioning. The edit page is simply empty. The version restore button on the edit/builder page isn’t solving this. Any chance I can salvage this page? Tab Page (some elements under that tab component (and the graph are still working) Skuid Builder/Edit page
How can I call a restful service from a Skuid page to do a lookup in Salesforce and return a JSON result?2. If step 1 is possible, can I populate a control on the Skuid page with the JSON results?
Access Custom Label
I have tried to override my salesforce home page following this tutorial: http://help.skuidify.com/m/supercharge-your-ui/l/117747-reclaim-the-salesforce-home-page However, I believe that I may have an issue here since I am using SF Professional Edition. I don’t therefore have User Profiles. I have created my Skuid page to be used, as well as the visualforce page and custom home page component per this tutorial. How can I get my page to override the SF home?
I’m getting some very strange CSS injections into standard Salesforce CSS on my opp detail page. I’m not exactly sure when this started happening, but it seemed to be about the time I added an inline CSS for the first time. However, it doesn’t go away when I delete that CSS snippet. The issues are with the sidebar and the app menu. It seems like this wouldn’t be a skuid issue because it’s in the Salesforce CSS files, but it’s only happening on this one Skuid page, so I thought maybe somebody here could help. Here’s how my sidebar looks, there’s a gray background, and all kinds of extra style on the Create New button that isn’t supposed to be there. Here’s the CSS line that is making the gray background, when I uncheck it things look right. Here’s the CSS that is making the Create New button look funky, some particular #createnew version of the .menuButtonButton class, when cross all those out things look right. Here’s what the CSS should look like: Here’s what the funkiness with the
Requirement to change the place holder text for the Queue and the list, How do I change that ?
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?
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.