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.
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.
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
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},
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;
}
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
Comment