John
John

Reputation: 3945

JSFIDDLE not working as it should

Using custom built package from JQuery UI 1.10.3 in my project,

 <link href="/jquery-ui-1.10.3.custom/css/start/jquery-ui-1.10.3.custom.min.css" rel="stylesheet" type="text/css" />
    <script src="/jquery-ui-1.10.3.custom/js/jquery-ui-1.10.3.custom.min.js" type="text/javascript"></script>

I copied the js and css files to gist where I then used RawGit to get a URL to include as an external resource to try and recreate what is happening in my project in a JSFIDDLE.

Problem, being I cant get the JSFIDDLE working does anyone know why....when user clicks on 'create New Layer' button a popUp should appear holding 3 radio buttons with images 'new layer','import layer','external data', select which option the user wants and click next.

Although I cant get the popUp to appear in JSFIDDLE here is where I am at.....any help appreciated: https://jsfiddle.net/j73vpk1m/7/

Just a thought...the two files are .css and .js, when i used RawGit then both out putted 2 js files...possible problem?

Upvotes: 1

Views: 68

Answers (1)

3abqari
3abqari

Reputation: 208

jsfiddle doesn't accept asp.net controls. You're using some asp.net controls like <asp:UpdatePanel> and <asp:AsyncPostBackTrigger>. You can use only HTML controls in your HTML panel in jsfiddle.

Here is a question that might answer your next question of where can I fiddle with asp.net code: Is there an equivallent to a jsFiddle for ASP.NET / VB?

Upvotes: 3

Related Questions