mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-09 20:12:14 +09:00
issue 1522 when add input box, show button on last child td object.
if title is empty, should not copy. git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.3.1@10902 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
bb3ad0734f
commit
2f0c01785b
2 changed files with 8 additions and 0 deletions
|
|
@ -643,6 +643,11 @@
|
||||||
{
|
{
|
||||||
foreach($sourceArgs->title AS $key=>$value)
|
foreach($sourceArgs->title AS $key=>$value)
|
||||||
{
|
{
|
||||||
|
if(!trim($value))
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
$args->layout_srl = getNextSequence();
|
$args->layout_srl = getNextSequence();
|
||||||
$args->title = $value;
|
$args->title = $value;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -58,6 +58,9 @@ function addLayoutCopyInputbox()
|
||||||
|
|
||||||
var it = jQuery('#inputTable');
|
var it = jQuery('#inputTable');
|
||||||
it.append(html);
|
it.append(html);
|
||||||
|
|
||||||
|
it.find('SPAN.btn').hide();
|
||||||
|
it.find('TR:last-child SPAN.btn').show();
|
||||||
}
|
}
|
||||||
|
|
||||||
(function($){
|
(function($){
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue