Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Issues with ISC SDK 6.5

    Hi,
    I developed an application using 6.0 version. I upgraded the application with the 6.5 version which was released recently. I am facing a few issues after doing this.

    1. I have the following field in one of the list grid in a screen.
    Code:
     {name:"strBrand",  title: "Brand",canEdit:false, align: "center", cellAlign: "left", width: 200},
    Now, this field had the header aligned center(align: "center") and the text in the cells aligned to the left(cellAlign: "left"). After i upgraded to 6.5 the cellAlign property fails to work, the entire field is now aligned to center which is not favorable. This works fine in 6.0

    2.Secondly, I am using the dataArrived function in a select item where i need to know the total number of rows returned. for this i am using the code below.
    Code:
    dataArrived: function(startRow,endRow,data){
    totalRows = endRow;
    }
    The endrow returns null in 6.5 version. whereas it was returning a number in 6.0 version.

    I am SHOCKED to see things not working when upgraded to 6.5. Please let me know why this is happening. Is there something i can do about this? I am also not sure whereall my application would fail if i migrate from 6.0 to 6.5. Also we have had the application tested by users and running in production, so we cannot have any new defects just due to a migration to a higher version of smartclient.

    Also let me know the release date of 6.5.1 version? Can i expect the fixes for the above issues in that release if it is a bug?

    Thanks

    #2
    Hi
    Thanks for bringing these to our attention. Both of these issues have already been resolved in the 6.51 build which is in final testing and will be available very soon.
    If you need a quicker resolution, the first issue can be resolved against the 6.5 build by adding a 'getCellAlign' method to the listGrid, returning "left" for the cell in question.
    If you need a 6.5 patch for the second issue, let us know and we can put one together for you.

    Regards
    Isomorphic Software

    Comment

    Working...
    X