CA Service Management

  • 1.  Using jQuery UI within Request forms

    Posted May 13, 2016 11:33 AM

    I'm trying to use jQuery UI to apply a datepicker to a textbox on our create request form.  It looks like jQuery and jQuery UI are loaded by the application by default.  I'm just wondering if anyone else has tried using jQuery UI with any success, and if you'd have any pointers.  Thanks!



  • 2.  Re: Using jQuery UI within Request forms

    Posted May 23, 2016 02:17 AM

    Hi,

     

    we've managed to use jQuery in our USD 12.7 environment using the noConflict wrapper and adding a new alias.

    https://api.jquery.com/jquery.noconflict/

    In our code it looks like this:

    var j = jQuery.noConflict();

    j.ajax({

                  type: 'POST',

    ...



  • 3.  Re: Using jQuery UI within Request forms

    Posted Jul 16, 2016 04:55 AM

    Thanks alot for this! I managed to call a web service now from htmpl file.

     

    I created a simple hello world c# service just to test and got it working.