• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

CFGRID only displays the left paging button, other buttons are missing

Community Beginner ,
Sep 20, 2016 Sep 20, 2016

Copy link to clipboard

Copied

Our company recently upgraded from CF9 to CF 2016 and after doing so we have a CFGRID that only displays the left hand paging button/arrow. All the other toolbar buttons are missing.

cfgrid.jpg

I have searched and searched and cannot find the reason for this. I don't appear to be getting any script errors. Does anybody know what might be causing this?

Views

251

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Beginner , Sep 22, 2016 Sep 22, 2016

Turns out it was a CSS problem. When had a .table class in our stylesheet that for some reason broke the CFGRID after the upgrade. Once I removed that the toolbar buttons reappeared.

Votes

Translate

Translate
Community Expert ,
Sep 21, 2016 Sep 21, 2016

Copy link to clipboard

Copied

Could you show us the code for the grid? In any case, see whether something like this helps:

<script type="text/javascript">

var showBottomToolbar = function(id){

     ColdFusion.Grid.showBottomToolbar(id);

  }

</script>

<body onload="showBottomToolbar('gridName')">

<!--- contents of page go here --->

</body>

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Sep 22, 2016 Sep 22, 2016

Copy link to clipboard

Copied

Turns out it was a CSS problem. When had a .table class in our stylesheet that for some reason broke the CFGRID after the upgrade. Once I removed that the toolbar buttons reappeared.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 22, 2016 Sep 22, 2016

Copy link to clipboard

Copied

LATEST

Thanks for sharing.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation