Notifications
Clear all
Topic starter
Hello! I am having an issue where my xlt file is too large and needed to create a function to store my MEL code. When I create my function, I am not sure how to make it populate an edit field. When I have my code in the white space, it works as desired. Any help would be appreciated. Thanks!
Posted : December 19, 2013 6:13 am
{if document.var1 == "" then
document.var2 = ""
//other code
endif}
is more or less equivalent to -
{fn Fire_On_Var1_Change(var){
if var == "" then
document.var2 = ""
//other code
endif
}}{Fire_On_Var1_Change(document.var1)}
Hope that helps
Posted : December 19, 2013 6:51 am