Refresh data from list/library
In Form controls I want to be able to refresh the data from the list/library. This way I don't have to close Forms to refresh everything.

Thanks for your suggestion.
I will update the ticket if we have anything to share on this idea.
Cheers,
Euan
-
Ben Stori commented
I think a refresh button would be nice, if for example, you need to update a choice field. You can't update the options from the from designer.
-
svmk commented
Hello Nintex, any idea's about this? Is it possible when editing a Nintex Form to refresh the available Fields in the Connected To dropdown when a new column has been added to the list without having to close the form and reopening it?
-
sparks commented
How to add all list items to Lookup control using java script in Nintex.
var xobj = NWF$("#" + varTextChange); NWF$("#" + varLookupList).change(function(){
var xweb = context.get_web();
var xList = context.get_web().get_lists().getByTitle("External_BDC_Lists");
var xlistItem = xList.getItems('');
context.load(xlistItem,'Include(C1_NAME,BdcIdentity)'); context.executeQueryAsync(function(){
var xcount = xlistItem.get_count();
var lLookup= NWF$("#" + varLookupList);
alert(xcount);
lLookup.val(xlistItem.get_items('C1_NAME')); <-- Doesnt work for assigning Dropdown list
},
function(){ console.log("Error");});
}); -
Alex Broere commented
Hi Daniel,
While working on a form I were to add/remove a field in my list/library (In a separate screen) I want to be able to push a Refresh button in Nintex forms to update the fields. Right now I'm suppose to reopen Nintex Forms to see the new/removed fields.
Regards,
Alex