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’ve created a Signature custom component with jSignature (based heavily on Peter’.s work here - thanks, Peter!).The problem I’m running into is that I want to be able to run updateRow on save, so that I can store the value from jSignature in SFDC appropriately.When a save happens, I need to run something like this: //Save signature&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var sigData = element.jSignature("getData", "base30").join(",");<br>var sigName = signatureModel.getFieldValue(signatureRow,'Name') || defaultName;<br>&nbsp;<br>// update signature text field in database and save<br>signatureModel.updateRow(signatureRow, {<br> Name: sigName,<br> Signature_Date__c: skuid.time.getSFDateTime(new Date()),<br>&nbsp;Signature__c: sigData<br>});<br>signatureModel.save(); However, if I throw that into the handleSave function on my component, I’m going to get an infinite loop of saves.Can anyone think of a
How do I create a custom skuid component to contain multiple pre-defined skuid components? Here is my attempt: skuid.componentType.register('ccoptimize__script',function(element,xmlDef,component){ // Get properties and model var scriptModelId = xmlDef.attr('scriptmodel'), toggleVisible = xmlDef.attr('togglevisible'); var scriptModel = skuid.$M(scriptModelId), scriptRow = scriptModel.getFirstRow(); var scriptLabel = scriptModel.getFieldValue(scriptRow, 'Name'); //Set value for default visibility var toggleField = scriptModel.getFieldValue(scriptRow, 'Toggle_Visible__c'); if (toggleField !== toggleVisible) { scriptModel.updateRow(scriptRow,{Toggle_Visible__c: toggleVisible}); } // Define XML for our child components var $xml = skuid.utils.makeXMLDoc; var xmlPageTitle = $xml('[XML STUFF]'); var xmlFieldEditor = $xml('[ALSO XLM STUFF]'); // Make contai
Seems like skuid can’t find my component pack… despite the fact that it exists in the location indicated in the error message. If I copy the url and remove everything after the final “/” I get a download of the ccoptimizeComponents.zip, and when I open it up, behold, optimize_builders.json is right there. Any idea what could be going wrong?
I am having an issue with Rich Text Editors when saving the record with the Rich Text Editor field being empty, the RTE field will break and not allow any interaction until a full page reload. This only happens when the Field Editor is “Edit” mode.Steps to reproduce– Load a Case model (Any Object, I use Case)– Add A field Editor in “Edit” Mode– Add 2 fields to the Page (1 non-RTE field and 1 RTE Field)– Edit the record and save data to the Non-RTE field– The RTE Field will now NOT allow interaction and is unusable until a Full Page Reload.
I have created year filter from selection option with manual filter.In that many options started from 1901 to 2015.So it is converted to autocomplete.Now when I am tried to select any year at that time below javascript error occur.because of that the filter is not working.TypeError: a is undefinedSelectList.prototype.indexOf(a=undefined)skuid__SkuidJS (line 26)SelectList.prototype.selectItem(a=undefined)skuid__SkuidJS (line 26)e.selectItem(a=“2015”, b=undefined)skuid__SkuidJS (line 30)utils.registerPlugin/$.fn[a](c=“selectItem”)skuid__SkuidJS (line 27)e.draw/e<.onChange(a=Object { originalEvent={…}, type=“autocompleteselect”, timeStamp=15979453, more…}, b=Object { item={…}})skuid__SkuidJS (line 30)e.Widget.prototype._trigger(t=“select”, i=Object { originalEvent={…}, type=“autocompleteselect”, timeStamp=15979453, more…}, s=Object { item={…}})skuid__JQuery (line 7)._create/<.menuselect(e=Object { originalEvent={…}, type=“menuselect”, timeStamp=15979453, more…}, t=Object { item={…}}
Hi All, how to handle wrapper class in skuid? I mean how to build skuid page for VF which contain wrapper class? this page is portal page. my visualforce screen: !(https://us.v-cdn.net/6032350/uploads/attachments/RackMultipart20150514-25895-1lgk3zc-KMCT_Portal_Wrapper 1 inline.png “Image https//d2r1vs3d9006apcloudfrontnet/s3_images/1204337/RackMultipart20150514-25895-1lgk3zc-KMCT_Portal_Wrapper__1__inlinepng1431581793”) below i pasted visualforce and controller code. VF: .customPopup{ background-color: white; border-style: solid; border-width: 1px; left: 50%; padding:10px; position: absolute; z-index: 9999; /* These are the 3 css properties you will need to tweak so the pop up displays in the center of the screen. First set the width. Then set margin-left to negative half of what the width is. You can also add the height property for a fixed size pop up
I need to add reset filter in popup.I have added many filters.The filters are combination of manual and automatic.I can add De-active condition for manual condition.But I cannot add de-active condition for automatic filter.Can any one tell me how i can deactivate automatic filters condition. Is there any way with the help of which i can deactivate all the condition in one rule or one shot.
I’m running into an issue where users simply aren’t being displayed in the Assigned To field, specifically for Tasks. In one instance, the running user can’t even assign a task to themselves. I’ve setup a condition that auto-selects the running user as assigned to user It’s a dropdown multi picklist There are no sharing rules setup for tasks
we are using action frame work on the button click where are displaying block UI Message " Please wait" . before the screen comes up we are able to click the button multiple times.is there any solution that we have to disable the button once clicked
So, here’s my field renderer I dropped in a static resource. You’ll notice that I’m expecting arguments such that I can set field = arguments[0] and value = arguments[1]. Instead, I’m just getting a field object for arguments. What am I doing wrong here? (as an aside, I’m using $r as a shortcut for skuid.snippet.registerSnippet)
And would the syntax be as follows?skuid.snippet.registerSnippet({ ‘snippetName1’ : function (), ‘snippetName2’ : function ()})
Search not working. https://www.youtube.com/watch?v=G9wqrZtSGTQ&feature=youtube_gdata
I have a drag and drop queues page built on the opportunity object that allows us to move opportunities easily through “stages” (followed this tutorial: http://help.skuidify.com/m/11720/l/217806-queue-component-custom-item-renderers ). Everything works great on this page when previewed. I then created an additional tab on our opportunity tab page to show this page via a page include and for some reason the “drop” function of the page does not work any more. Any suggestions?
Is it possible to run automated actions on pages in skuid? I’d love to have a user bring up their list of cases and have a series of actions run automatically on cases in a current state.
Remote action function is working for existing records, but it’s not working for the new records. Getting an error saying that remote action function is not defined.
While using a conditional render in Skuid mobile on a Wrapper once rendered the contained Grids don’t apportion to the correct size and are squashed. Once the Wrapper is rendered a resize of the page will cause the inner components to size correctly once again, is this a bug?.Before I dive into a bit of JS or come up with a resizing hack is this a known problem? is there a resize function that can be called? or a different way to layout my components perhaps.Thanks
I Have to render couple of fields depending upon the custom picklist value selection.Example: For custom picklist value: “Test” want to render fields ‘a’, ‘b’, ‘c’. “Skuid” want to render fields ‘a’,‘b’, ‘d’, ‘e’.Where a,b,c,d,e are the custom fields.
In a calendar month view, events aren’t organizing by time, but instead it looks like it’s grouping by owner. I’d like the view to display events based on time.
I am using SKUID with the lightning connect External object. Here my concern is, can we change the fields label on the SKUID pages for a particular ''Field" If I don’t want to actually change the that particular column in database or field label in salesforce?
I am new to skuid app, I am using SKUID withn the combination of lightning connect external objects. For some of the fields i don’t see the ‘field renderer’ on the basic field properties. Where as in can see this ‘field renderer’ on the basic field properties for other fields through external objects.
I’m getting some strange behaviour when I use the standard skuid ‘delete’ button on an opportunity detail page. see below:I’ve got five different choices. Only the first and last ones are relevant to this skuid page. The other ones are asking me to delete things that have no relation to this particular page - i.e. there is no model containing these records/objects.I may have marked them for deletion previously, so I tried logging out and logging in again, I also tried logging in using a different pc and still got the same behaviour.Any ideas as to why this might be happening?
Has anyone been able to save table filters to a record and then set filters with said data on load? Looking for this capability.
I have a page include in a drawer.ID is displayed when the drawer is opened for the first time. But doesn’t fetch anything when the drawer is opened for other rows on the table.Hope I made myself clear.Is there any problem with page include functionality ?
I’m a little confused as to the formatting for the ‘File Path’ field for a static resource. I have a file called HoverCSS that is loaded into the Static Resources in Salesforce-- what should go into the File Path field in order to be able to reference that file?
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.