Hello,
I have a dynamic form that works perfectly on Firefox but have some bugs on IE8 and Safari.
Example: at IE8, checkboxes items only show up when mouse is over it, otherwise they doesn't show up. The same happens with a button.
Another example: Safari and IE8 doesn't seem to run a RpcRequest callback. Code:
The request is sent, but callback isn't executed.
Is it normal to happen? Any ideas of what could be causing this kind of problems?
Also, what do you use to debug SmartClient under IE?
I have a dynamic form that works perfectly on Firefox but have some bugs on IE8 and Safari.
Example: at IE8, checkboxes items only show up when mouse is over it, otherwise they doesn't show up. The same happens with a button.
Another example: Safari and IE8 doesn't seem to run a RpcRequest callback. Code:
Code:
isc.RPCManager.sendRequest({ params: postData,
showPrompt: true,
prompt: 'Buscando...',
actionURL: 'scGrid.php',
callback: function (rpcResponse, data, rpcRequest) {
search_layout.show();
search_view.setContents( rpcResponse.data );
}});
Is it normal to happen? Any ideas of what could be causing this kind of problems?
Also, what do you use to debug SmartClient under IE?
Comment