Tagged Questions
0
votes
1answer
56 views
Best Tools for Developing with JavScript, CSOM and SPServices
I think this is worth kicking off a discussion on here.
I currently use SharePoint Designer 2010 + FireFox + firebug and it is a bit heavy going for me to write (as editor is basic) but very quick to ...
0
votes
1answer
369 views
Adding Javascript function on custom aspx page
I have created custom ASPX page in Visual studio for my SharePoint application. I want to use JavaScript function on this custom page like this:
function ChangeLanguage(value) {
var today = new ...
3
votes
3answers
387 views
jquery projects and visual studio best practices?
Just curious how others are handling their jquery related solutions. It's obviously very easy to add a Content Editor web part with a content link to a source file. That file could have your ...
0
votes
4answers
1k views
JQuery in a Visual WebPart won't load on the page with the webpart
Hey I have a bunch of JavaScript/Jquery code that works really well when I use a Content-Editor webpart, but does not execute when I add the same code to the VisualWebPart mark up.
I am referencing ...
1
vote
1answer
338 views
Why Aren't My ScriptControls Working in SharePoint?
I am a long-time ASP.NET developer but a first-time SharePoint developer. One of the most powerful features of ASP.NET custom scriptcontrols. Yet when I try to apply these controls to a custom ...
4
votes
2answers
1k views
How to read a column type SPUser, DateTime, Currency with EcmaScript?
I have a list in SharePoint 2010 with some columns. All are default types. So I have
"Single line of text"
"Multiple line of text"
"Date and Time"
"Choice"
"Number"
"Currency"
"Person or Group"
...
1
vote
3answers
219 views
Is this the best way to open a dialog for a custom page?
I did some looking around and I was planning on creating the following js function to open a custom page in a dialog:
//Handle the DialogCallback callback
function ...
0
votes
3answers
2k views
How do I run some JavaScript in a web part?
I found some JavaScript code on the web that I want to add to my custom web part so that I can modify a PageViewerWebPart's height to 100%. I just need to know what steps to take to call it. I added ...