SVN-Revision: r752
This commit is contained in:
tdx
2025-06-17 10:20:38 +00:00
parent 0fcd6b53b0
commit c1680ca4dd
3 changed files with 27 additions and 60 deletions
+6 -1
View File
@@ -167,7 +167,6 @@ namespace Lskj.Control.Model
private List<string> HandleRightMenuParams(List<string> paramList)
{
List<string> handleParamList = new List<string>();
foreach (string item in paramList)
{
if (!string.IsNullOrWhiteSpace(item))
@@ -184,6 +183,7 @@ namespace Lskj.Control.Model
break;
case "{": // 字段特殊替换
{
handleParamList.Add(this._controlObj.ReplaceControlValue(item));
}
break;
@@ -201,6 +201,11 @@ namespace Lskj.Control.Model
}
break;
default:
if (BaseGridView != null && BaseGridView.GetFocusedDataRow() != null)
{
DataRow parentitem = BaseGridView.GetFocusedDataRow();
fieldValue = ReplaceHelper.ReplaceRowParam(parentitem, item) + "";
}
handleParamList.Add(this._controlObj.ReplaceControlValue(fieldValue));
break;
}
+5 -2
View File
@@ -443,9 +443,12 @@ namespace Lskj.Control.Model
public const int LabApiBtuton = 163;
/// <summary>
///超链接
/// </summary>
/// </ summary>
public const int LabHyperlink = 164;
/// <summary>
///关联右键列
/// </ summary>
public const int LabRightlink = 165;
/// <summary>
/// <para>说明:是否为Value类型</para>