My Stuff
Comments
-
I have a custom form that is scripted via Suitelet. I need to determine a custom subtab name so that I can use the selectedtab parameter in a url. ShowTab is not listed when I inspect the tab. Do you know a way to determine the tab name? I am assuming it is "custom" followed by a number, but I can't find it.
-
Thanks for the suggestion. It makes sense to hide the contents.
-
I found this in SuiteAnswers and was able to get a formula to work in Available Filters: https://netsuite.custhelp.com/app/answers/detail/a_id/18375/kw/available%20filters%20formula
-
This post was from a while back and I had forgotten that I already did exactly what you suggested. It works fine except that their is no New Contact button to add a contact. I resolved this by leaving the standard contact sublist on both forrms and then having an additional custom sublist for each form.
-
Thank you for your suggestion, that definitely sounds like it could work.
-
Thank you for your suggestions. I verified that the permissions are all set correctly. At this point I have settled for the work-around of creating a custom sublist, which works satisfactorily.
-
I appreciate that Olivier but I already tried unsuccessfully to do that very thing.
-
I have tried to that Olivier but I most be doing something wrong. I have an inline html field that includes the following (in addition to other elements: topFrameHeader+='<script>window.onbeforeunload = function (e) {'; topFrameHeader+=' e = e || window.event;'; // For IE and Firefox prior to version 4 topFrameHeader+='if…
-
I figured out a solution and am listing the main code here. The immediate parent field is called parentcustomer. The top level parent field is parent: //Search Client Hierarchy and populate select lists remitTo.addSelectOption('',''); invoiceTo.addSelectOption('',''); var…
-
I apologize for not acknowledging your reply Madhur. I ended up not needing this process. Thank you for your input.
-
Thanks, I did find that same solution elsewhere and it worked perfectly.
-
With some help from NetSuite I was able to resolve this with the following 2 lines: var css_element = form.addField('custpage_css_element', 'inlinehtml'); css_element.setDefaultValue('<style> .smalltextnolink{color: rgb(15,75,125); font-size:15px;} .inputreq{color: rgb(15,75,125); font-size:15px;} .input{color:…
-
Thanks for your suggestion. I just wish I could affect the table cells as well.
-
I discovered that the States/Provinces/Counties list is not exposed for script use. I solved this issue with a custom list with all the US states in it.
-
Thanks Oliver, I want to find a way to solve this and would prefer to follow best practices. I will give some thought to whether or not a re-design is possible.
-
JP26, the button name is not "submitter" and the actual button is a multi-function button that I have been unable to simulate the click event. Pete, thank you for your thoughts as well. Your suggestion is along the same lines as Elie's but it won't work for the specific need I have. At this point I am relying on the user…
-
Thanks Elie, I appreciate your recommendation. I am going to see if I can come up with a variation of your suggestion that would logistically work for us.
-
Thank you for the reply but that isn't what I am trying to do. The user will not be clicking Save but a different button that has a script tied to it. I need the script to cause the actual saving of the record before running additional commands.
-
That resets to the first step but it retains the field data. The only way I found to do it was treat it as if it was finished (without running my finish code): assistant.setFinished('You have cancelled the Assistant'); This isn't the ideal way to clear the session but it works. If anyone has a better way to do this, please…
-
NetSuite got back to me with a working solution: [INDENT]The correct item data are safely kept in the session cache. They just get lost when the form is generated from the session cache. A function refreshing the form data from the session cache will fix this. This example function can be reviewed for addition to your…
-
No, they didn't list it as a defect, they just provided the work around.
-
I realize the original post is over 2 years old but I have just created an Assistant with a SubList and am experiencing exactly what is described. Does anyone have a fix for this?
-
I will log a support case as well, thanks for the verification.
-
I am referring to a SuiteLet Assistant (similar to the Import Assistant) and on one of the steps I need to display a sublist to allow the user to optionally enter multiple records, but I am encountering the issue listed above.
-
Yes, you are correct. I am using the assistant.sendRedirect(response) command. That is how I can functionally use the Back and Next buttons. When I click Back I find the last item added to the sublist replaced with a blank line.