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’m trying to do this: https://community.skuid.com/t/can-i-do-conditional-rendering-based-on-a-query-string-p……but it seems like it should be doable now using standard Skuid functionality. I just want to make sure I"m not missing something!I have a page that I use over and over again as a Page Include. This page has a button labeled “Save and Close”. I want to display this button only if my page is being displayed within a Page Include. In the query string for my Page Include I have: popup=trueIn my page, I am using the following conditional render conditions on my button: Page/URL Parameter Value; popup = trueWill this work? Or should I use the hack described in the post linked above?
Does anyone have one?Do I build it with xml the same way that I do for rendering the component in runtime?
Another custom component question. 🙂I have a model property on a custom component.I’d like to create a picklist property where the picklistEntries are defined by the metadata for a picklist field in the specified model.Even better, I could dynamically create a model on the desired sObject and get the picklistEntries from a field that way.I’ve tried both, without success.It seems like skuid.$M() returns undefined even when the model ‘exists’… I suspect that a model has to be loaded for that to work? What if I create a model new model with skuid.model.Model() in the builders.js and call .initialize().load()?Here’s my real question: Is there a way to access field metatdata on the builder-side in order to dynamically define picklist entries for a component property?
Hi everyone,I have a table, and I’d like to select some of the rows from within some Javascript code, but I just can’t seem to get it to work.I’ve seen this response here which handles de-selecting rows, which makes me think my approach is not crazy, but extending this example doesn’t appear to do what I need it to: https://community.skuid.com/t/snippet-code-to-deselect-selected-table-rowsI tend to explore the API via the dev console in Chrome, and here’s what I’ve done:var mytable = skuid.$(“#my-table”).data(“object”); to get the tablemytable.list.renderedItems; to look at the itemsmytable.list.renderedItems[“18charID”]; to look at a specific item - hey look, there’s a selected property!mytable.list.renderedItems[“18charID”].selected = true; doesn’t appear to do anything in the UI. Maybe we need to…mytable.list.render({doNotCache:true}); Doesn’t do anything either. In fact it resets the selected property to false.Variations on the above - visibleitems rather than renderedItems, and th
We want to use the same object called “Rental Listing” for another use. Basically we have rental properties and we also want to include vacation properties. 90% of the fields apply to this record, but we need a bit of a different page layout for the vacation property page. We want to show a different layout when a field = a specific value. Any suggestions?I’ve tried to go into page assignments but that didn’t seem to work. I do not want to just do field rendering either as a new layout and UX would be more appropriate. Suggestions?
I would to have a hyper link on a field. on-click I would like to redirect user to a different page. But I don’t see this template option in couple of field properties.
Hi,I am trying to defaulting a value in the picklist with the JavaScript.var params = arguments[0],$ = skuid.$;var result=document.getElementById(“PicklistId”);result.options[1].selected = true;result.options[1].defaultSelected = true;But it is not working. Can any one please fix it. Thanks.
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.
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.