On Wed, 2011-07-13 at 10:29 -0400, Marc Delisle wrote:
Le 2011-07-13 10:05, Tyron Madlener a écrit :
On Wed, Jul 13, 2011 at 4:36 PM, Marc Delislemarc@infomarc.info wrote:
Le 2011-07-13 07:46, Aris Feryanto a écrit :
----- Original Message -----
From: Tyron Madlenertyronx@gmail.com
On Tue, Jul 12, 2011 at 9:59 PM, Tyron Madlenertyronx@gmail.com wrote:
Just built a reusable jquery plugin for elegant reordering of table cells. I will be using it for the Monitor Tab as it greatly improves the usability of chart reordering
(mainly because I want the user to select a column width and have automatic chart size, instead of setting a chart size and have automatic column width):
Column selection instead of chart size is now implemented in the Monitor Tab.
The Monitor Tab looks great. However, I notice some bugs:
- when I change "Chart columns" to a smaller number, and then change
it to a bigger number, I see that there are some gap (blank cells) between the charts. For my scenario, I change from 4 to 2 to 4. - also, when I enter "Rearrange/edit charts" mode, the export chart button and the gear button next to it cannot be clicked.
Tyron, even when I activate all what's needed from the Monitor instructions panel, I still see five charts with "Chart title" as their title.
Those two things are independent from each other. Having things disabled in the monitor instructions dialog will just cause that you won't be receiving any log data once you made a selection in any of the charts.
But about the bug, I think in one version the chart title was not set correctly and you probably have it now in your browsers localStorage, if you go to Settings=>Clear monitor config and reload the page it should be displaying correct titles again (this loads the default values)
It worked (I had to clear the browser's cache too).
What's the meaning of Questions? are these Queries?
I think that questions is queries as executed by the server. So, if you have defined a stored procedure as follows:
CREATE PROCEDURE `proc`() BEGIN SELECT NULL; SELECT 0; END
and you call it with
CALL `proc`();
that would make 1 query, but 3 questions (the CALL + the 2 SELECTs that the server will run)
Bye, Rouslan