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
Hi, I want to have VF page for Manager Role and SKUID page for Sales Rep Role of Same PROFIES. Could somebody help in suggesting a way for the same?Thanks
This may be more of a general SF question.I have a row action to create an email with details from a task. I am populating the subject and body with various fields from the object. Everything is working great except the description(body) is being input with no carriage returns so it is showing like a large block of text.Is there anyway to make sure the formatting of the text box appears correctly in the email that is created?Thanks,Scotty
I have provided full xml of my grid page.Below is the url from where you can download it.https://drive.google.com/file/d/0BzwLYE5K_ApZZTNTRERFNE92V1k/view?usp=sharingI am facing the issue realted to date filters.For example I have one field work experience year.So Please check Reg Date Filter and work experience filter in above code.And provide me proper solution for that.Before a week all filters are working fine but now I am facing the error in this two filter.It cannot able to search anything.Like we have disabled that filters.
I have added table in popup.When I am opening that popup I need to reset the all the filter plus search box.My Current problemI am clicking on popup and searching anything into the search box.After that when I am close the popup that search result appear again.After that when i am trying with different text it is not give me any result.So I need to reset model condition when I am clicking on popup.So I have done below code but it is not working.Please provide some solution for that.=========================var params = arguments[0], $ = skuid.$; var Job_Seekermodel1 = skuid.$M(“Job_Seeker”);var searchCondition;for (var i = 0; i < Job_Seekermodel1.conditions.length; i++){ searchCondition = Job_Seekermodel1.conditions[i]; Job_Seekermodel1.deactivateCondition(searchCondition); }Job_Seekermodel1.updateData();======================================
The standard Skuid date picker using JQuery UI is not user friendly on mobile. I’m currently building a mobile skuid page for IOS and simply want to deactivate the standard Skuid Date picker and use IOS’s built in picker by setting I have created a custom field render on date but Cannot truly remove the JQuery date picker with “destroy” When I add type=“Date” to the input the IOS picker displays but the date never saves. Attempt Custom field render: /* Custom Field Render for Date field */ var field = arguments[0], value = arguments[1]; skuid.ui.fieldRenderers[field.metadata.displaytype]field.mode; var dateInput = field.element.find(‘input.hasDatepicker’); dateInput.datepicker( “destroy” ); dateInput.removeClass(“hasDatepicker”).removeAttr(‘id’); dateInput.attr(“type”, “Date”); This is a crucial part of our App so any thoughts / idea’s would be greatly appreciated.
Has anyone ever seen a scenario where one specific picklist get’s “stuck” - in that, you can interact with the list, but you can’t make a selection from it?We’re seeing this with one specific picklist, and only this one. It happens intermittently, and fixes itself with no apparent rhyme or reason. On some records it will fix itself within minutes, on other record it stays this way permanently.Very strange behaviour. Hoping someone can provide some insight.
I have an Account Detail Skuid Page, where I have a tab that shows Meetings, meetings being a custom object. On the tab is a table of meeting records, and in the table is a drawer that shows all emails sent related to that particular meeting record. Now, I want to use the Send an Email button to create a new email that when the page pulls up is related to that particular meeting record. So, I need to pass the ID of the meeting__c record in the URLHere’s what I can’t figure out:/_ui/core/email/author/EmailAuthor?p2_lkid={{#$Model.AccountData.data}}{{Id15}}{{/$Model.AccountData.data}}&rtype=003&p3_lkid={{{Meeting__c.Id.goesheresomehow}}}&template_id=00XE0000000SAJ0&retURL=%2F{{$Param.id}}I’ve just kind of ignored the p2_lkid because I don’t need to specify who I’m sending it to.The table where the Send an Email button lives is in the drawer of the meeting, but the table itself has a model of MeetingEmails, with a Context of WhatID = ID of the meeting__cAny ideas on how I
Is there a way to mark a row as deleted in javascript? Right now I’m trying to assign this “row.__deleted===true;” but it doesn’t seem to be working.Thanks!
Is it possible to assign the Name and other fields to a reference field via updateRow? This is a similar problem to showing the Name of a record instead of the Id when created a new row. I’m trying to do this with updateRow and am not having success.My code:modelA.updateRow({Id: firstrow.Id}, {CheetahBMS__Serial__c: equipId, CheetahBMS__Serial__r: { CheetahBMS__Serial__c: firstrow.CheetahBMS__dummysku__c, CheetahBMS__Product_Group__r : { Id:equip, Name: prodname } }, CheetahBMS__Rate_Type__c: modelD.data[resindex].CheetahBMS__Rate_Type__c, CheetahBMS__Order_Line__c: resID} ); I’m able to see in the dev console that these values are being updated in the model, but they are not showing up on my table until I save (which would happen even if I didn’t update the val
I’d like to use Skuid to replace some Formstack forms, build a wizard, put it on a Force.com site, embed it in an iframe on our Wordpress site. Will anyone be able to see it / use it if they don’t have a Skuid license? Or is there a Guest User license that covers that one page or something?
We recently assigned a new Skuid user in China office. When we logged into the China user’s account in Australia, Skuid works fine; while users physically locate in China can not get to skuid pages. Network diagnostics result led us to believe that China has blocked Google and JQuery in Skuid failed as a result. Has this happened before? And is there any workaround?We do have long term plan to release Skuid in Asian office. So this issue will become critical.Please help to shed some light. Cheers!
I have a page that saves three models when a button is clicked. The first model is just one record being created; the second (records being created) and third (records being updated) have many more. And more significantly, the second and third models have a lot of automation tied to them - mainly Processes and Flows.All three models are saved within one action, and that action has the “Roll back save on any error” option checked. Because of the automation, I occasionally get a “Apex CPU time exceeded” error back from the server (this is visible in the Javascript console of the browser, and looks like it originates from the remoting call). (Side ntoe: I do occasionally see other errors - I can’t remember which ones exactly, but I recall them being timeout type issues. I’d imagine this could be put down to a network problem, and that the operation succeeded on the server, but the client didn’t receive a response, so it’s a different issue. I only mention it for completeness 🙂So with the
Hello! As the title states, I have a field that contains multiple strings that correspond to Salesforce UserNames. When trying to check if a UserName is contained in this field, I get the following error: 1. An error occurred while attempting to perform the following SOQL query: SELECT Comments__c,Level_1__c,Level_2__c,Level_3__c,Recommendation__c,TBA_Selection__c,TBA_Selection__r.Name,Tags__c,Value__c,Score_Type__c,Id FROM TBA_Score__c WHERE (Level_1__c = 'TLS')AND(Level_2__c = 'Vision: They dream big')AND(Level_3__c = 'Create a powerful vision')AND(Score_Type__c = 'Written Assessment')AND(TBA_Selection__c = 'a2A800000007tOeEAI')AND(Question__c = '1')AND(Tags__c = 'Written#, Q1#')AND(TBA_Selection__r.X2nd_Reviewer__c includes 'Eulogio Gallo') LIMIT 2 Error:expecting a left parentheses, found 'Eulogio Gallo' It appears that Skuid isn’t formatting the resulting SOQL query properly, forgetting the parentheses needed for the ‘includes’ keyword in the SOQL query. Not sure how to remedy t
I am creating table filters and I want there to be default filters set on page load. I have created a manual filter so the first selection will automatically load. It doesn’t. Has anyone experience this? Set the manual filter w/out cookies and “none selected” option On page load I get this
I know that using updateRows() on a Aggregate Model seems a little odd, but I would have expected that all registered components would re-render after an update? That doesn’t seem to be the case.I’m using inline javascript to do some math with the values of an aggregate model on pageload. When I call updateRows() on the model, the values in the model update, but the table on the model does not re-render.Is that designed behavior?As a workaround, I’ve assigned a unique id to the table, and called skuid.component.getByID(‘myUniqueId’).render(). That’s working fine, so there’s no rush to ‘fix’ this, if it’s actually a bug.(as an aside, component.getByID() and .getByType() are still undocumented.) 😉
I would like to have a custom name for my web browser tabs. I found this post:https://community.skuid.com/t/customize-browser-tab-titleand it allowed me to add the record name which is great, but it has “~ Salesforce Enterprise” appended to it. Is there a way to get rid of the Salesforce Enterprise in the browser tab?
On our Account Skuid View page, we have a model for events, nothing fancy. In our sales cycle, we have openers create events for closers that allows them to qualify and determine whether or not they will “accept” opportunities. Here’s a screenshot of what the scheduled event might look like from an AE’s perspective: The fields in the top section are from the Events model; fields on the bottom are from the Account. Our problem is that we’re mostly limited to those objects in this pop-up (or other objects related to the account, oftentimes with multiple records). But because there is important information on the Contact record identified by the WhoId on this Event, we would love to be able to view that info in this pop-up. Question: Would we be able to create a Contact model that is only the Contact referenced by the WhoId for a given Event? That would be our ideal solution. I know the other two ways to view the Contact info would be: go to the Contact page itself (or open up a pop-up wi
Hi,We’ve encountered a bug with the multi-select fields, where you get some strange behavior when you click on a text field with an open multi-select selection popup. It only seems to be an issue in IE.Here’s how to replicate:1) Click on a multi-select field2) Click on a text field3) Press spaceWhat happens when you press space is that the multi-select popup opens up once again. This only happens when you click on the text field with the multi-select open - everything works fine if you click away or click the X first.Thanks!Kartik
I have a page with two tabs. One tab has a table on it displaying 50 rows. The other tab is a page include with another table also displaying 50 rows. Several of the columns of each have sort by functionality. Sometimes the sorts work and sometimes the get hung up on the “Please Wait” message with a Blocked out UI. I’m trying to figure out if this is a know issue, if it is because I am trying to display so much data on a single page, or if it is something maybe to do with filter conditions that I have applied to the tables. Anyone have any insight on this? Thanks!
Emily from Skuid was helping me with this last week but I wanted to ask the community because I am really lost as how this is working for others and not me. I am not sure where I am missing the mark. I have an invoice field that I need to filter on. The field is a string so I can’t use a regular table filter for multiple select. So I followed this thread and made a couple of tweaks to suit my needs. I have been told by a couple of people that the way it is built should work properly as it works for them, however it does not for me. It only allows me to filter on one record. When I type in a second invoice number it is ignored. How it is set up: 2 models Invoice Filter (used for the filter) and InvoiceList (Table) Invoice Filter has a single row for the field editor with a page title with a “Filter” button that is connected to the Invoice List model. Condition on Invoice List model: Field: Invoice_Number__c Operator: is in the set of values Value: Multiple Specific Values State:
Hello community…I’m using a Table with a Custom View and I would like to execute a Row Action (in this situation, I created a Custom Row Action) from this custom view.Any idea?ThanksMat
Salesforce has the capability of Control how various file types are handled during upload and download,via Setup->Security Controls->File Upload and Download Security, I made the “Don’t allow HTML uploads as attachments or document records” option enabledand wanted to prevent uploading some file types eg: HTML,exe etc. via my skuid page.As i can see salesforce blocks the particular files properly, though skuid doesn’t handle the related error message, (in the browser console I can see 401 (Unauthorized) error message) Does skuid support this functionality? Has anyone got the same problem and found a solution for this? Thank you in advance
I have one field called registration date.I have added manual select option filter. There i have used THIS_YEAR,THIS_MONTH and other date filters. but it is not working. I have provided xml.Please check and let me know where I am doing mistake.
Hello,I would like to filter candidates to worky by few fields. Regarding to (https://community.skuid.com/t/filter-table-using-or-a-value-entered-by-the-user) I create this action framework and it works but…When I add more than 3 conditions in grouping logic with ‘and’ (1 and 2 and 3 and 4) searching is not working. Is there any limitations how many conditions could be grouped?Another question is: When I have 3 filelds that according to them I would like to filter and I set Values on 1 and 2, and 3 is non selected, Skuid search candiates that have matching values in 1 and 2 and empty value in 3. I would like to search by matching values in 1 and 2 and any value (empty and any value) in 3 is it possible?Best regardsPawel
This may sound a bit strange as to why I would want to do this, but I need to be able to enter a name into a text field and have it update a look up reference field. I can do this with the id, but I need it to relate based on name. So if I am in a field editor using the model Patient and Patient has a lookup field to "Illness " object, I need to be able to have a text field from patient choose the Condition 1 record based on name, not id. The basic question is that I can update the field if I use the id of the illness record, but I can’t get it to work using the name of the illness record. Is this possible?
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.