User Profile & Activity

John Bonin Member
Page
of 18
Posted: July 7, 2016 12:21 PM

I just upgraded the Version 10 of webGrid and this issue came back! Again you can see this using Firefox 47.x

You can see this using the FirstExperience vb sample. Change the height of the frist TD from 61px to 200px and then add ShowColumnAction="true" to LayoutSettings. Run the sample, move the scrollbar down and go to column header to view the column action button, note that its location is down in the grid. I've attached a screen shot. It appears to only work this way in Firefox, Chrome and IE11 display correct.

thanks

Posted: June 28, 2016 12:07 PM
Just upgraded webGrid to version 10 and started to experience the same problems with the column headers being out of line.  I applied the CSS fix listed above and it solved the problem.
Posted: March 14, 2016 11:56 AM
Sorry for the delay, but this build has SOLVED our problem.  Thank you.  Been tested and all is well.  Will this fix (or has it already been) applied to the new 2016 product?  Don't want to download and install the new release only to find it doesn't include it.

thanks
Posted: March 11, 2016 11:46 AM
Hi Erwin,

  Thank you, I will look at Client Binding.
Posted: March 10, 2016 11:45 AM
Hi Erwin,
 Thank you for the sample, I will take a look at it. 

Since I first ask this question a few things have changed.  What I am trying to do is based upon the records selected in the grid, take those records and display them on a map.  Originally I was using an jquery ajax to call a webmethod that would get the records from the grid and return a JSON string, but since you can't pass an object to a webMethod I needed to change course.  So I tried to do it on the client side and it worked somewhat.  The gird is using Virtual Loading with a PageSize of 25, so when I try to use the getCells function to get the cells of a row it fails on the 26 record since it hasn't been loaded yet, if I load all rows than its works.  So to modify my question is there a way, client side, to get all data associated with the grid without having the user load all rows first or increase my pagesize to some large number? 

I'm currently getting the data with this function:
function getWebGridData() {            var WebGrid1 = wgGetGridById("WebGrid1");
            var totalRows = WebGrid1.TotalRows;
            var sb = '';  

            for (var i = 0; i < totalRows; i++) {
                sb += '{';
                var _Row = WebGrid1.RootTable.GetRow(i);
                var cells = _Row.GetCells();
                
                sb += '"DOT_NUMBER" : "' + cells.GetNamedItem('DOT').Value + '", "PHY_LAT" : "' + cells.GetNamedItem("pLat").Value + '", "PHY_LONG" : "' + cells.GetNamedItem("pLong").Value + '", "TYPE" : "' + cells.GetNamedItem("AuditTypeDesc").Value + '"' ;
                sb += '},';
            }
            sb = sb.substring(0, sb.length - 1);
            //alert(sb);
            return sb;
        }

thanks




Posted: March 4, 2016 1:59 PM
Yudi,

   An initial test shows that the fix works.  Still have a more detailed test to verify it.

Thanks this REALLY helps us out.....
Posted: March 4, 2016 1:26 PM
Thank you, I will apply fix today.  I'm been out for a few days.  How will this affect the new version webGrid10 and Framework 4.0, has it been added to the new release?

I'll let you know the outcome.

thanks again
Posted: March 2, 2016 11:40 AM
As far as I can tell, it has not.  I haven't downloaded the new version yet, but there is no mention of ASPNET-190 in  the release notes.  Still have not heard a peep out of support on this issue.
Posted: January 21, 2016 7:24 PM
This is very important to us and in a need for a fix.  If one will not be available soon we will have to find an alternative solution.  the lastest version of WebGrid will not work when IE11 is in compatibility mode.  By Group Policy our domain dot.gov is forced into compatability mode and the grid doesn't work in this mode. 

Please let me know what is going on with ASPNET-190 and the ability for webGrid to display correctly when  IE11 is in compatability mode.


Posted: January 19, 2016 5:19 PM
Any news of the above enhancements ASPNET-190? 
All times are GMT -5. The time now is 9:46 PM.
Previous Next