BLOMASKY wroteSure, I have the following process:
IF PromptFor.PONumber IS DEFINED AND SEARCH_COUNT = 1 THEN
LoggedInRegularUser.selectedPurchaseOrder = PurchaseOrders
DISPLAY LAYOUT 'PO Receive' FROM_VP Layouts
Attached is the screen shot for the "PO Receive" Layout
I would like the name of the popup to be "computed" from LoggedInRegularUser.selected.......
Does this make sense?
bruce
If you mean you want to change "PO Receive" to some other text, you can use jQuery to reference the span tag that contains the window title and use the text() function to change it to your computed value.
$("span.k-window-title").text( YourComputedValueGoesHere);
I do all of this kind of manipulation on the client-side directly versus using EXEC_SCRIPT, so I don't know the exact syntax, but you should be able to do something like:
DISPLAY LAYOUT 'PO Receive' FROM_VP Layouts
EXEC_SCRIPT '$("span.k-window-title").text( LoggedInUser.YourComputedValue)'