Has anyone got the popup menu to popup on a field within a table in the webclient? The onRightClick fires, but the popup menu doesn't appear like it does in the SmartClient?
Gary
TMA
Gary R. Schaecher wrote:We found that in version 5.0 it doesn't appear you have to execute the hack (//controller.search()) to enable events and methods to run while in 'find' mode. This is an improvement, but we Servoy still doesn't allow the same flexibility on the dataprovider itself, only on buttons and labels. We really needed this to work on the dataprovider field so we are back to ground zero, with no way to implement an interface that was in our legacy application in Omnis. I'm not sure if this restriction has any reason to exist or if it just Servoy trying to 'protect' beginner programmers from shooting themselves in the foot. As Servoy as a product matures, they need to relinquish this 'parental' type of control which was fine for FileMaker programmers and make the assumption that we are adults now and can handle the consequences of our own 'coding'. I guess this is why some programmers stay away from 4GL's and stick with C++ and Java so they have 'full' control.
function onAction(event)
{
if (!isinfind)
{
isinfind = controller.find();
}
else
{
controller.search();
isinfind = false;
}
}
Users browsing this forum: No registered users and 1 guest