mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-11 20:21:16 +00:00
set url after selecting record
This commit is contained in:
parent
4675c785db
commit
9696187a9a
|
@ -48,6 +48,7 @@ $(document).ready( function() {
|
|||
});
|
||||
$( "#selector" ).change(function() {
|
||||
$('div.ajax').trigger('update', {attrdefid: $(this).val()});
|
||||
window.history.pushState({"html":"","pageTitle":""},"", '../out/out.AttributeMgr.php?attrdefid=' + $(this).val());
|
||||
});
|
||||
});
|
||||
<?php
|
||||
|
|
|
@ -101,6 +101,7 @@ $(document).ready( function() {
|
|||
|
||||
$( "#selector" ).change(function() {
|
||||
$('div.ajax').trigger('update', {groupid: $(this).val()});
|
||||
window.history.pushState({"html":"","pageTitle":""},"", '../out/out.GroupMgr.php?groupid=' + $(this).val());
|
||||
});
|
||||
});
|
||||
<?php
|
||||
|
|
|
@ -75,6 +75,7 @@ $(document).ready( function() {
|
|||
});
|
||||
$( "#selector" ).change(function() {
|
||||
$('div.ajax').trigger('update', {userid: $(this).val()});
|
||||
window.history.pushState({"html":"","pageTitle":""},"", '../out/out.UsrMgr.php?userid=' + $(this).val());
|
||||
});
|
||||
});
|
||||
<?php
|
||||
|
|
Loading…
Reference in New Issue
Block a user