Complete our Nintex Community Survey
Access resources, discussions, and troubleshooting tips to build custom applications and streamline workflows with Skuid NLX, SFX, & EXP.
Recently active
The ‘update themes’ feature seems mysterious and a bit risky. I’ve been surprised by the unexpected impact to custom themes.Can someone please explain or point me to a reference that says exactly what is happening when we push the button? All the themes (standard and custom) get a new modified date, but what is really changing? Is there a way we can inspect the changes or diff old and new? Note: This conversation was created from a reply on: Custom Themes - Do they updated as well?.
Senior Jisc Management profile should have a checkbox checked on new record loadAnother profile should have the record unchecked on new record load.How can this be easily achieved, without creating a new page?I am open to the idea of using Javascript snippet on page load action if somebody can help me with the code, my example below isn’t working, and i’m not sure how to fix it! Thanks for your help if ($User.Profile.Name == 'Senior Jisc Management') { var model = skuid.$M('Event'); var row = model.getFirstRow(); var alldayevent = true; model.updateRow(row,{IsAllDayEvent : alldayevent}); }<br>
Hi, We would like to report the CSS issues which we have been facing with Lightning Design theme in Lightning Community Site. The version which we are using now is Millau 11.1.6. 1/The header borders of the table shown in Community Site were cut-acrossed. (Please note that we are using the Lightning Community) 2/ The padding / margin between the textboxes is very close, it seems that there is no space between these textboxes. Please help to provide us the solution or workaround for this issue. Thank you.
Hi Team.I want to monitor the console log on click the standard save button on skuid page. Could you please let me know how to add console log without javascript code snippet used ?Thanks
I have a table that runs a lengthy javascript routine on 3 fields in each row. Rendering the table takes long enough that users will not wait patiently. I would like a put a message in front of them until the rendering is complete. What is a known, proven, and reliable method for doing this in version 11.1.6? Millau seems to have introduced a new rendering scheme that makes prior methods unreliable. Please tell me what is supposed to work and I will tell you if it does or not. If it helps, the table is inside a tab and has a pagetitle above it.
I have a page consisting of a tabset with four tabs. I have added a 3-second, Show Message and Block UI, as a When First Shown action to each tab. The message only appears on the second tab, no matter which order I select the tabs. Millau 11.1.6
I have four objects. I have created a query on “CR_Use_DNA__c” and returned those records in a table. How do also query the “Contact_Record DNA” file with the “Contact_Record_Id__c”. I to want pull the Organization__c form the “Member_DNA__c” Here is what I am trying:https://drive.google.com/file/d/1Q8k0AcRhOW3pldLExytnUhc5q8kZOUmf/view
I wish to populate the EndDateTime field on my Event model with date/time of now + 1 hour. How do I achieve this? I’ve hacked some javascript below based on some other posts but it’s failing. var params = arguments[0], $ = skuid&#46;$; var model = skuid&#46;$M('Event'); var row = model&#46;getFirstRow(); var dateVar = row&#46;EndDateTime; &#47;&#47;convert from Salesforce date to Javascript date var jsDate = skuid&#46;time&#46;parseSFDate(dateVar); &#47;&#47;add an hour jsDate&#46;setHours(jsDate&#46;getHours() + 1); &#47;&#47;convert from Javascript date back to Salesforce date var hourAdded = skuid&#46;time&#46;getSFDate(jsDate);
Hi, In my Salesforce Org I have created 2 separate Application. My Account Object has 2 record type for each application. I have also created 2 separate skuid pages, to view the details based on record types. How to call 2 skuid pages in aura component. Below is my sample code. <aura:component implements=“force:hasRecordId, flexipage:availableForRecordHome” access=“global”> <skuid:page page=“CME_Account1” id=“{!v.recordId}” /> </aura:component> Doubt Will these create a problem while overriding the account object ? Thanks in advance Regards, Joyson
I have created a skuid page on the Account object which holds a tabset. Each tab set is a table of related objects and I was reading these would be best included using a Skuid Page Include and developed as separate pages which makes sense. When i test the page by itself it correctly renders the “loading…” text as i switch tabs. When I view the skuid page through the skuid lightning component it does not, which severely hampers the user experience. Any suggestions? Thank you greatly!
I am attempting to create page to add anew user without seeing all SF back end. I am in a sandbox and when I try to save the user it says “License Limit Exceeded” How do I get around the license limit in the sandbox?
Any insight into this would be helpful. Any time some tries to csv export a table the browser window crashes with the message “Requests to the server have been blocked by an extension.” Console Log: I downloaded a Disable Content Security Policy headers chrome extension and was able to get the exports working again. Is there a better way to get the exports working again? Guessing Chrome has a problem when a lightning.force.com page refers to a visual.force.com page. Salesforce Lighting with Skuid VF redirects for page assignments Skuid v. 11.1.7 Chrome Browser
Hello!I’m loving Skuid and I’m on version 11.1.7 but noticed something that’s given me a challenge with the “contains” function in queries. When you set a model condition using “contains” as a condition this uses the LIKE function in SOQL.Use case: I want the user input to generate a search on another model and return results based on similar names.Here’s an example using the Account model, this is the actual Skuid soql:SELECT Name,Type,Id FROM Account WHERE (Name LIKE ‘%Test Corp%’) LIMIT 11This query doesn’t find things like “Test 2 Corp”.This would be significantly more effective if the spaces were substituted for a % sign so the query ready like this:SELECT Name,Type,Id FROM Account WHERE (Name LIKE ‘%Test%Corp%’) LIMIT 11This would find things like “Test 2 Corp”Thank you,Dan
We have several record types on an object and we have built the pages to control the visibility of the picklist values based on the record type. On table filters end user is seeing all the active picklist values on a field and not record type corresponding picklist values.Is there any work around to overcome this issue, as this will be a major issue for our end users.
Don’t know from where I am getting this error…! Haven’t used it in my snippets or script …!There was a problem rendering a component of type skootable: Cannot read property ‘isMoribund’ of undefined…! please help me if anybody have a clue or face the same…! Thanks in advance…!
Hi All. I hope that you can give me some hints. Thank you for your time :) I’m trying to meet a requirement to show chart data labels on demand e.g. by a button click. So in short, I have a chart which has 4 series, 2 columns and 2 lines as this is how the client want to see it. Of course they see the data while hoovering but they also want to do a screenshot with data for a given axis. Showing all labels is not a solution (chart is not looking good).The best would be to have button for each of axis or axis grouping (like 2 columns = group 1 & 2 lines = group 2): 1. Action first - deactivate not required axis on the chart; 2. Action two - show data labels for left axis. Additional button - revert to normal view. I know that I can get the data labels using a snippet e.g. http://jsfiddle.net/gewgcwm8/But how to make this all work correctly? Would be grateful for any advice. Cheers! J.
When using an Update a field on a row action to move data from one rich text field to another any formatting information is converted to ascii. Bold styling in the source field becomes Bold styling in the destination field. Any way to get the formatting to be preserved?
Since yesterday evening, the components in two responsive grids overlap. The page has not been updated. See below. I can’t see anything wrong with the page Help
When I click on a header display in “Search Component” to see all the matches from a Search a window pops up. There is no option to close the window. https://drive.google.com/file/d/1vqvlKRhId8CxpfF9_uwltjD0NiEt9Lph/view
Hey All, I have a page with a popup where the contents of the popup are from a page include. What I would like to make is the ability to save model changes made in the popup upon clicking the ‘X’ close button at the top corner of the screen. Im guessing some JS will be needed but if anyone has any suggestions please let me know! Because the popup is a page include and links to another page I dont think the after close actions will work.
As per Chandra’s post here, there’s a discussion/question about how, it at all, Skuid can update standard Lightning components.The suggested work around is to force refresh the page. Clearly not a great way to handle updating records in standard lightning components.To me, if I were part of the Salesforce team, I’d be sure to make it possible for custom components to interact via standard events for all components.
Since upgrading our sandbox to Millau I am receiving numerous errors for all pages that didn’t exist pre-upgrade. Some have been fairly easy to resolve, but there have been well over 100. It’s very frustrating that so much work needs to be done to fix all of the issues that didn’t exist pre upgrade.Why are they errors now, but not before the upgrade? Some of the errors I don’t understand how to fix, one of them is in the screenshot, any ideas?
Is there any way of displaying the Export table data icon slightly larger, it’s not immediately obvious to me how I would do this? I’ve had feedback from users that it could be easy to miss.
Hi All, Seeking some skuid wisdom once again. I have a page that opens up with numerous account fields all defaulted to edit mode. Character limits are displayed on all text fields. Despite this users still exceed the limits from time to time when doing some data entry. Upon clicking save there is a standard Block UI > Save Models > Unblock UI action sequence to indicate that the models are saving. When users sometimes exceed character limits the page throws up an error in the background but then the page becomes stuck in the blocked UI mode. (see screenshot). When the page is stuck in the blocked UI mode they have to refresh the page and all the previous data entered is lost. Ideally I would like it so that if they do exceed a limit then we get an error only and they can still access the page to edit the overage. Any tips on how to accomplish this?Screen:
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.