Hi all
QvConsole provides an output area for logging issues in QlikView dashboard. This is mainly in the QlikView client very helpful, since it can not be accessed on the Internet Explorer Developer Tools (F12) here.
And Firebug as in Firefox, is there by default not available, even if there is a corresponding document extension, which Firebug Lite completely loads into the RLD.
Give alert () No chance!
QvConsole is interesting for a quick debugging during development of extensions for QlikView and helps to protect against perpetual alert () boxes.
Installation
Just download the archive and then run qvconsole.qar. QlikView installed the extension then QlikView Desktop client. Then the QvConsole in the list of Extension Objects is available in the WebView.
For installation on the QlikView server, as described by Stefan http://www.qlikblog.at/1597/qliktip-40-installingdeploying-qlikview-extensions/ follow.
Documentation
In a QlikView document only one QvConsole should always be placed.
The input field at the bottom of the Console can be used to evaluate arbitrary expressions. The result of the calculation is written to the console. In the event of an error, a message marked as Error logged.
The switch next to the input box clears the console completely.
The following console functions are processed by QvConsole:
console.log ([obj], [obj] ... [obj]) Default log output of cable. many elements of all types (object and array structures are not resolved) console.info ([obj], [obj] ... [obj]) info log output of cable. many elements of all types (object and array structures are not resolved)
Console.Error ([obj], [obj] ... [obj]) Error log output of cable. many elements of all types (object and array structures are not resolved)
console.debug ([obj], [obj] ... [obj]) console.trace ([obj], [obj] ... [obj]) debug () and trace () function like console.log () and are only included for completeness console.time (string) Starts a new measurement called string
console.timeEnd (string) Stops the timer for the name string and writes the result (milliseconds since console.time ()) into the Console
console.clear () Clears the console.