Added to the User Interface
Settings for Builders Group Demo Event handler for Search Results Report and Resolution User Interface Added code to make DataLoader and PDF generation faster Added ToolTip Property to ItemInfo Added code to handle "AND Range" Transitions Changed comment Sorts ROs by value
This commit is contained in:
@@ -320,7 +320,8 @@ namespace VEPROMS.CSLA.Library
|
||||
}
|
||||
public static string GetResolvedText(FormatInfo formatInfo, ItemInfo fromInfo, int tranType, ItemInfo toItem, ItemInfo rangeItem)
|
||||
{
|
||||
TransitionBuilder tb = SetupTransitionBuilder(formatInfo, fromInfo, tranType, toItem, rangeItem);
|
||||
TransitionBuilder tb = SetupTransitionBuilder(formatInfo, fromInfo, tranType, toItem,
|
||||
toItem.ItemID==rangeItem.ItemID && !toItem.IsHigh?toItem.LastSibling:rangeItem);
|
||||
if(_AppendMethods==null)
|
||||
SetupMethods();
|
||||
return BuildString(tb);
|
||||
@@ -360,6 +361,11 @@ namespace VEPROMS.CSLA.Library
|
||||
}
|
||||
int endtokn = tb._TransFormat.IndexOf("}", index);
|
||||
string token = tb._TransFormat.Substring(index, endtokn - index + 1);
|
||||
if (token == "{.}" && tb._ToItem.ItemID == tb._RangeItem.ItemID)
|
||||
{
|
||||
startIndex = tb._TransFormat.Length; // skip the rest of the trans format
|
||||
break;
|
||||
}
|
||||
if (_AppendMethods.ContainsKey(token))
|
||||
textAdded = _AppendMethods[token](textAdded, tb, token, nonToken);
|
||||
else
|
||||
|
Reference in New Issue
Block a user