Welcome to SynapseDirect Sign in | Join | Help
in Search

SynapseDirect

Client 211 betas

Last post 10-16-2007, 2:29 PM by qilin. 81 replies.
Page 1 of 6 (82 items)   1 2 3 4 5 Next > ... Last »
Sort Posts: Previous Next
  •  08-18-2007, 8:43 PM 4037

    Client 211 betas

    I'm going to look at improving the templating language ... a template just submitted makes me think we need a way to say "negative" and "positive"

    eg:

    at 0x24 label "Lachmann's test" (wide) radio-group 20x5 data ["-v" "+v"]

    Which will produce: Lachmann's test negative.

     


    Graham Chiu
    Beta Downloads and Documentation Wiki
    Developer Forum
    Filed under:
  •  08-19-2007, 11:49 AM 4042 in reply to 4037

    Re: Client 211 betas

    Good idea.

    Developer
  •  08-19-2007, 5:03 PM 4048 in reply to 4042

    Re: Client 211 betas

    R211B1 is now up.

    Includes the following changes to the template dialect

    "+v" => positive
    "-v" => negative
    "R" => right
    "L" => left


    and a new widget called "slabel" which will be always included into the text.

     


    Graham Chiu
    Beta Downloads and Documentation Wiki
    Developer Forum
  •  08-19-2007, 5:15 PM 4049 in reply to 4048

    Re: Client 211 betas

    Proposed template changes:

    Currently we have a template title that we use to find the template we wish to use.  Inside the template there is always a group-box.

    So, we have:

    title: "Neuro - short exam"
    group-box -1x-1 "cns" data [ ... content .. ]

    Now when the template is executed, it takes the first word from the title, and inserts that into the text.
    Then it takes the title of the group-box, which is "cns" here, and inserts "cns:" ie. adds a colon to it.

    I'm considering no longer using the title text, and also not using the group-box text, and instead achieve the same effect with a slabel widget.

    This would allow more flexibility ... but also would mean changing all the existing templates. 

     


    Graham Chiu
    Beta Downloads and Documentation Wiki
    Developer Forum
  •  08-21-2007, 7:50 PM 4072 in reply to 4049

    Re: Client 211 betas

    R211B2

    1. Enforces security for receptionist on the 2nd (Details) row of tabs

    Graham Chiu
    Beta Downloads and Documentation Wiki
    Developer Forum
  •  08-23-2007, 2:23 PM 4085 in reply to 4072

    Re: Client 211 betas

    R211B3

    1. The inbox status popup now has buttons on it to take you to the relevant pages
    2. A template error has been eliminated

    Graham Chiu
    Beta Downloads and Documentation Wiki
    Developer Forum
  •  08-23-2007, 6:52 PM 4086 in reply to 4085

    Re: Client 211 betas

    R211B4

    1. A new sticky template widget - sedit-list - which does not require a preceding radio-group

     

    group-box "low back pain examination" -1x-1 data [
      slabel "gait" (wide) edit-list "" data [ "normal" "antalgic" ] return
      slabel "gait2" (wide) sedit-list "" data [ "normal" "antalgic" ]
    ]

    If you look at this template there is no preceding radio-group infront of the edit-list ( first row of widgets in the template).  So, even though you populate the edit-list with data, eg "antalgic", when you save it ... the text is not incorporated into the consultation.  You only get "gait". The reason for this is that the radio-group allows you to ignore parts of the examination.

    However, if you always want to examine everything, it would be tedious having to put in a radio-group in front of each edit-list.  Hence the new widget, which is a sticky one, the sedit-list.  You will note that if you populate the sedit-list, the text is now incorporated into the consult.  But if you leave it blank, the text " untested " appears instead.  We might possibly change this.

    So, we have either : gait2 antalgic, or gait2 normal, or gait2 untested as possible outcomes from the bottom row of widgets in this template.

         

     


    Graham Chiu
    Beta Downloads and Documentation Wiki
    Developer Forum
    Filed under:
  •  08-24-2007, 3:51 PM 4087 in reply to 4086

    Re: Client 211 betas

    R211B5

    1. A new sticky template widget - sfield - which does not require a preceding radio-group ( ie. asticky field widget )

    Graham Chiu
    Beta Downloads and Documentation Wiki
    Developer Forum
  •  08-24-2007, 3:59 PM 4088 in reply to 4087

    Re: Client 211 betas

    Could you please make screenshots of the new stuff, it's hard for me to understand the new features.


    Developer
  •  08-24-2007, 10:09 PM 4089 in reply to 4088

    Re: Client 211 betas

    R211B6

    1. A new check-group widget called hcheck-group that lays out text horizontally rather than vertically.

    Eg:

    group-box "" -1x-1 data [
     hcheck-group
        100x-1 data [
            "Vitamin D" none
            "Calcium" none
            "Fasting Lipids" none
            "Fastling Glucose" none   
            "HbA1c" none
            "hs-CRP" none
            "CRP" none
            "CBC and ESR" none
            "Liver panel" none
        ]
    ]  

    When you check the tests, the text is incorporated like:  Vitamin D, Calcium, Fasting Lipids etc

    as opposed to

    Vitamin D
    Calcium
    Fasting Lipids

    which is what you get with the existing check-group widget.

     

     


    Graham Chiu
    Beta Downloads and Documentation Wiki
    Developer Forum
    Filed under:
  •  08-25-2007, 3:01 AM 4091 in reply to 4089

    Re: Client 211 betas

    These new widgets "stickylabels" is definitely making template designing a lot easier.  
    Contributing
  •  09-06-2007, 9:31 PM 4110 in reply to 4091

    Re: Client 211 betas

    R211B7

    1. All the usual Rebol colors are now available in templates
    2. Reverting to today is now a preference in add results window
    3. stext is a new widget like text, but the text is always added to the consult
    4. A new "Stamp" button in the editor inserts a timestamp into the text for those people who wish to add additional comments to an existing consult.

    The Rebol colors and their associated rgb values are:

    black:        0.0.0
    coal:        64.64.64
    gray:        128.128.128
    pewter:        170.170.170
    silver:        192.192.192
    snow:        240.240.240
    white:        255.255.255

    blue:        0.0.255
    green:        0.255.0
    cyan:        0.255.255
    red:        255.0.0
    yellow:        255.255.0
    magenta:    255.0.255

    navy:        0.0.128
    leaf:        0.128.0
    teal:        0.128.128
    maroon:        128.0.0
    olive:        128.128.0
    purple:        128.0.128

    orange:        255.150.10
    oldrab:        72.72.16
    brown:        139.69.19
    coffee:        76.26.0
    sienna:        160.82.45
    crimson:    220.20.60
    violet:        72.0.90
    brick:        178.34.34
    pink:         255.164.200
    gold:        255.205.40
    tan:        222.184.135
    beige:        255.228.196
    ivory:        255.255.240
    linen:        250.240.230
    khaki:        179.179.126
    rebolor:    142.128.110
    wheat:        245.222.129
    aqua:        40.100.130
    forest:     0.48.0
    water:        80.108.142
    papaya:     255.80.37
    sky:         164.200.255
    mint:         100.136.116

    reblue:        38.58.108
    base-color: 200.200.200
    yello:        255.240.120


    Graham Chiu
    Beta Downloads and Documentation Wiki
    Developer Forum
  •  09-06-2007, 10:04 PM 4111 in reply to 4110

    Re: Client 211 betas

    Is there an option for changing passwords?  I did try to change in R211B5 but could not.
    Contributing
  •  09-06-2007, 10:16 PM 4112 in reply to 4111

    Re: Client 211 betas

    Yes, this should work.  I did this recently myself.

    Describe what steps you took ... 


    Graham Chiu
    Beta Downloads and Documentation Wiki
    Developer Forum
    Filed under:
  •  09-07-2007, 4:44 AM 4113 in reply to 4112

    Re: Client 211 betas

    What I meant was changing the admin's password. I signed in as admin, then - people - staff - and in the password column typed in the new password and then update : failed to validate. The other staff can be changed.


    Contributing
Page 1 of 6 (82 items)   1 2 3 4 5 Next > ... Last »
View as RSS news feed in XML
Try-out the Click to try-out Synapse EMR Express Edition Free Synapse EMR Express Edition Click to try-out Synapse EMR Express Edition · ©2006 SynapseDirect · Terms and Conditions · Privacy Policy · help us keep Synapse EMR Express free for all Doctors

managing your electronic medical records · Unique Visits Dell Computer