Sorry for this dummy question, but I haven’t found any web client user’s guide in the wiki and I’ve never used web client…
How can I do a find in web client? I can’t use cntrl+F (as in smart client) because this is the find mode of browser, so I’ve put a button I my solution. But how can I execute the search? Do I have to put another button to do that? If I press Enter key nothing happens…
I may have mistaken your requirement Juan, but here is what I’m using currently
function findData(event) {
if (forms[event.getFormName()].foundset.isInFind())
{
forms[event.getFormName()].foundset.search(true,false)
}
else {forms[event.getFormName()].foundset.find()}
}
}
This is in my navigation form, and essentially the button this is attached to first puts the form into find mode, then on the second click it runs the search if its already in find mode.