My Stuff
Comments
-
I was wondering if that was the issue for you. I had the same problem at first and it would have been a show stopper. We are also under source control and I have subfolders. For yucks, and because I like to tweak things, I went and deleted the .metadata folder in the workspace and started over. In a clean workspace in the…
-
Have a good weekend! You, too :)
-
I'd be interested to know what you decide and if you like the IDE, Steve.
-
Is that line wrapped in the jQuery document ready function? [PHP] $(document).ready(function() {} [/PHP]
-
What does the browser debugger tell you? Try IE 9's and Chrome (or Firefox). Sometime IE gives you a less vague error than Chrome. Is jQuery loaded? Can you do an alert inside the document ready function? Where is your css class set?
-
You can also use setScript but that will only work for one file, so if you have to include multiple files you have to use the inline HTML field and a <script> tag. Also, you might as well src it from the jQuery (or Google) CDN and let them update it.
-
I'm thinking that a links Portlet may not have the client side functionality you need. I think you would have better luck separating this into two pieces: Use a SuiteLet to gather the data on the backend and a forms Portlet with an inline HTML field with your script include in it. As long as you set up the Suitlet to…
-
Might it be related to the internet issues that showed up yesterday on the west coast? That seems likely.
-
It is not possible as far as I know. At least, not yet. There may be plans to expose the address to customization, but I don't know. I would imagine there are other, more pressing, issues. The enhancement mentioned above, last time I checked, didn't have that many votes.
-
Going to need more info, I think. All I can tell at this point is that you are missing either an in or an out parameter at index 1 :p
-
I found setScript only ever worked for one file. Since you are making a form in the before load you could set an inline HTML field and use a script tag in it. I use this a lot, actually. We are also using S3 for our CDN, but I think you can manage the same thing with a library file. Just set the src attribute to the URL of…
-
I could be wrong but looking at the URL of the pop up for new/custom address: https://system.netsuite.com/app/common/entity/address.nl?etype=custjob&cust=T&prefix=bill&form=billingtab_form Basically it is writing to the addressbook for, in the URL above, the invoice. New would be writing to the addressbook of the customer.…
-
Probably be easier to use a workflow to add a button, create the record and then go to it. Basically it would do all Frédéric was describing, but in a point and click way.
-
Posted this up on your blog, but I should put it here, in case it helps someone. I got this error a few times both with a RESTlet and a Suitelet trying to parse some JSON. If you don’t have them deployed properly you will get back the NetSuite notice page, which is HTML and has the first character <. In my case the…
-
Try the site Codecademy. Very cool site with interactive lessons on JavaScript. In browser code editing and the site walks you through every step. So easy to get started that I am having my kid give it a shot. Good for the absolute basics. For some more advanced JS check out the online book Eloquent JavaScript. This one…
-
Worked well, but new problem occurs. Which is items sorting. members ordered alphabetically, can't I sort them as they are listed in kit? the members are books in a series, all books have the same name but ends with level number, so level 10 displayed after level 1 they are displayed as the following: Level 1, Level 10,…
-
The reason I geocoded all of my customers at once was so that I could get around the time (and Google access) restrictions. I have two fields in the customer record that hold the latitude and longitude and a suitelet that returns all of the coordinates, name, address, etc to the portlet. Then the portlet just creates amap…
-
Marty, you are THE MAN. Fusion table is going to save my BBBBBBBBHIND on this. Post back with what you do, Joe. I would be interested to see your implementation.
-
Let me know how it turns out.
-
Interesting idea with the zip code polygons. I like it.
-
I'm not a lawyer (obviously:), but I think this example can apply to use in NS, since our company pays all users fees: 9.1.3 Examples. (a) You can require users to log in to your Maps API Implementation if you do not require users to pay a fee. I could be wrong, though.
-
To geocode all of the customers I created two scripts. One scheduled and one user event. I kind of cheated with the scheduled script and just let NS kick the script out when it ran past it's limit, but as I was only doing this bigger one once so I though it was fine. Were I to do this on a regular basis I would rewrite it…
-
I had already done both of your suggestions and came up with no luck. I was just hoping someone would have a super secret search id that worked. Until it is supported I am just going to create a custom record and duplicate the quota information. Our quotas change rarely so I don't think it will be a huge trial for me to…
-
The double 'total' column, messed up index and even the formula were all a product of increasingly stressed out barfing code at my screen to see if I could get anything but an empty string. Anyway, you were both correct. If I use a type of 'CustInvc' or do a search for 'invoice' I get the results I need. Thanks for the…
-
If anyone is interested. I am. Keep 'em coming. I like reading your blog posts and knowing that someone else goes through a (sometimes lengthy for me) discovery process.
-
If you find an answer to this will you post up what you find? I can see a use for that for us in the next year.
-
Remove edit permissions for the record per role. In other words have the role only have view permissions for the record type.
-
Actually, after I posted this I was watching one of the training videos on the SuiteAnswers site and ran across the new enhancements for 2011.1, namely the setScript function. With that I was finally able to get jQuery to work correctly in a portlet, with jQuery set as a client script in the file cabinet. I suppose I could…
-
I thought about removing the button that way, but I am reluctant to add another moving part to this process. I already have my emailing script built on that action already and I wanted to so it all in one place. There is probably an event I don't have access to that would allow me to do what I want. If I could just set the…
-
Just write a set field on each with different text and see which one remains after the record is reloaded. I would do it a few times; there might be some queue logic that could change the order.