http://arsalkhatri.wordpress.com/2012/01/07/external-list-with-bcs-search-filters-finders/
Also many times users will want to be able to just press enter to be able to search, so I added the key press event for the button as well,
var body = document.getElementsByTagName('body')[0];
body.onkeydown = function (e) {
if (window.event.keyCode === 13) {
ApplySearchFilters();
}
}
And when I tried to add the wild search for a field which is not null in database, do not use Ignore filter if Value is Null. Instead, just check the Custom value radio button, it will work.
For all other fields with nullable fields, Null is fine.
No comments:
Post a Comment