SVN r752
SVN-Revision: r752
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user