User Profile & Activity

Frank Bruce Member
Page
of 15
Posted: October 25, 2010 10:32 PM

Is there any news about this issue?Niven Prasetya

Posted: October 25, 2010 10:31 PM

thank you! Handy Surya

Posted: October 24, 2010 10:05 PM

Please see the picture and the Demo code.
Environment:VS2008+IE8.0

 

Posted: October 22, 2010 12:00 AM

  <LayoutSettings AllowAddItem="True" >

Posted: October 13, 2010 1:33 AM

Thank you,Glenn Layaar.The problem has solved. 

I was mistaken that "Get first cell" by "grid.RootTable.GetRow(curRow).GetCell(1);" in the past.
Now I chang a little code ,it work perfect :

function wgTest_OnKeyDown(controlId, tblName, rowIndex, cellIndex) {
            var grid = ISGetObject(controlId);
            var totalRows = grid.TotalRows;
            var curRow = grid.GetSelectedObject().rowIndex;
            var curCell = grid.GetActiveEditCell().cellIndex-1;
            var activeCell = grid.GetActiveEditCell();

            if (activeCell.rowElement.type == "Record") {

                if (event.keyCode == 13) {

                    if (curCell == grid.RootTable.Columns.length-1) {                        
                        grid.SetFocus();
                        grid.RootTable.GetRow(curRow + 1).Select();
                        var nextCell1 = grid.RootTable.GetRow(curRow + 1).GetCell(0);
                        nextCell1.ActivateEdit();
                    }
                    else {
                        grid.SetFocus();
                        grid.RootTable.GetRow(curRow).Select();
                        var nextCell = grid.RootTable.GetRow(curRow).GetCell(curCell+1);
                        nextCell.ActivateEdit();
                    }
                }
                return true;
            }
        }
Posted: October 13, 2010 1:10 AM

I am sorry my "windows media player" can not open *.MP4  file.Please chang its type and reupload it ,thanks!
My problem is the same as:
http://www.intersoftpt.com/Community/WebGrid/Webgrid-state-reverts-to-Unchanged-after-clicking-on-Status-bar-or-Scroll-bar/

I met the same problem as  Pierre Belanger.But my teamwork has found a solution for it although it seems not very perfect 

Posted: October 12, 2010 9:41 PM

Anyway,we need it so much .please ....~thank you

MY teamwork has fixed it although it is not very perfect 

Handy Surya,

Has this problom  been fixed???

All times are GMT -5. The time now is 12:49 PM.
Previous Next