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
I have a custom field renderer which highlights background color of a table row if certain condition is true. However, if a user clicks the delete button on that row because of the custom renderer that row does not get highlighted in ‘Pink’. To fix this, I am calling another snippet using model action. Idea is - if a model has rows flagged for deletion the snippet should get called, temporarily disable the custom highlighting. var field = arguments[0]; $ = skuid.$; value = arguments[1]; if(field.element.hasClass(“finished-sentence”)) { field.element.removeClass(“finished-sentence”); } else if (field.element.hasClass(“unfinished-sentence”)){ field.element.removeClass(“unfinished-sentence”); } However, I am getting errors in console on addClass and RemoveClass. Help please!!
I have a Drawer set up to pull the detail of a record, however, only SFDC system administrators can see the contents of the drawer. All of our users are assigned to a SF permission set that allows them to view/edit these fields. I did notice though that under the Skuid Viewer permission set these particular fields are not checked, but not editable either. Any suggestions?
We are having a use case that I thought we could figure out but have not yet. We are trying to build a Table with a Row Per User that has Events scheduled, The part that is hard is that the Columns need to be count of Events by days out from Today (See Attached Screenshot Mockup). Basically have a column for Today, Tomorrow, The next day and so on for 10 Days with a Count of how many Scheduled Events are there in a Table Format. Does anyone have any Ideas or Guidance to how they would approach this with Skuid?
I need to remove a picklist value from a perticular field on a row while they do an edit in table i.e I don’t want to show “Closed Own” Picklist value on stage field . i tried this from what i have learnt.var field = arguments[0];value = skuid.utils.decodeHTML(arguments[1]);oppModel = skuid.model.getModel(‘OpportunityList’);if (field.mode == ‘edit’) { var picklistEntries = field.metadata.picklistEntries; console.log(picklistEntries); for( var x in picklistEntries){ console.log(picklistEntries[x].value); if(picklistEntries[x].value === ‘Closed Own’ ){ console.log(picklistEntries.length); picklistEntries.splice(x , 1); console.log(picklistEntries.length); } }}skuid.ui.fieldRenderers[field.metadata.displaytype]field.mode;*********i was able to remove it form picklistEntries , but i am not sure how to update the field with these new List.Just for Info:I have a row Action Button with multi action button which updates t
Page with four tabs. First tab loads fine. Remaining tabs are blank. Here’s what I’m getting in the console: Uncaught TypeError: Cannot read property ‘Id’ of undefined It’s apparently pointing to line 3417 of skuid_SkuidJS:
It was my impression that if a user was assigned the Skuid Page Viewer premission but not the Skuid Page Builder, they would not see the ‘edit’ button on the right side of their pages, and would not be able to access the builder. That doesn’t seem to be the case. All of our users with skuid licenses can edit pages.Have I misunderstood, or is this a problem?
When working on an ipad, when touching the question mark the help text does not show.
Read up on Skuid’s cloning capability today – very nice. How deep will the clone go? I know that it will clone parent and child records as long as Clone Model Data and conditions are properly set. What about child records of the children? If I follow the same pattern for Parent-Child (A-B) will Parent-Child-Child (A-B-C) also work? Thanks in advance, Irvin
When loading a page and the field renderer uses “radio button” the button is to small and grey to be seen. When selecting a button, how can the button be made larger to fill the entire circle with black?
Using javascript called via an action, how can I get the value(s) just entered by a user on a popup screen that is bound to a model? The component on the popup is a “Field Editor” that contains fields from a model. How can I access what a user entered into the fields using javascript? I tried document.getElementById but it returns null. Thanks in advance for any help.
Hello,We have an performances issue with skuid pages in one of our sandboxes.There are couple of interlinked models in the page which generates a chart. To debug any issue with the query, we created a visual force page and added same queries using javascript remoting and the page is loading without delay. So, we wanted to understand if there is specific for chart component that can cause the delay OR is there any additional overhead in skuid that is associated with model query. Please note that the query is an aggregation query, so the size of the result payload is very small in skuid.Thanks,Riju
Can i have a normal Vf page and a skuid page in a single page? I would like to have a Vf page as container and Skuid page as a section inside it. For ex: I have a VF page that displayed a pageblock table and I create a skuid page for vizualization and I want to show the page as Visualization on the top and pagblock table at the bottom. You can ask that I can go with skuid page tables. But my customer strictly wants only page blocktable so I have no option other than providing this customization. Is this scenario possible. Can anyone help me on how to do this. Thanks
Hi,Pardon me if this issue is already posted. We have a consolidated Opportunity skuid page which contains different skuid pages rendered on the basis of recordtype. each page has set of tabs and associated global actions for child records. A tab for task has global action of crating new task which opens a popup wizard. If i preview the child page directly, no error is displayed in console for new task button. however, when i preview consolidated page and access new task button, i get the following error:Uncaught TypeError: Cannot read property ‘dialog’ of undefinedskuid.utils.createPopupFromPopupXML @ (program):10utils.createPopupFromAction @ skuid__SkuidJS:26d.register.showPopup @ skuid__SkuidJS:30f.runActionNode @ skuid__SkuidJS:30m @ skuid__SkuidJS:30m @ skuid__SkuidJS:30m @ skuid__SkuidJS:30m @ skuid__SkuidJS:30m @ skuid__SkuidJS:30f.runActionsNode @ skuid__SkuidJS:30r.actionsDef.children.each.f @ (program):4r.actionsDef.children.each.l.onSelect @ (program):4c.selectItem @ skuid__
Attached is a pic of the following CSS code is doing: #colorButton .ui-button { background: #f06c00; padding: .4em 2.1em; } /* Overlays */ .ui-widget-overlay { background: #005a84 url(“images/ui-bg_flat_0_005a84_40x100.png”) 50% 50% repeat-x; opacity: 0.7; filter: Alpha(Opacity=0); /* support: IE8 */ } … as you can see the panel set in the popup is white I can’t seem to find or work out a code that will change the background. I tried all I can think of, any thoughts would be greatly appreciated. Thanks!!
Hi, Is there a way to expose the “save and send update” standard button on event? I need this button to be displayed on my Skuid page. Thanks in advance.
we have a static resource you built for us that we have to update when our picklist value changes. we have done that but it appears that a value we are selecting on our Skuid page is not matching to the value we expect and so a formula field is not picking it up correctly. can you assist?
Is it possible to change a page to be read only (from edit) based on the value in a field?In other words, in our opportunities, we have a status field. We would like to lock down the page once the status hits ‘Closed’. I know we can do this through separate page layouts being driven by workflow rules changing record types, but I was hoping for a solution that would not require us to maintain two versions of the same page.
I am trying to deploy my skuid pages from “Developer” sand-box to “Full Copy” sand-box. I was able to deploy these pages and when I am trying to access the pages in “Full Copy” sand-box. It’s throwing me a following error. All these pages are working fine in my “Developer” sand-box though. Am I missing anything? Here are more details, When I look at sources for these issues (By clicking F12). This is that I see, Failed to load resource: the server responded with a status of 500 (Server Error) Any HELP is appreciated. Thanks, Goutham
How do I change a picklist field to display wide enough to show the full value of my entry?
When logged in as a Customer Community Plus user, from a parent record owned by the user, the File Upload button is not working. When clicked, nothing happens. Is there something specific that has to be done for this to work in a community?Thanks!
Or a popup, or some way to show more information on a lookup field in a regular 'ol field editor? On our Invoice page, our team would like a quick way (apparently control-clicking the name isn’t fast enough) to see the shipping address of the Account.What I’m hoping to achieve is either a button next to the field that brings down a drawer, or opens a popup. Another great option would be some sort of an on-hover popup.Has anyone done something like this before?Thanks
We have a Skuid Mobile page component where I’d like to incorporate an iFrame flow within the Skuid Mobile page but not sure how to do that. I’m not familiar with the Skuid Mobile component.
Another one for the hardcore folks:I have a Remote Action in a controller extension class. The Remote Action method invokes a static method on a helper class which then performs a web callout. The Remote Action has no knowledge of the HTTP request/response ceremony in method it is calling nor should it.Not quite sure of the proper way to test the Remote Action w/o setting up a HttpCalloutMock implementation. &#47;&#47; Arrange &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; <br />&nbsp; &nbsp; &nbsp; &nbsp;&#46;&#46;&#46;&nbsp;<br />Test&#46;setMock(HttpCalloutMock&#46;class, new TRKD_MockHttpResponseGenerator());<br />&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<br />&#47;&#47; Act<br />String jsonReponse = MyController&#46;doSomethingReturnJSONString();<br />&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<br />&#47;&#47;
I have this function within a custom component to handle changes. I want to run updateRow() within the function, but I end up with a loop that runs several times before mysteriously quitting.Does a function have an initiatorId? Or is there anythingother way to tell the function not to repeat itself after it calls updateRow()? // Define a function to handle change.&nbsp; &nbsp; &nbsp; &nbsp; <br>component.change = function(){<br>&nbsp; &nbsp;console.log('CHANGE');<br>&nbsp; &nbsp; // Do some other stuff...<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Update Name and Date<br>var sigName = signatureModel.getFieldValue(signatureRow,'Signature_Name__c') || (defaultName == 'Custom') ? customDefaultName : defaultName;<br>&nbsp; &nbsp; &nbsp; &nbsp; <b>signatureModel.updateRow(<br></b><b>&nbsp; &nbsp; signatureRow,<br></b&
Does something like this work to run code on the ‘tabshow’ and wizard ‘stepchange’ events? $('body')<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .on('tabshow', function(){<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; component.loadevent();<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; })<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .on('stepchange', function(){<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; component.loadevent();<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }); Is there a better way to write that?
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.