This topic is locked
[SOLVED]

 Onload Modal - on the edit page...

12/11/2013 7:12:32 PM
PHPRunner General questions
T
Tempus_Erus author

Hi all,
On my edit page, once loaded the requirment is that a modal dialog box is generated using the script from:
http://www.dynamicdrive.com/dynamicindex8/dhtmlwindow/dhtmlmodal.htm
Nice and neat.
However the dialog box does not load. m(tested externally - not an issue).
I think it is important to mention that on my list page in the java onload event I have the follwong code:
$("tr[id^='gridRow']").hover(function(){

$(this).children().addClass('listrollover');

$(this).css('cursor','hand');

},function(){

$(this).children().removeClass('listrollover');

});

$("a[id^='editLink']").bind('click', function() {

return false;

});

$("tr[id^='gridRow']").click(function(e){

$(this).find("a[id^='editLink']").trigger('click');

$(this).css('cursor','hand');

});
I am assuming there could be a conflict and to this end I have played around with various code without success.
Any ideas very much welcome....
TIA

Sergey Kornilov admin 12/12/2013

As a first step - check for Javascript errors using Firebug or Chrome Developer Tools.

T
Tempus_Erus author 12/13/2013

Thanks. Tried this and no obvious errors? ....

Sergey Kornilov admin 12/13/2013

Not sure what kind of help we can provide based on this info.
If you have a valid support contract post your application to Demo Account and open a ticket at http://support.xlinesoft.com sending your Demo Account URL. 'Demo Account' button can be found on the last screen in the program.

T
Tempus_Erus author 12/14/2013



Not sure what kind of help we can provide based on this info.
If you have a valid support contract post your application to Demo Account and open a ticket at http://support.xlinesoft.com sending your Demo Account URL. 'Demo Account' button can be found on the last screen in the program.


Thanks Sergey, have resolved by amending JS rollover script!