Jquery Ui Dialog Does not open -


ive got asp.net page has link opens dialog window "edit appointment", works fine

function editappointment(event) {         $("#editappointment")             .load("/schedule/edit/" + event.id,                 function() {                 $("#editappointment").dialog('open');                  });      } function loadclient(clientid) {             alert('hi');             $("#clienteditform")                .load("/client/edit/", function() {                    $("#clienteditform").dialog('open');                });         } 

within page "/schedule/edit/" has link open dialog "loadclient"

the function called ok, not show dialog window use work older version of jquery ui/jquery, using latest versions!, javascript error

uncaught typeerror: object [object object] has no method 'dialog' schedule:346 (anonymous function) schedule:346 b.extend.each jquery.1.9.1.min.js:4 b.fn.b.each jquery.1.9.1.min.js:4 (anonymous function) jquery.1.9.1.min.js:19 c jquery.1.9.1.min.js:4 p.firewith jquery.1.9.1.min.js:4 k jquery.1.9.1.min.js:19 r 

jquery not finding #clienteditform element. /client/edit/ page not loading properly? based on loadclient method, assume may want load /client/edit/:clientid.


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -