Review Widget

Hey, what is the intention behind the review widget?

How is it different from a read-only note?

(And perhaps, a related question: is there documentation on widgets beyond
http://opendatakit.org/help/form-design/examples/?)

cheers,
--p

think of review as read-only text prompt that you know the user
clicked ok on. i like to think of it as a "user acknowledged they read
this screen" prompt. how you use it, is up to you.

we don't have any more documentation on widgets beyond the website.
can you describe what more you want to see as documentation?

··· On Fri, Dec 16, 2011 at 14:50, wrote: > Hey, what is the intention behind the review widget? > > How is it different from a read-only note? > > (And perhaps, a related question: is there documentation on widgets beyond > http://opendatakit.org/help/form-design/examples/?) > > cheers, > --p

Review seems super useful! In the documentation (
http://opendatakit.org/help/form-design/examples/) there seems to be a
little problem with the images and mis-titling starting at the Time widget
and ending just before the Acknowledge widget.

··· On Sun, Dec 18, 2011 at 3:55 PM, Yaw Anokwa wrote:

think of review as read-only text prompt that you know the user
clicked ok on. i like to think of it as a "user acknowledged they read
this screen" prompt. how you use it, is up to you.

we don't have any more documentation on widgets beyond the website.
can you describe what more you want to see as documentation?

On Fri, Dec 16, 2011 at 14:50, prabhas.pokharel@gmail.com wrote:

Hey, what is the intention behind the review widget?

How is it different from a read-only note?

(And perhaps, a related question: is there documentation on widgets
beyond
http://opendatakit.org/help/form-design/examples/?)

cheers,
--p

--

Curtis BRODERICK
Head of training and user support
Tél : + 33(0)1.53.02.40.61 06.15.33.57.37

---------------------------EpiConcept---------------------------
Systèmes d'Information en Santé
Health Information System
47, rue de Charenton - 75012 PARIS
Tel : +33 (0)1 53 02 40 60 Fax : +33 (0)1 53 02 40 62
-----------------------www.epiconcept.fr------------------------

Ce message et toutes les pièces jointes sont établis à l'intention
exclusive de ses destinataires et sont confidentiels.
Si vous recevez ce message par erreur, merci de le détruire et d'en
avertir l'expéditeur.

The information contained in the Email and any attachments is
confidential and intended solely and for the attention and use of the
named address(es). It may not be disclosed to any other person without
the express authority of EpiConcept, or the intended recipient, or
both.
If you are not the intended recipient, you must not disclose, copy,
distribute or retain this message or any part of it.

Thanks for the heads up. It's been fixed.

··· On Thu, Dec 29, 2011 at 01:55, Curtis Broderick wrote: > Review seems super useful! In the documentation > (http://opendatakit.org/help/form-design/examples/) there seems to be a > little problem with the images and mis-titling starting at the Time widget > and ending just before the Acknowledge widget. > > > On Sun, Dec 18, 2011 at 3:55 PM, Yaw Anokwa wrote: >> >> think of review as read-only text prompt that you know the user >> clicked ok on. i like to think of it as a "user acknowledged they read >> this screen" prompt. how you use it, is up to you. >> >> we don't have any more documentation on widgets beyond the website. >> can you describe what more you want to see as documentation? >> >> On Fri, Dec 16, 2011 at 14:50, wrote: >> > Hey, what is the intention behind the review widget? >> > >> > How is it different from a read-only note? >> > >> > (And perhaps, a related question: is there documentation on widgets >> > beyond >> > http://opendatakit.org/help/form-design/examples/?) >> > >> > cheers, >> > --p > > > > > -- > > Curtis BRODERICK > Head of training and user support > > Tél : + 33(0)1.53.02.40.61 06.15.33.57.37 > > ---------------------------EpiConcept--------------------------- > Systèmes d'Information en Santé > Health Information System > > 47, rue de Charenton - 75012 PARIS > Tel : +33 (0)1 53 02 40 60 Fax : +33 (0)1 53 02 40 62 > -----------------------www.epiconcept.fr------------------------ > > > Ce message et toutes les pièces jointes sont établis à l'intention exclusive > de ses destinataires et sont confidentiels. > Si vous recevez ce message par erreur, merci de le détruire et d'en avertir > l'expéditeur. > > > The information contained in the Email and any attachments is confidential > and intended solely and for the attention and use of the > named address(es). It may not be disclosed to any other person without the > express authority of EpiConcept, or the intended recipient, or both. > > If you are not the intended recipient, you must not disclose, copy, > distribute or retain this message or any part of it. > > >

hi all

i am trying to get a count of rows on a specified column, using php.....i
have used the following code

$query = "SELECT COUNT(*) FROM case2 WHERE Status = 'response needed'";

          $result = mysql_query($query) or die('Error query 1 failed'

.mysql_error());

          while($row = mysql_fetch_array($result))
              {
                echo $result = $row;
              }

but i get the answer "Array".. please help

Hi

mysql_fetch_row — Get a result row as an enumerated array
USE

$row = mysql_fetch_row($result);

echo $row[0];

Regards
Mayala Mwendesha

··· On Mon, Jan 9, 2012 at 2:21 PM, Thapelo Khumomotse < thapelo.khumomotse@gmail.com> wrote:

hi all

i am trying to get a count of rows on a specified column, using php.....i
have used the following code

$query = "SELECT COUNT(*) FROM case2 WHERE Status = 'response needed'";

          $result = mysql_query($query) or die('Error query 1 failed'

.mysql_error());

          while($row = mysql_fetch_array($result))
              {
                echo $result = $row;
              }

but i get the answer "Array".. please help