Announcement

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

    headerMenuButton problem with headerSpans and frozen span

    SmartClient Version: v9.0p_2013-12-03/PowerEdition Development Only (built 2013-12-03)

    please modify the showCase sample #gridHeaderSpans like this:
    Code:
    isc.ListGrid.create({
        ID: "countryList",
        width:600, height:224, alternateRecordStyles:true, autoFitFieldsWidth:true,
        headerHeight: 40,
        dataSource: countryDS,
        autoFetchData: true,
        fields:[
            {name:"countryCode", title:"Flag", width:50, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png"},
            {name:"countryName", title:"Country", width:120},
            {name:"capital", width:120},
            {name:"government", width:120},
            {name:"independence", title:"Nationhood", width:120},
            {name:"population", title:"Population", formatCellValue:"isc.NumberUtil.toUSString(value)", width:150},
            {name:"area", title:"Area (km²)", formatCellValue:"isc.NumberUtil.toUSString(value)", width:150},
            {name:"gdp", formatCellValue:"isc.NumberUtil.toUSString(value)", width:150}
        ],
        headerSpans: [
            {
                fields: ["countryCode", "countryName"], 
                title: "Identification"
            },
            {
                fields: ["capital", "government", "independence"], 
                title: "Government & Politics"
            },
            {
                fields: ["population", "area", "gdp"], 
                title: "Demographics"
            }
        ]
        
    })
    then froze "Government & Politics".

    hovering on Nationhood or Government will show the headerMenuButton of Government column in the wrong position (the Independence headerMenuButton never shows)

    scrolling to the right fixes the problem, but if you scroll to the left the problem is still there.

    #2
    We have just fixed the problem that you reported, so you should see this solved in the next nightly build of v9.0 (dated dec 10 2013). Please, let us know if you find any other problem with that version.

    Thanks for your help

    Comment


      #3
      SmartClient Version: v9.0p_2013-12-10/PowerEdition Development Only (built 2013-12-10)

      fixed, thank you very much

      Comment

      Working...
      X