mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-14 05:31:42 +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() {
|
$( "#selector" ).change(function() {
|
||||||
$('div.ajax').trigger('update', {attrdefid: $(this).val()});
|
$('div.ajax').trigger('update', {attrdefid: $(this).val()});
|
||||||
|
window.history.pushState({"html":"","pageTitle":""},"", '../out/out.AttributeMgr.php?attrdefid=' + $(this).val());
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
<?php
|
<?php
|
||||||
|
|
|
@ -101,6 +101,7 @@ $(document).ready( function() {
|
||||||
|
|
||||||
$( "#selector" ).change(function() {
|
$( "#selector" ).change(function() {
|
||||||
$('div.ajax').trigger('update', {groupid: $(this).val()});
|
$('div.ajax').trigger('update', {groupid: $(this).val()});
|
||||||
|
window.history.pushState({"html":"","pageTitle":""},"", '../out/out.GroupMgr.php?groupid=' + $(this).val());
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
<?php
|
<?php
|
||||||
|
|
|
@ -75,6 +75,7 @@ $(document).ready( function() {
|
||||||
});
|
});
|
||||||
$( "#selector" ).change(function() {
|
$( "#selector" ).change(function() {
|
||||||
$('div.ajax').trigger('update', {userid: $(this).val()});
|
$('div.ajax').trigger('update', {userid: $(this).val()});
|
||||||
|
window.history.pushState({"html":"","pageTitle":""},"", '../out/out.UsrMgr.php?userid=' + $(this).val());
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
<?php
|
<?php
|
||||||
|
|
Loading…
Reference in New Issue
Block a user