Editable Datagrid

Hi All,
I have a editable datagrid using vertical scroll, every time i finish editing a top row the cursor jumps down and the scroll bar moves down also.
This only happens when i use itemEditEnd event.
Any ideas?
Thanks
(Using SDK 4.5.1)

I see this behavior using itemEditEnd but only when I do refresh the arraycollection data of the grid. I am using:
protected function laborRates_itemEditEndHandler(event:DataGridEvent):void
             if (event.reason == DataGridEventReason.CANCELLED)
                    // Do not update cell.
                    return;
                if (isNaN(event.currentTarget.itemEditorInstance.text) || event.currentTarget.itemEditorInstance.text == "" || Number(event.currentTarget.itemEditorInstance.text) < 0 ){
                    event.currentTarget.itemEditorInstance.text = 0;
                event.currentTarget.dataProvider.refresh();  //Here is the issue
Any ideas how can I control this scroll?
Thanks

Similar Messages

  • Editable DataGrid With DateField

    I'm new to flex and struggling with the editable DataGrid. I
    have a DataGrid with an ItemRenderer that outputs a DateField. I
    can't figure out how to get the new value of the DateField after
    the edit.
    Here is my DataGrid (the endDate column):
    <mx:DataGrid id="allHistoryGrid"
    dataProvider="{allEntries}" height="313" width="782" y="-4"
    itemEditEnd="saveGridChange(event)" editable="true">
    <mx:columns>
    <mx:Array>
    <mx:DataGridColumn dataField="dietDescription"
    headerText="Diet"/>
    <mx:DataGridColumn dataField="allergyDescription"
    headerText="Allergy"/>
    <mx:DataGridColumn dataField="labDescription"
    headerText="Lab"/>
    <mx:DataGridColumn dataField="labResult" width="50"
    headerText="Result" itemRenderer="LabResultItemRenderer"/>
    <mx:DataGridColumn dataField="medicationDescription"
    headerText="Medication"/>
    <mx:DataGridColumn dataField="height" width="65"
    headerText="Height" itemRenderer="HeightItemRenderer"/>
    <mx:DataGridColumn dataField="weight" headerText="Weight"
    itemRenderer="WeightItemRenderer"/>
    <mx:DataGridColumn dataField="bmi" width="35"
    headerText="BMI" itemRenderer="BmiItemRenderer"/>
    <mx:DataGridColumn dataField="circumference" width="45"
    headerText="Circ." itemRenderer="CircumferenceItemRenderer"/>
    <mx:DataGridColumn headerText="Start Date" width="75"
    sortCompareFunction="startDateSortCompare">
    <mx:itemRenderer>
    <mx:Component>
    <mx:VBox clipContent="false">
    <mx:DateFormatter id="dateFormatter"
    formatString="MM/DD/YYYY"/>
    <mx:Text width="100"
    text="{dateFormatter.format(data.startDate)}"/>
    </mx:VBox>
    </mx:Component>
    </mx:itemRenderer>
    </mx:DataGridColumn>
    <mx:DataGridColumn dataField="endDate" width="45"
    headerText="End Date" itemRenderer="EndDateItemRenderer"
    rendererIsEditor="true"/>
    <mx:DataGridColumn id="deleteEntry" width="50"
    textAlign="center"
    headerText="Delete" sortable="false"
    itemRenderer="DeleteItemRenderer"/>
    </mx:Array>
    </mx:columns>
    </mx:DataGrid>
    Here is my itemRenderer:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:VBox xmlns:mx="
    http://www.adobe.com/2006/mxml"
    paddingLeft="16" horizontalAlign="center">
    <mx:DateFormatter id="dateFormatter"
    formatString="MM/DD/YYYY"/>
    <mx:DateField x="16" y="67" id="AllHistoryEndDate"
    text="{dateFormatter.format(data.endDate)}"/>
    </mx:VBox>
    How do I get the new value in the saveGridChange function?
    private function saveGridChange(event:DataGridEvent):void {

    That gives me this error:
    TypeError: Error #1034: Type Coercion failed: cannot convert
    EndDateItemRenderer@51a70a1 to mx.controls.TextInput.

  • Formatting a field before committing from editable datagrid

    Hi,
    I have an editable DataGrid which displays two columns, date
    and value. Now, the date in the dataProvider is actually stored as
    an integer (yyyymmdd) so I format it using a labelFunction to
    display. I then have a custom itemEditor to set it to a date for
    calling into the DateField.
    The next step, and where I'm struggling, is to update the
    dataProvider with an integer (yyyymmdd) calculated from the
    selectedDate. Can someone please help me with how to do this?
    Thanks!

    See the docs for data grid editing events, such as, I think,
    itemEndEdit.

  • Editable datagrid firefox problem

    I have created an application that contains an editable
    datagrid but experiences problems when using the firefox browser.
    If there are multiple tabs of firefox open and an item is selected
    in the grid, when switching between the firefox tabs, the datafield
    in the grid becomes selected for edit without clicking on it. It
    appears that some kind of event is being called to change an entry
    in the grid. Similar results occur when changing between different
    windows i.e. firefox and flex builder.
    However, I don't have this problem when using internet
    explorer.

    That should be true for any Flex component.  Focus is always on something, you have to move it to a new place otherwise it gets restored back to what last had foucs.
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Editable Datagrid from programmaticaly built XmlListCollection help needed

    Hi, I am trying to build an editable datagrid with 20 empty
    rows in it. Users will fill out the cells, this then gets persisted
    to a DB, then later by making selections in a combobox, they can
    bring this data back for viewing and/or modification. I have been
    trying to create the XML dynamically and then addItem on the
    XmlListCollection to no avail. Can someone please point out where I
    am going wrong? Thanks!
    [Bindable] private var teamGridDataAsXml:XML;
    [Bindable] private var teamGridData:XMLListCollection;
    private function initEmptyTeamGrid():void {
    teamGridData = new XMLListCollection();
    var s:String = "<rows>";
    for(var i:int = 0; i < 20; i++) {
    s += "<row rowIndex=\'" + i + "\' agentId='' firstName=''
    lastName='' country='' />";
    s += "</rows>";
    teamGridDataAsXml = new XML(s);
    teamGridData.addItem(teamGridDataAsXml);
    <mx:DataGrid id="agentInfo" editable="true"
    dataProvider="{teamGridData}" width="100%" height="100%"
    rowCount="20">
    <mx:columns>
    <mx:DataGridColumn headerText="#" dataField="@rowIndex"
    editable="false"/>
    <mx:DataGridColumn headerText="Agent ID"
    dataField="@agentId" editable="true"/>
    <mx:DataGridColumn headerText="First Name"
    dataField="@firstName" editable="true"/>
    <mx:DataGridColumn headerText="Last Name"
    dataField="@lastName" editable="true"/>
    <mx:DataGridColumn headerText="Country"
    dataField="@country" editable="true"/>
    </mx:columns>
    </mx:DataGrid>

    teamGridDataAsXml = new XML(s);
    trace(teamGridDataAsXml.toXMLString() ); to be sure you have
    good xml
    var xlRows:XMLList = teamGridDataAsXml.row;
    trace(xlRows.length()); //what you expect?
    teamGridData =new XMLListCOllection(xlRows);
    You could skip the xml variable and go straignt into the
    XMLListCollection also. In the loop, build the XML node, using XML
    literal syntax, and then call addItem *inside the loop*.
    Tracy

  • Editable Datagrid: focus shifts to next row on click : Urgent

    I have an editable datagrid and when I change the value of a cell and then instead of tab I click on the cell adjacent to it, the focus automatic shifts to the next row. I have no freaking idea why?
    Any help is appreciated. Thanks a ton in advance.

    Issue Resolved 
    Need to set lead selection to next element in the node using MOVE_NEXT method of IF_WD_CONTEXT_NODE interface.
    rest of the code remains same.

  • Editable DataGrid and setInterval()

    I have a page with an editable datagrid on it. I am not using
    any item renderers or anything. Also I am refreshing this page
    every five seconds by doing a setInterval() on it. Here's the
    scenario which is causing the problem.
    I select a cell to edit. The cell's look changes from regular
    text to the look of an editable field. However if the refresh
    happens before I make my changes, the cell gets converted back to
    regular text. Is there a way for me to maintain the editability of
    the cell through the refresh or should I use some other method of
    refreshing the data?

    It seems to me that if the user has started entering data,
    that you should suspend the refresh activity entirely, until the
    current data is saved. Otherwise, it wll be nearly impossible to
    update the data, since few people will be able to type and samve
    sopmething in less than 5 seconds.
    Tracy

  • How to save the edited datagrid using array collection?

    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark"
                        xmlns:mx="library://ns.adobe.com/flex/mx"
                        title="demo2">
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
              <fx:Script>
                        <![CDATA[               
                                  import mx.collections.ArrayCollection;
                                  import mx.events.FlexEvent;
                                  import spark.components.gridClasses.IGridItemEditor;
                                  import spark.components.gridClasses.IGridItemRenderer;
                                  import spark.events.GridItemEditorEvent;
                                  [Bindable]
                                  private var myDP:ArrayCollection = new ArrayCollection([
                                            {label1:"Day1 ", label2:" Sub1", label3:"Sub2 ", label4:"Sub3 ", label5:"Sub4 ", label6:"Sub5 ", label7:"Sub6 "},
                                            {label1:"Day2 ", label2:" Sub1", label3:"Sub2 ", label4:"Sub3 ", label5:"Sub4 ", label6:"Sub5 ", label7:"Sub6 "},
                                            {label1:"Day3 ", label2:" Sub1", label3:"Sub2 ", label4:"Sub3 ", label5:"Sub4 ", label6:"Sub5 ", label7:"Sub6 "},
                                            {label1:"Day4 ", label2:" Sub1", label3:"Sub2 ", label4:"Sub3 ", label5:"Sub4 ", label6:"Sub5 ", label7:"Sub6 "},
                                            {label1:"Day5 ", label2:" Sub1", label3:"Sub2 ", label4:"Sub3 ", label5:"Sub4 ", label6:"Sub5 ", label7:"Sub6 "},
                                            {label1:"Day6 ", label2:" Sub1", label3:"Sub2 ", label4:"Sub3 ", label5:"Sub4 ", label6:"Sub5 ", label7:"Sub6 "}
                                  protected function myDG_gridItemEditorSessionSaveHandler(event:GridItemEditorEvent):void
                                            // TODO Auto-generated method stub
                                  protected function button1_clickHandler(event:MouseEvent):void
                                            // TODO Auto-generated method stub
                                            navigator.popView();
                                  protected function button2_clickHandler(event:MouseEvent):void
                                            // TODO Auto-generated method stub
                                            myDG.editable=false;
                                            myDP
                                  protected function myDG_exitStateHandler(event:FlexEvent):void
                                            // TODO Auto-generated method stub
                        ]]>
              </fx:Script>
              <s:DataGrid id="myDG" x="10" y="45" width="460" height="240" dataProvider="{myDP}"
                                            editable="true" exitState="myDG_exitStateHandler(event)" fontSize="11"
                                            gridItemEditorSessionSave="myDG_gridItemEditorSessionSaveHandler(even t)"
                                            rowHeight="30" variableRowHeight="true" selectionMode="singleCell" >
                        <s:columns>
                                  <s:ArrayList>
                                            <s:GridColumn dataField="label1" headerText="day" editable="false" />
                                            <s:GridColumn dataField="label2" headerText="9-10am"/>
                                            <s:GridColumn dataField="label3" headerText="10-11am"/>
                                            <s:GridColumn dataField="label4" headerText="11am-12noon"/>
                                            <s:GridColumn dataField="label5" headerText="1-2pm"/>
                                            <s:GridColumn dataField="label6" headerText="2-3pm"/>
                                            <s:GridColumn dataField="label7" headerText="3-4pm"/>            
                                  </s:ArrayList>
                        </s:columns >
              </s:DataGrid>
              <s:Button x="404" y="10" width="53" height="27" label="Back" click="button1_clickHandler(event)"
                                    fontSize="13"/>
              <s:Button x="24" y="10" width="56" height="27" label="Save" click="button2_clickHandler(event)"
                                    fontSize="14"/>
    </s:View>
    please help me with this code...i dontknow how to save the data edited in the datagrid back to my arrayollection!!!

    please help with this......

  • Finding out if any modifications are being made in the fields in an editable datagrid

    Hi,
    I populated my data grid with an array
    collection(initDG=event.result.categorydtls.category) where
    initDGObject is the array collection.I made the data grid as
    editable.Now , when the user click's on submit(below data grid),
    the request for modifying the corresponding details in database
    should go only if the user makes any modification ,or else an alert
    should be shown saying that "you havent made any modifications".For
    this purpose i assigned "event.result.categorydtls.category" to
    another array collection initDGObject and ,in the function which
    will be invoked after clicking on submit i compared both the
    objects initDG and initDGObject.But to my surprise,if any field in
    data grid is modified then both initDG and intiDGObject(here let me
    remind that i assigned initDG as the data provider for grid and
    initDGObject is a normal array collection object for which the
    details are assigned to for comparison purpose) are also
    modifying.So i am unable to check if any modifications are being
    made before forwarding request for database modification to back
    end.Please suggest me a solution for doing this task.Thanks in
    advance.

    lam not able to add a single object to the array
    collection.Regarding the usage of datagrid in my task,there will be
    a drop down on the top of datagrid with categories(like
    science,maths...)in it.Whenever a particular category is selected
    then the corresponding subcategories(in category science sub
    categories are physics,biology.....)details will be populated in
    the datagrid.Please suggest me a solution.

  • Editable DataGrid won't sort correctly

    This is the weirdest behavior I've ever seen...
    I am working on a datagrid (editable="true"), and for some reason the thing does not want to sort correctly. It is a basic datagrid with itemrenderers for each column so that we can edit in the grid. Sorting should happen on a header-click, but if you click the header, it seems to simply select the first row, or another random row, and doesn't sort. It does fire the "itemEditEnd" event. However, if you click anywhere but the header, drag the mouse to header and then let go,  (mouseUp on the header), then it sorts perfectly fine (and doesn't fire that event). If I take the "editable=true" off the datagrid, it sorts fine on header-clicks, but then the datagrid won't save.
    Does anyone have any ideas? There isn't any custom behavior on the header, though I could add some if it would help. I've tried everything I can think of, but nothing seems to help.
    This seems to be somewhat related to this (unsolved) issue.
    http://bugs.adobe.com/jira/browse/SDK-18302
    Thanks,

    I have noticed in the livedocs under, "Working with item renderers" (currently as I type this post the livedocs is unavailable, so I am able to give you a URL) there is a Datagrid that functions incorrectly when the user clicks on header columns.  I am not sure why they haven't fixed this yet, but is this similar to what you are experiencing?  I believe on the same page, they mention about the differences with creationComplete and dataChange.  Are you listening to any of those events?  creationComplete is rarely used in an itemrenderer.   dataChange is used more often which I have noticed that a conditional statement is needed to prevent strange behavior (perhaps the same as you mentioned).

  • Editable Datagrid Column

    I have to make a datagrid column editable during runtime based on the data. If the column has a specific data then the column should not be editable otherwise it should be editable. Can we do it in flex ? please show some pointers.

    I don't have any examples , but you should probably have a custom itemrenderer for your datagrid which contains a textarea. In the itemrenderer should override set data( value:Object ):void.  In that function you check a condition to see if the textarea "editable" value should be set to true or false.  Below I have some pseudo-code.
    <s:Itemrenderer>
    override public function set data( value:Object ):void
      if( object.decidingValue > 0  )
         TnA.editable = false;
      else
         TnA.editable = true;
    <s:TextArea id="TnA" />
    </s:Itemrenderer>
    or you could just put the code in the TextArea declaration
    <s:TextArea id="TnA" editable="{data.decidingValue > 0}" />
    (TextInput area is probably more appropriate than a textarea , but the logic is the same )
    If this response was helpful please mark it as such.

  • Editable Datagrid with LabelFunction Problems

    Hi,
    I'm having problems with a datagrid with editable columns and labelFunctions.
    The problem is that when i leave the editable field by a way that wasnt with Escape Key, the datagrid apply again the labelFunction and destroy the number formattion adding a lot of numbers.
    When the field is filled with 0000,00 he just adds more zeros, like 0.000.000,0000 and keep going after do the same process.
    And when the field has a number different of zero, he apply the labelFunction then after he remove the labelFunction. After few times it just make the number vanish and the cell goes empty.
    I read the documentation about editing cell and tryed to implement a solution to prevent the cell be edited, without sucess.
    The source code goes attached for some advice on my problem.
    Thanks, Fredy.

    Hi,
    I solved a part of problem with some changes that i've made.
    Now there is no problem with values different of zero, when i got just number, its fine, but still have problems with zero values.
    The snippet code goes next, the bold part that was modified from the last sample.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
         layout="vertical"
         backgroundColor="white">
         <mx:Script>
              <![CDATA[
                   import mx.controls.Alert;
                   import mx.events.DataGridEventReason;
                   import mx.controls.TextInput;
                   import mx.controls.dataGridClasses.DataGridColumn;
                   import mx.formatters.NumberFormatter;
                   import mx.events.DataGridEvent;
                   import mx.collections.ArrayCollection;
                   [Bindable] private var collection:ArrayCollection = new ArrayCollection([
                        {code:1, description:"Item 1", value:4564654},
                        {code:2, description:"Item 2", value:00000000},
                        {code:3, description:"Item 3", value:00000000},
                        {code:4, description:"Item 4", value:00000000},
                        {code:5, description:"Item 5", value:00000000},
                        {code:6, description:"Item 6", value:00000000},
                        {code:7, description:"Item 7", value:00000000}
                   private var formatter:NumberFormatter;
                   private function formatterFunction(item:Object, column:DataGridColumn):String {
                      if (formatter == null){
                           formatter = new NumberFormatter();
                           formatter.decimalSeparatorTo = ",";
                           formatter.thousandsSeparatorTo = ".";
                           formatter.decimalSeparatorFrom  = ",";
                           formatter.thousandsSeparatorFrom = ".";
                           formatter.useThousandsSeparator = true;
                           formatter.precision = 4;
                      return formatter.format(item[column.dataField]);
                 private function editEndHandler(event:DataGridEvent):void {
                    var myEditor:TextInput = TextInput(event.currentTarget.itemEditorInstance);
                    var newVal:Number = isNaN(Number(myEditor.text)) ? myEditor.text as Number : 0.0000;
                    var oldVal:Number = Number(event.currentTarget.editedItemRenderer.data[event.dataField]);
                     // it solves the partial part of the problem, but still have some errors
                     if (event.reason == DataGridEventReason.CANCELLED || event.reason == DataGridEventReason.OTHER) {
                        return;
                    if (oldVal == newVal ) {
                             // i've tryed this, but the itemEditor still open
                             event.preventDefault();
                             // if I just put 'return', still have the same problem
                             // return;
              ]]>
         </mx:Script>
         <mx:Label text="Bug datagrid editavel com labelFunction"
              fontSize="16"
              fontWeight="bold" />
         <mx:DataGrid dataProvider="{collection}"
              editable="true"
              itemEditEnd="editEndHandler(event)">
              <mx:columns>
                   <mx:DataGridColumn headerText="Código"
                        dataField="code"
                        editable="false"/>
                   <mx:DataGridColumn headerText="Descrição"
                        dataField="description"
                        editable="false"/>
                   <mx:DataGridColumn headerText="Valor"
                        width="300"
                        dataField="value"
                        labelFunction="formatterFunction"
                        editable="true"/>
              </mx:columns>
         </mx:DataGrid>
    </mx:Application>
    @Alex
    Thanks for the answer.
    I want to edit this column, but if there is no 'change' i dont want to apply again the label function and close the itemEditor.
    I've tryed to call event.preventDefault() but i dont know what to do next.
    Do you have some advice how to solve my problem?
    This is just happening when i got zero values on my datagrid =/
    Thanks all for the answers.

  • ErrorTemplate on editing datagrid

    Hello,
    I'm trying to create a MVVM application to register purchases.
    I have ViewModel composed by :
    Purchase
    Products (return collection of products of the Purchase(Purchase.products)
    ProductToAdd (this is a product to add to the Purchase via button)
    Implement IDataErrorInfo to validate the order and the products collection
    I created a collection of error to validate the ProductToAdd on button click.
    So if there is an error on ProductToAdd the product is not add to the collection and the textbox with error become Red.
    The value of each product of the purchase can be updated in the datagrid.
    My problem is : When i update value in DataGrid the cell updated didn't get errorTemplate when is there an error.
    My sample is the following : http://www.filedropper.com/validationexample_3
    I didn't know how can i do 2 type of validation.
    thanks

    The Product class could implement the IEditableObject interface to keep track of whether it is currently in edit mode and then do the validation also in the setter if it is:
    public class Product : IDataErrorInfo, INotifyPropertyChanged, IEditableObject
    private string _Name = null;
    [Required(ErrorMessage = "Nom is required")]
    public string Name
    get
    return _Name;
    set
    _Name = value;
    if (_isInEditMode) {
    Validate();
    RaisePropertyChanged("Name");
    private int? _Quantity = null;
    [Required(ErrorMessage = "Quantity is required")]
    [Range(1, 9, ErrorMessage = "Quantity must be superior to 0 and inferior to 10")]
    public int? Quantity
    get
    return _Quantity;
    set
    _Quantity = value;
    if (_isInEditMode) {
    Validate();
    RaisePropertyChanged("Quantity");
    public Dictionary<string, string> _errors = new Dictionary<string, string>();
    public bool Validate()
    _errors["Name"] = Validateurs.Courant.GetErreur(this, "Name");
    _errors["Quantity"] = Validateurs.Courant.GetErreur(this, "Quantity");
    RaisePropertyChanged("Name");
    RaisePropertyChanged("Quantity");
    if (_errors["Name"] != "" || _errors["Quantity"] != "")
    return true;
    return false;
    #region INotifyPropertyChanged
    public void RaisePropertyChanged(string propertyName)
    if (this.PropertyChanged != null)
    this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
    public event PropertyChangedEventHandler PropertyChanged;
    #endregion
    #region IDataErrorInfo
    public string Error
    get
    throw new NotImplementedException();
    public string this[string columnName]
    get
    if (_errors.ContainsKey(columnName))
    return _errors[columnName];
    return null;
    #endregion
    #region IEditableObject Members
    private bool _isInEditMode;
    public void BeginEdit() {
    _isInEditMode = true;
    public void CancelEdit() {
    _isInEditMode = false;
    public void EndEdit() {
    _isInEditMode = false;
    #endregion
    To remove the red exclamation mark that may get stuck in the row header even if you type in a valid value in the cell, you could use the following RowStyle:
    <DataGrid Width="477" Height="200" Canvas.Left="10" Canvas.Top="157"
    ItemsSource="{Binding products}" AutoGenerateColumns="False">
    <DataGrid.RowStyle>
    <Style TargetType="DataGridRow">
    <Setter Property="ValidationErrorTemplate" Value="{x:Null}"/>
    </Style>
    </DataGrid.RowStyle>
    <DataGrid.Columns>
    Please refer to the following thread for more information about this:
    http://stackoverflow.com/questions/5099039/wpf-datagrid-validation-errors-not-clearing
    And remember to mark helpful posts as answer and to start a new thread if you have a new question.

  • Dbl-click to Edit DataGrid

    Is there a way to have a DataGrid control catch a dbl-click
    event so that the event can change the editable property? If the
    editable property is true, clicking on any item in a DataGrid row
    selects that item increasing the chance of accidental typos.

    Change the column properties to generate a link. This is pretty easy, in the Column Attributes page, go down to the Column Link region and fill in the required fields.

  • Save edited datagrid change.

    Hi it's me again. I ask before for something like that but
    it's sound a bit confusing so I'll start from scratch.
    I have a datagrid with name and other stuff inside. I edit a
    name for example. Cause the grid is editable (true). I close the
    application, open the application again and all the modifications
    are gone. So what I want is to do is a button at the bottom of the
    application that save all the modifications in the grid. So when I
    open the application again later, the modification will still
    there. I've try Array, XMLList... just tell me if you know an easy
    way to do it. I'll start from scratch

    <mx:XMLList id="associesCAISSES">
    <associe>
    <nom>Christine</nom>
    <dim></dim>
    <lun> </lun>
    <mar>8:00-17:00</mar>
    <mer>8:00-17:00</mer>
    <jeu>8:00-17:00 rtv</jeu>
    <ven>8:00-17:00</ven>
    <sam></sam>
    <tot>32</tot>
    </associe>
    <associe>
    <nom>Marilyne</nom>
    <dim> </dim>
    <lun> 16:00-21:00</lun>
    <mar> </mar>
    <mer>8:00-17:00</mer>
    <jeu>10:00-17:00</jeu>
    <ven> </ven>
    <sam></sam>
    <tot>20</tot>
    </associe>
    <associe>
    <nom>Martine</nom>
    <dim> </dim>
    <lun> 10:00-16:00</lun>
    <mar>10:00-16:00</mar>
    <mer>10:00-16:00pl</mer>
    <jeu>10:00-16:00pl</jeu>
    <ven> </ven>
    <sam></sam>
    <tot>30</tot>
    </associe>
    <associe>
    <nom>Valérie Maurice</nom>
    <dim>10:00-17:00</dim>
    <lun> </lun>
    <mar>17:00-21:00</mar>
    <mer> </mer>
    <jeu> </jeu>
    <ven> </ven>
    <sam>9:00-17:00</sam>
    <tot>19</tot>
    </associe>
    <associe>
    <nom>Marie-Claude</nom>
    <dim>10:00-17:00</dim>
    <lun> </lun>
    <mar> </mar>
    <mer>17:00-21:00</mer>
    <jeu> </jeu>
    <ven> </ven>
    <sam>9:00-17:00</sam>
    <tot>19</tot>
    </associe>
    <associe>
    <nom>Geraika</nom>
    <dim> </dim>
    <lun>8:00-17:00</lun>
    <mar> </mar>
    <mer> </mer>
    <jeu>8:00-17:00</jeu>
    <ven>16:00-21:00</ven>
    <sam> </sam>
    <tot>21</tot>
    </associe>
    <associe>
    <nom>Julie</nom>
    <dim> </dim>
    <lun> </lun>
    <mar> </mar>
    <mer> </mer>
    <jeu>12:00-19:00</jeu>
    <ven>10:00-17:00</ven>
    <sam> </sam>
    <tot>14</tot>
    </associe>
    <associe>
    <nom>Véronick</nom>
    <dim>11:00-17:00</dim>
    <lun> </lun>
    <mar> </mar>
    <mer> </mer>
    <jeu>17:00-21:00</jeu>
    <ven></ven>
    <sam> </sam>
    <tot>10</tot>
    </associe>
    <associe>
    <nom>Sylvia</nom>
    <dim> </dim>
    <lun> </lun>
    <mar> </mar>
    <mer> </mer>
    <jeu>17:00-21:00</jeu>
    <ven></ven>
    <sam> </sam>
    <tot>4</tot>
    </associe>
    <associe>
    <nom>Diane</nom>
    <dim> </dim>
    <lun> </lun>
    <mar> </mar>
    <mer> </mer>
    <jeu></jeu>
    <ven>12:00-19:00</ven>
    <sam> </sam>
    <tot>7</tot>
    </associe>
    <associe>
    <nom>Marilyne</nom>
    <dim></dim>
    <lun> </lun>
    <mar> </mar>
    <mer> </mer>
    <jeu></jeu>
    <ven>17:00-21:00</ven>
    <sam>10:00-17:00</sam>
    <tot>11</tot>
    </associe>
    <associe>
    <nom>Marie-Eve</nom>
    <dim></dim>
    <lun>17:00-21:00</lun>
    <mar>16:00-21:00</mar>
    <mer>16:00-21:00</mer>
    <jeu> </jeu>
    <ven> </ven>
    <sam> </sam>
    <tot>14</tot>
    </associe>
    <associe>
    <nom>Claudia</nom>
    <dim>12:00-17:00</dim>
    <lun> </lun>
    <mar> </mar>
    <mer> </mer>
    <jeu> </jeu>
    <ven> </ven>
    <sam>11:00-17:00</sam>
    <tot>11</tot>
    </associe>
    <associe>
    <nom>Valérie Chalifoux</nom>
    <dim> </dim>
    <lun> </lun>
    <mar> </mar>
    <mer> </mer>
    <jeu> </jeu>
    <ven> </ven>
    <sam> </sam>
    <tot> </tot>
    </associe>
    <associe>
    <nom>Linda</nom>
    <dim> </dim>
    <lun>8:00-17:00</lun>
    <mar>8:00-17:00</mar>
    <mer> </mer>
    <jeu>8:00-17:00</jeu>
    <ven>8:00-17:00</ven>
    <sam> </sam>
    <tot>32</tot>
    </associe>
    </mx:XMLList>

Maybe you are looking for

  • Display problem since upgrading to Mavericks on my Macbook pro

    I have an early 2011 Macbook Pro 13" and I have just upgraded to Mavericks and since I have the screen has not been right Inconsistency across the screen with purple flickering Any idea how I can fix this It works fine but not ideal as this is my por

  • IMac Display / Fans Stopped Working

    So, I've read up on a lot of the other iMac issues with displays going out. However when attaching an external display still nothing shows up. But I've noticed the lower left fan is also not spinning (yes I am authorized to remove parts). So I remove

  • Datagrid getting truncated during printing

    Hi All, I have a panel which contains the following items :- 1. A Header Label 2. A time slider 3. A combo box 4. A view stack which has a chart at index 0 and a data grid at index 1 5. Some buttons For the datagrid(which is inside a VBox,whose heigh

  • AR Customer Balances as of any point in time

    Does anyone have a script/package to calculate customer balances in AR as of a particular point in time? I know Oracle does it on the fly using the historical information but I was hoping that I didn't have to re-invent the wheel. Thanks

  • CS5 - Missing required plugins error

    Hi, I have completely new installation of Windows 7 x64 on my harddrive and I have installed trial version of Adobe Illustrator CS5. However, when I launch it, it gives me this error: when I click ok, it gives me this: and after clicking ok: Adobe Il