Tagged Questions
Script# is a free tool that generates JavaScript by compiling C# source code.
15
votes
6answers
5k views
What advantages can ScriptSharp bring to my tool kit?
Currently we use jQuery to add RIA goodness to our apps, but recently we have been implementing the Coveo Search engine into our Sharepoint portal and found that ScriptSharp was used in their product. ...
13
votes
8answers
4k views
Should I use ScriptSharp
I am developing my first ASP.NET MVC application and I beleive that Script# can help me a lot. But it cannot find the resource necessary to support my development.
I could not find The codeplex site;
...
6
votes
9answers
1k views
Why Haven't GWT- and Script#-style Frameworks Become Dominant?
With GWT, we can write code in Java and have it translated to JavaScript code.
With Script#, we can write code in C# and have it translated to JavaScript code.
It sounds GWT and Script# will save web ...
5
votes
3answers
305 views
Script# and compiler problems
I've just come across a pretty strange problem with VS2010 and Script#, which most of the time I am able to re-create.
In my simple scenario I have 2 projects in my solution; a standard Asp.Net MVC2 ...
4
votes
2answers
502 views
How do I use knockoutjs with ScriptSharp?
As I have just learnt the Script# that I don't know how to use knockoutjs with ScriptSharp. I tried to read through the KnockoutAPI but I am still confused how to write even just a view Model ...
4
votes
3answers
402 views
Sharing JavaScript code between .NET desktop and browser
I have a set of core, complicated JavaScript data structures/classes that I'd like to be able to use both in the browser as JavaScript and run on the desktop with .NET 3.5. Is it possible to compile ...
3
votes
1answer
146 views
ScriptSharp: myObject.prototype = new myOtherObject;
How can I reproduce this in ScriptSharp (C#):
myObject = function(input) {
}
myObject.prototype = new myOtherObject;
3
votes
2answers
217 views
Is there an automated tool for generating script sharp libraries?
I can't believe all that code for jQuery was done by hand.
Edit. Just to be cleaeer
Script # has a set of libraries that wrap jquery. This allows me to call jquery functions in natural c# way. But ...
3
votes
1answer
218 views
Maturity of Script# (in comparison to GWT)
I already spent some time developing small projects with the GWT and I recently discovered Script#.
Now I am curious about how mature this toolkit is.
I am especially interested in the opinion of ...
3
votes
3answers
476 views
Can I use GWT (or Script#) to write individual functions in Java (or C#) and compile them to JavaScript?
I understand the purpose of GWT, but I'm wondering if I can use it to compile a few functions from Java to JavaScript just to make sure that I don't have to maintain the same code in two different ...
2
votes
2answers
51 views
Why does unescaping a string mess up my regex?
I'm trying to generate javascript code similar to this
function ParseJsonDate(input) {
var tmp = +input.replace(/\/Date\((-?\d+)\)\//, '$1');
jsonDate = new Date(tmp);
return jsonDate;
}
...
2
votes
1answer
41 views
How well do Script# numbers map to Javascript?
I've been playing with Script#, and I was wondering how the C# numbers were converted to Javascript. I wrote this little bit of code
int a = 3 / 2;
and looked at the relevant bit of compiled ...
2
votes
4answers
93 views
script#, how to diagnose “Check that your C# source compiles and that you are not using an unsupported feature”
I am getting this message
" Check that your C# source compiles and that you are not using an unsupported feature"
And do not know how to work out what I am doing wrong. Does anybody know?
I ...
2
votes
1answer
84 views
Per-Page Javascript files from one project using Script#?
Is it possible to have one Script# project and make multiple Javascript files out of it? What I'd like to do is have one Script# project and have it emit one Javascript file per class or namespace. I ...
2
votes
2answers
177 views
How can I pass arguments to the event handler when I trigger an event?
In script#, I have the following:
jQuery.Select("#someId").Trigger("item-added", new object[]{"ball"} );
This compiles into the following Javascript:
$('#someId').trigger('item-added', [ 'ball' ...
2
votes
1answer
145 views
Declaring a javascript object literal in Script#
I am trying to replicate a jquery ajax call in Script# and in the data option I am passing an object literal
{ id: target.data("id"), name: newName}
I am trying to reproduce this in Script#, but I ...
2
votes
2answers
178 views
Clean way to include HTML in Script# projects
Is there a way of embedding a html file in a script# project so that it can be included in controls rather than having to put it in a class property/field?
When I say html file, I'm refering to small ...
2
votes
2answers
859 views
What is Microsoft's GWT solution for .NET?
I like GWT but I prefer to use ASP.NET MVC for my projects, however, these two are not integrated and require me to write my code in two different platforms and two languages. Does Microsoft have any ...
2
votes
1answer
108 views
New version of Script# 0.6 and ASP.NET Ajax - where is MicrosoftAjaxExt.js?
we use the ASP.NET Ajax (ie. <asp:ScriptManager />) on our pages and we wish to use Script# for generating js files with a client side functionality. The problem is when we include mscorlib.js ...
2
votes
4answers
898 views
GWT vs. ScriptSharp Pros and Cons
We have determined it's too difficult for us to maintain the bulk of javascript we need to write full-scale "single page" javascript "applications". Relying on programming conventions still has left ...
2
votes
3answers
364 views
Share code between website/web application project and Script#/ScriptSharp
I added a Script# project to my website project and created a small sample library with two classes.
Now I want to use these classes from the website code. In this case, I created a simple object ...
2
votes
4answers
247 views
Pushing javascript too hard with Script# and javascript?
So I have been playing around with a home project that includes a lot of js. I having been using Script# to write my own library etc. Personally I wouldn't write a lot of js if I didn't have a tool ...
2
votes
1answer
103 views
Using the same classes for NHibernate and Script#?
I am about to start a project using NHibernate and Script#
NHibernate required that all properties be virtual, so I have my entity like this:
public partial class User
{
public virtual string ...
2
votes
2answers
352 views
Scalable/Reusable Authorization Model
Ok, so I'm looking for a bit of architecture guidance, my team is getting a chance to re-cast certain decisions with a new feature that we're building, and I wanted to see what SO thought :-) There ...
1
vote
1answer
38 views
Script#. How to add methods or members to BCL (to its script sharp's implementation)
I want to extend some classes (Int64 with adding the Parse() method, ArrayList with ToArray method, or some else). Does anybody know the way to do it?
1
vote
2answers
55 views
Method signature template in Import library
I am working on an Script# import library and I have the following issue.
This is the javascript output I want,
o.addListener('resize', resizeHandler);
and in the import library this method looks ...
1
vote
1answer
66 views
“Inject” an operator into an existing type
Scriptsharp uses mscorlib 0.7.0.0 which has an implicit operator System.Number on an int32. I understand the reason why it's there although I imagine that the compiler can handle the conversion in ...
1
vote
1answer
89 views
Unit testing c# code in a ScriptSharp project
Im using ScriptSharp to create a RIA app.
Works nice besides some oddities.
However finding and fixing problems using Firebug isn't really convinient.
Since scriptsharp also delivers a Dll I was ...
1
vote
1answer
61 views
script# - need suggestion for wrapping extjs function definiton
extjs uses an indirect class definition system. Here is an example
Ext.define('User', {
extend: 'Ext.data.Model',
fields: [
{name: 'name', type: 'string'},
{name: 'age', ...
1
vote
2answers
75 views
script#, generating code for referenced library
I have a script# 'app' and an import library that wraps a js library. I reference the library from the app, all compiles OK. But no JS code is generated for the library. For example the library has a ...
1
vote
1answer
59 views
Script# and Asp.Net updatepanels compatibility
This is a simple question, NikhilK answered to this question:
"Script# doesn't support ASP.NET Ajax anymore"
Does that mean that we can't use Asp.net UpdatePanels (which need a ScriptManager) in the ...
1
vote
2answers
90 views
Newbie How do I send Json information using scriptsharp to a web service
I have modified the sample Demo to try to send a json object rather than a string. The web site see it as a string of value [object] rather than Json text. What do I need to change.
namespace ...
1
vote
1answer
86 views
Best pratice to map a mixin in a Script# import library
What's the raccomended way to map a Javascript Mixin in a Script# import library?
For an example: this qooxdoo api
http://demo.qooxdoo.org/1.5.x/apiviewer/#qx.core.Object
Implements this mixin
...
1
vote
1answer
75 views
Script# and System.IO.Stream
I'm currently working on getting the C# Source for the 7-Zip compression library to compile on Script# but facing the problem that System.IO.Stream is not supported in Script#'s version of the BCL. ...
1
vote
2answers
60 views
A question about remove the get and set value in data of ajax, using Script#
As now I have started to use Script#, I tried to send a data package to server via ajax:
jQuery.AjaxRequest<RespondPackage>(url, new jQueryAjaxOptions("type", "POST", "dataType", "json", ...
1
vote
2answers
96 views
Script# licencing
Can I use script# in a commercial web project? And can I sell my product which includes script# files. I keep in mind .js files (mscorlib.js).
1
vote
1answer
82 views
how to make script# preserve case of json records
I have
[Imported]
public sealed class ServerResult : Record
{
public string Message;
public int Result;
}
And my json server method does
return Json(new { Result = result, Message = ...
1
vote
1answer
119 views
Iterating over properties of an object in Script#
What Script# code would generate the following JavaScript?
var obj = eval('(' + jsonText + ')');
for (key in obj) // what C# code translates to this iteration?
{
// ...
}
thanks.
1
vote
1answer
164 views
Script sharp compilation error
I create follow class
class Class1<T>
{
private T _d;
public T GetD()
{
return _d;
}
public void SetD(T d)
{
_d = d;
}
}
and if I tried to ...
1
vote
1answer
225 views
ScriptSharp 0.7.1 and AjaxRequestCallback<object> compilation fails
I'm attempting to upgrade my version of ScriptSharp from 0.6.2 to 0.7.1 to take advantage of the new generics feature. The last issue I have come across that I don't know how to solve is this: when ...
1
vote
2answers
249 views
How to use an external jquery plugin with Script#?
How can I use an external jquery plugin with Script# 0.7? Is there a tool to convert any jquery plugin to equivalent c# code? Or we have to do it manually?
1
vote
1answer
278 views
typeof equivalent in scriptsharp
I have some exisiting code in javascript:
function setPostData(selector, data) {
if (typeof(data) === 'function')
data = data();
$(selector).setParam({'postData':data});
}
how ...
1
vote
1answer
149 views
How to use non-latin characters with ScriptSharp
I am trying to write:
options.Title = "Русский текст";
and in compiled JS i am getting:
options.title = '\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd \ufffd\ufffd\ufffd\ufffd\ufffd';
So all ...
1
vote
1answer
186 views
How do I use the onBeforeUnload event with Script#?
I'm using the Script# library with ASP.NET. I want to listen and respond to the onBeforeUnload browser event.
I am currently intercepting the event like this:
Window.AttachEvent( "onbeforeunload", ...
1
vote
2answers
286 views
Beginners tutorial on Jquery using Script#
I'm trying to get on with Script# library and find it challenging to get some jQuery based Ajax code written. Is there any beginner's tutorial or important API documentation that can get me started ...
1
vote
1answer
170 views
How do I combine Script# and Web Controls?
I currently have a Web Application project in VS2010. Each control (in *.ascx files) is contained in it's own separate folder along with the web services used by that control (in *.asmx files) and ...
1
vote
2answers
502 views
ScriptSharp ClockLabel example with 0.6.2
I'm developing in Visual Studio 2010 and I've just downloaded and installed Script# 0.6.2 for VS 2010. I'm trying to follow the clock example in the Read Me pdf but can't get it to compile.
I've ...
1
vote
0answers
136 views
How to implement the Autocomplete behavior to sidebar gadget, through Script# 0.6.2 / JQuery
For some time ago, I made a sidebar gadget which searched documents from my own API. I used the Nikhilk Scriptsharp project and Visual Studio.
Yesterday I updated the Script# (I think the old version ...
1
vote
1answer
71 views
Script#: Determine if imported type is null
I'm writing code that calls an external JavaScript library Foo but only if Foo is defined. The equivalent JavaScript code should looks something like this:
if (typeof(Foo) != "undefined") {
...
1
vote
1answer
432 views
How do I do a simple ajax post with ScriptSharp 0.6 (C# to Javascript)?
ScriptSharp 0.6 turns C# to Javascript and looks pretty neat. However I don't have much experience with event handling in C# and I'm stuck on how to do this:
$.post("urlToPostTo", ...