Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Prasad on May 05, 2008 02:25
open dhtmlx forum
split

Hello support,

I have two fixed columns.
My second fixed column header has following code.

<div id='savingHdrDivId'> </div>

When I call save button , I access this div tag and displays "Saving...." message.
This was working fine, but when I used split functionality I am not able view "Saving..." message.
There is no any js error on console.

This is code in the function

document.getElementById('savingHdrDivId').innerHTML = "Saving..."
document.getElementById('savingHdrDivId').style.zIndex = 1000;

Answer posted by Support on May 08, 2008 01:32
The problem caused by the way how multiline headers processed in split mode.
The problem will be fully resolved in next version of grid (1.6), for now you can access and set values in left part of grid in split mode as
        mygrid._fake.setColumnLabel(0,"Saving....");
Please check sample, which was sent to your email.